Skip to content

Commit c517d0b

Browse files
committed
debian/cephadm.postinst: wrap command line lines which is too long
for better readability. Signed-off-by: Kefu Chai <[email protected]>
1 parent a1a8576 commit c517d0b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

debian/cephadm.postinst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ case "$1" in
2525
# 1. create user if not existing
2626
if ! getent passwd | grep -q "^cephadm:"; then
2727
echo -n "Adding system user cephadm.."
28-
adduser --quiet --system --disabled-password --gecos 'cephadm user for mgr/cephadm' --shell /bin/bash cephadm 2>/dev/null || true
28+
adduser --quiet \
29+
--system \
30+
--disabled-password \
31+
--gecos 'cephadm user for mgr/cephadm' \
32+
--shell /bin/bash cephadm 2>/dev/null || true
2933
echo "..done"
3034
fi
3135

0 commit comments

Comments
 (0)