summaryrefslogtreecommitdiff
path: root/modules/install_conf
blob: 80f6be292d19861a1c36e33b3258fd484b414b3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash

FAKEROOT=$1
CONFD=$1$2
CONFILE=$1$3
MODULE=$4
CONF=$5

IGNORE_AGE=./.ignore_age
QUIET_INSTALL=../../.quiet_install

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 $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