fix syntax
This commit is contained in:
parent
a2d65f9c61
commit
582df940da
1 changed files with 3 additions and 3 deletions
6
debian/postrm
vendored
6
debian/postrm
vendored
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue