]> eyrie.org Git - kerberos/krb5-strength.git/blobdiff - debian/postinst
Update coding style of maintainer scripts
[kerberos/krb5-strength.git] / debian / postinst
index 1f23e248d0dc211a8442c8b6786c7c6ca2a49cf1..4b72a600ff1e64307346e2c6265488e6e4c51910 100755 (executable)
@@ -3,14 +3,14 @@
 set -e
 
 # Add a user to own the password history database.
-if ! getent passwd _history >/dev/null ; then
+if ! getent passwd _history >/dev/null; then
     echo 'Adding system user for password history' 1>&2
     adduser --disabled-login --quiet --system --no-create-home \
         --home /var/lib/heimdal-history --force-badname --group _history
 fi
 
 # Create the directory for the history database, owned by the history user.
-if [ ! -d /var/lib/heimdal-history ] ; then
+if [ ! -d /var/lib/heimdal-history ]; then
     mkdir /var/lib/heimdal-history
     chown _history:_history /var/lib/heimdal-history
 fi