fix syntax

This commit is contained in:
Praveen Arimbrathodiyil 2017-04-17 11:08:17 +05:30
parent a2d65f9c61
commit 582df940da

6
debian/postrm vendored
View file

@ -19,7 +19,7 @@ gitlab_debian_defaults=/var/lib/gitlab/gitlab-debian.defaults
# Read debian specific configuration
if [ -f ${gitlab_debian_conf} ]; then . ${gitlab_debian_conf}; fi
if [ -f ${gitlab_debian_defaults}; then . ${gitlab_debian_defaults}; fi
if [ -f ${gitlab_debian_defaults} ]; then . ${gitlab_debian_defaults}; fi
safely_remove() {
CANDIDATE_DIR=$1
@ -76,7 +76,7 @@ ${gitlab_data_dir}; do
echo "dropdb command not found. Hence not removing database."
fi
echo "Removing user: ${gitlab_user}"
if [ id -u ${gitlab_user} ]; then userdel -r ${gitlab_user}; fi
if id -u ${gitlab_user}; then userdel -r ${gitlab_user}; fi
else
echo "gitlab_user not set. Hence not removing user."
fi
@ -117,7 +117,7 @@ ${gitlab_tmpfiles} ${gitlab_shell_config}; do
done
# remove generated assets
if [ -n ${gitlab_data_dir}]; then safely_remove ${gitlab_data_dir}/public/assets; fi
if [ -n ${gitlab_data_dir} ]; then safely_remove ${gitlab_data_dir}/public/assets; fi
# Remove private copies of configuration files
rm -f ${nginx_site_private}