diff options
Diffstat (limited to 'mail/sqlgrey/files/pkg-install.in')
-rw-r--r-- | mail/sqlgrey/files/pkg-install.in | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/mail/sqlgrey/files/pkg-install.in b/mail/sqlgrey/files/pkg-install.in deleted file mode 100644 index 9c7fc94636ef..000000000000 --- a/mail/sqlgrey/files/pkg-install.in +++ /dev/null @@ -1,38 +0,0 @@ -#! /bin/sh -# -# $FreeBSD$ - -PATH=/bin:/usr/bin:/usr/sbin - -case $2 in - - POST-INSTALL) - - echo "---> Starting install script:" - - if [ -z "%%USER%%" -o -z "%%GROUP%%" ]; then - echo "ERROR: A required pragma was empty" - exit 1 - fi - - # Create home directory if required - if [ -d "%%DATADIR%%" ]; then - echo "---> Using existing Sqlgrey database directory (%%DATADIR%%)" - echo " (There may be existing active sqlgrey databases - this installation" - echo " will attempt to preserve them.)" - else - echo "---> Creating Sqlgrey database directory (%%DATADIR%%)" - (umask 002 && /bin/mkdir -p "%%DATADIR%%") || exit 1 - /usr/sbin/chown -R "%%USER%%:%%GROUP%%" "%%DATADIR%%" || exit 1 - /bin/chmod g+s "%%DATADIR%%" || exit 1 - fi - ;; - - POST-DEINSTALL) - - echo "---> Please, remember to remove the database directory:" - echo " %%DATADIR%%" - echo " If you're only updating, you can leave the things as they are." - ;; - -esac |