purge tmpfiles
This commit is contained in:
parent
26cf41833b
commit
4d062a0ae9
1 changed files with 6 additions and 0 deletions
6
debian/postrm
vendored
6
debian/postrm
vendored
|
@ -53,24 +53,30 @@ case "$1" in
|
|||
rm -f ${nginx_site}$ext
|
||||
rm -f ${gitlab_debian_conf}$ext
|
||||
rm -f ${gitlab_yml}$ext
|
||||
rm -f ${gitlab_tmpfiles}$ext
|
||||
rm -f ${gitlab_shell_config}$ext
|
||||
done
|
||||
|
||||
# remove the configuration file itself
|
||||
test -f ${nginx_site} && rm -f ${nginx_site}
|
||||
test -f ${gitlab_debian_conf} && rm -f ${gitlab_debian_conf}
|
||||
test -f ${gitlab_yml} && rm -f ${gitlab_yml}
|
||||
test -f ${gitlab_tmpfiles} && rm -f ${gitlab_tmpfiles}
|
||||
test -f ${gitlab_shell_config} && rm -f ${gitlab_shell_config}
|
||||
|
||||
# and finally clear it out from the ucf database
|
||||
if which ucf >/dev/null; then
|
||||
test -n "${nginx_site}" && ucf --purge ${nginx_site}
|
||||
test -n "${gitlab_debian_conf}" && ucf --purge ${gitlab_debian_conf}
|
||||
test -n "${gitlab_yml}" && ucf --purge ${gitlab_yml}
|
||||
test -n "${gitlab_tmpfiles}" && ucf --purge ${gitlab_tmpfiles}
|
||||
test -n "${gitlab_shell_config}" && ucf -purge ${gitlab_shell_config}
|
||||
fi
|
||||
if which ucfr >/dev/null; then
|
||||
test -n "${nginx_site}" && ucfr --purge gitlab ${nginx_site}
|
||||
test -n "${gitlab_debian_conf}" && ucfr --purge gitlab ${gitlab_debian_conf}
|
||||
test -n "${gitlab_yml}" && ucfr --purge gitlab ${gitlab_yml}
|
||||
test -n "${gitlab_tmpfiles}" && ucfr --purge gitlab ${gitlab_tmpfiles}
|
||||
test -n "${gitlab_shell_config}" && ucfr -purge gitlab ${gitlab_shell_config}
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue