head	1.2;
access;
symbols
	pam_unpruned:1.1.1.1
	morgan_0_65:1.1.1.1
	MORGAN:1.1.1;
locks; strict;
comment	@# @;


1.2
date	98.11.25.19.45.59;	author jdp;	state dead;
branches;
next	1.1;

1.1
date	98.11.18.01.16.20;	author jdp;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	98.11.18.01.16.20;	author jdp;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Remove files that we don't use and are unlikely to use.  You can
still get them with "cvs upd -r pam_unpruned" if you want to look at
them.
@
text
@#!/bin/bash

CONFILE=$FAKEROOT"$CONFILE"
IGNORE_AGE=./.ignore_age
QUIET_INSTALL=../../.quiet_install
CONF=./limits.skel
MODULE=pam_limits

echo

if [ -f "$QUIET_INSTALL" ]; then
    if [ ! -f "$CONFILE" ]; then
        yes="y"
    else
        yes="skip"
    fi
elif [ -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 $MODULE configuration file already exists ($CONFILE)"
	echo "Do you wish to copy the $CONF file in this distribution"
	echo "to $CONFILE ? (y/n) [skip] "
        read yes
    else
	yes="y"
    fi
else
    yes="skip"
fi

if [ "$yes" = "y" ]; then
    mkdir -p $FAKEROOT$CONFD
    echo "  copying $CONF to $CONFILE"
    cp $CONF $CONFILE
else
    echo "  Skipping $CONF installation"
    if [ "$yes" = "n" ]; then
	touch "$IGNORE_AGE"
    fi
fi

echo

exit 0
@


1.1
log
@Initial revision
@
text
@@


1.1.1.1
log
@Initial import of virgin Linux-PAM 0.65, slightly stripped down.
@
text
@@
