summaryrefslogtreecommitdiffstats
path: root/etc/periodic/daily/200.backup-passwd
blob: 5c585aff5f3c76932196fc2d4c1365f6feb4ebef (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/bin/sh
#
# $FreeBSD$
#

# If there is a global system configuration file, suck it in.
#
if [ -r /etc/defaults/periodic.conf ]
then
    . /etc/defaults/periodic.conf
    source_periodic_confs
fi

case "$daily_backup_passwd_enable" in
    [Yy][Ee][Ss])
	if [ ! -f /etc/master.passwd ]
	then
	    echo '$daily_backup_passwd_enable" is set but /etc/master.passwd' \
		"doesn't exist"
	    rc=2
	elif [ ! -f /etc/group ]
	then
	    echo '$daily_backup_passwd_enable" is set but /etc/group' \
		"doesn't exist"
	    rc=2
	else
	    bak=/var/backups
	    rc=0

	    echo ""
	    echo "Backup passwd and group files:"

	    if [ ! -f $bak/master.passwd.bak ]
	    then
		rc=1
		echo "no $bak/master.passwd.bak"
		cp -p /etc/master.passwd $bak/master.passwd.bak || rc=3
	    fi

	    if ! cmp -s $bak/master.passwd.bak /etc/master.passwd
	    then
		[ $rc -lt 1 ] && rc=1
		echo "$host passwd diffs:"
		diff -I '^#' $bak/master.passwd.bak /etc/master.passwd |\
			sed 's/^\([<>] [^:]*\):[^:]*:/\1:(password):/'
		mv $bak/master.passwd.bak $bak/master.passwd.bak2
		cp -p /etc/master.passwd $bak/master.passwd.bak || rc=3
	    fi

	    if [ ! -f $bak/group.bak ]
	    then
		[ $rc -lt 1 ] && rc=1
		echo "no $bak/group.bak"
		cp -p /etc/group $bak/group.bak || rc=3
	    fi

	    if ! cmp -s $bak/group.bak /etc/group
	    then
		[ $rc -lt 1 ] && rc=1
		echo "$host group diffs:"
		diff $bak/group.bak /etc/group
		mv $bak/group.bak $bak/group.bak2
		cp -p /etc/group $bak/group.bak || rc=3
	    fi

	    if [ -f /etc/group ]
	    then
	        echo ""
		echo "Verifying group file syntax:"
	        chkgrp /etc/group || rc=3
	    fi
	fi;;

    *)  rc=0;;
esac

exit $rc
OpenPOWER on IntegriCloud