summaryrefslogtreecommitdiffstats
path: root/system/freeipmi/doinst.sh
blob: fe318696f2316cbde6deed3b6bd792d5725a0657 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

config() {
    NEW="$1"
    OLD="${1%.new}"
    if [ ! -r $OLD ];
    then
        # If there's no config file by that name, mv it over:
        mv $NEW $OLD
    elif [ "$(md5sum <$OLD)" = "$(md5sum <$NEW)" ];
    then
        # toss the redundant copy
        rm $NEW
    fi
    # Otherwise, we leave the .new copy for the admin to consider...
}

# doinst.sh reads the list of files from ./install/conffiles at install time.
# ./install/conffiles was generated at build time/
for cf in $(cat install/conffiles)
do
    config $cf.new
done