From: Tim Serong Date: Fri, 12 Aug 2016 11:30:53 +0000 (+1000) Subject: rpm: Remove trailing whitespace in usermod command (SUSE) X-Git-Tag: v11.1.0~428^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=8e1b3088493adbcf19fcca2a493dcbfeac1f79aa;p=ceph.git rpm: Remove trailing whitespace in usermod command (SUSE) Trailing whitespace after the backslash on the -d line of the usermod command effectively splits it in two, breaking the rpm %pre script for SUSE builds. Signed-off-by: Tim Serong --- diff --git a/ceph.spec.in b/ceph.spec.in index 6fa56012726..7fd2ba52090 100644 --- a/ceph.spec.in +++ b/ceph.spec.in @@ -903,7 +903,7 @@ if ! getent passwd ceph >/dev/null ; then useradd ceph $CEPH_USER_ID_OPTION -r -g ceph -s /sbin/nologin 2>/dev/null || : fi usermod -c "Ceph storage service" \ - -d %{_localstatedir}/lib/ceph \ + -d %{_localstatedir}/lib/ceph \ -g ceph \ -s /sbin/nologin \ ceph