summaryrefslogtreecommitdiffstats
path: root/etc/periodic/daily/220.backup-distfile
blob: 16a0541570a2dffcef8ddb3635706a25e0bb1587 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#
# $FreeBSD$
#
bak=/var/backups

if [ -f /etc/Distfile ]; then
    echo ""
    echo "Backing up /etc/Distfile:"

    if cmp -s $bak/Distfile.bak /etc/Distfile; then :; else
	mv $bak/Distfile.bak $bak/Distfile.bak2
	cp /etc/Distfile $bak/Distfile.bak
    fi
fi
OpenPOWER on IntegriCloud