diff options
| author | Makoto Matsushita <matusita@FreeBSD.org> | 2004-03-17 13:47:27 +0000 |
|---|---|---|
| committer | Makoto Matsushita <matusita@FreeBSD.org> | 2004-03-17 13:47:27 +0000 |
| commit | 202756df9accc65cbf4c9658b89798d8d16e421f (patch) | |
| tree | 0eb41b42b7d06d714ad3503c4c361f76c1ed5941 /mail/popfile/files/setup-popfile.sh | |
| parent | BROKEN on amd64 and ia64: Coredump during build (diff) | |
Update to v0.21.0.
Other (minor) changes are listed below:
* Update additional patches also.
* Add new perl module dependency which POPFile newly 'use'ed.
* Add new runtime dependency option, WITH_POPFILE_UPGRADE_FROM_0_20.
If you're using previous version of POPFile, you may want to make
this port with WITH_POPFILE_UPGRADE_FROM_0_20=YES.
* Display compile-time option introduction.
* Introduce popfile.sh, per-user bases startup script. Since v0.21.0
supports multi-user, you don't have to have your _own_ copy of POPFile.
setup-popfile.sh is also removed; it doesn't need anymore.
Diffstat (limited to 'mail/popfile/files/setup-popfile.sh')
| -rw-r--r-- | mail/popfile/files/setup-popfile.sh | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/mail/popfile/files/setup-popfile.sh b/mail/popfile/files/setup-popfile.sh deleted file mode 100644 index aa0fce9e9483..000000000000 --- a/mail/popfile/files/setup-popfile.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# -# setup-popfile.sh: a script for setup popfile instance -# $FreeBSD$ -# - -ask_noyes() -{ - local key - - echo -n "$1 [y/N]: " - read key - case "$key" in - [Yy]*) - return 0;; - *) - return 1;; - esac -} - -echo "This script will 1) create 'popfile' directory and 2) setup 'popfile' directory for your popfile instance." -if ask_noyes "Are you ready?"; then - mkdir ./popfile - if [ -d ./popfile ]; then - cp -R __DATADIR__/* ./popfile - fi - echo "done." -else - echo "Stopped." - exit 1 -fi |
