From: Alexey Miasoedov Date: Tue, 14 Apr 2020 19:24:27 +0000 (+0300) Subject: debian: fix typo in cephadm user gecos X-Git-Tag: wip-pdonnell-testing-20200918.022351~1337^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=7577b6385dbc759896761522424f27f99872a383;p=ceph-ci.git debian: fix typo in cephadm user gecos Signed-off-by: Alexey Miasoedov --- diff --git a/debian/cephadm.postinst b/debian/cephadm.postinst index e84b9e1f62d..53d503e1eaa 100644 --- a/debian/cephadm.postinst +++ b/debian/cephadm.postinst @@ -25,7 +25,7 @@ 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 'Ceph-dameon user for 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