mirror of
https://github.com/ceph/ceph
synced 2025-04-01 14:51:13 +00:00
debian/cephadm.postinst: wrap command line lines which is too long
for better readability. Signed-off-by: Kefu Chai <tchaikov@gmail.com>
This commit is contained in:
parent
a1a857698c
commit
c517d0b0e9
6
debian/cephadm.postinst
vendored
6
debian/cephadm.postinst
vendored
@ -25,7 +25,11 @@ case "$1" in
|
||||
# 1. create user if not existing
|
||||
if ! getent passwd | grep -q "^cephadm:"; then
|
||||
echo -n "Adding system user cephadm.."
|
||||
adduser --quiet --system --disabled-password --gecos 'cephadm user for mgr/cephadm' --shell /bin/bash cephadm 2>/dev/null || true
|
||||
adduser --quiet \
|
||||
--system \
|
||||
--disabled-password \
|
||||
--gecos 'cephadm user for mgr/cephadm' \
|
||||
--shell /bin/bash cephadm 2>/dev/null || true
|
||||
echo "..done"
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user