diff options
Diffstat (limited to 'audio/firefly/files/pkg-deinstall.in')
-rw-r--r-- | audio/firefly/files/pkg-deinstall.in | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/audio/firefly/files/pkg-deinstall.in b/audio/firefly/files/pkg-deinstall.in deleted file mode 100644 index a17adfdbe2c7..000000000000 --- a/audio/firefly/files/pkg-deinstall.in +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -PATH=/bin:/usr/bin:/usr/sbin - -case $2 in - -POST-DEINSTALL) - echo '---> Starting post-deinstall script:' - - if [ -f %%PREFIX%%/etc/mt-daapd.conf ]; then - echo '---> You seem to have made some custom daapd configuration.' - echo '---> The "%%USER%%" user and "%%GROUP%%" group were therefore not deleted.' - echo '---> You may delete them with "pw groupdel %%GROUP%%; pw userdel %%USER%%".' - - else - echo '---> Removing group "%%GROUP%%"' - /usr/sbin/pw groupdel -n %%GROUP%% - echo '---> Removing user "%%USER%%"' - echo 'y' | /usr/sbin/pw userdel -n %%USER%% - fi - - ;; - -esac |