summaryrefslogtreecommitdiffstats
path: root/etc/periodic/daily/220.backup-distfile
blob: 96a0529f91ee248f3726ce9703eac7b3699cccd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#
# $Id: 220.backup-distfile,v 1.1.1.1 1997/08/16 17:04:00 pst Exp $
#
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