summaryrefslogtreecommitdiff
path: root/conf/install_conf
diff options
context:
space:
mode:
Diffstat (limited to 'conf/install_conf')
-rwxr-xr-xconf/install_conf36
1 files changed, 0 insertions, 36 deletions
diff --git a/conf/install_conf b/conf/install_conf
deleted file mode 100755
index 7a2acd98..00000000
--- a/conf/install_conf
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/sh
-
-CONFILE="$FAKEROOT"$CONFIGED/pam.conf
-IGNORE_AGE=./.ignore_age
-CONF=./pam.conf
-
-echo
-
-if [ -f "$IGNORE_AGE" ]; then
- echo "you don't want to be bothered with the age of your $CONFILE file"
- yes="n"
-elif [ ! -f "$CONFILE" ] || [ "$CONF" -nt "$CONFILE" ]; then
- if [ -f "$CONFILE" ]; then
- echo "\
-An older Linux-PAM configuration file already exists ($CONFILE)"
- WRITE=overwrite
- fi
- echo -n "\
-Do you wish to copy the $CONF file in this distribution
-to $CONFILE ? (y/n) [n] "
- read yes
-else
- yes=n
-fi
-
-if [ "$yes" = "y" ]; then
- echo " copying $CONF to $CONFILE"
- cp $CONF $CONFILE
-else
- touch "$IGNORE_AGE"
- echo " Skipping $CONF installation"
-fi
-
-echo
-
-exit 0