summaryrefslogtreecommitdiffstats
path: root/contrib/zkt/examples/flat/dist.sh
blob: c112f559e86144812ef1546c9498f0852154d21c (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
#################################################################
#
#	@(#) dist.sh -- distribute and reload command for dnssec-signer
#
#	(c) Jul 2008 Holger Zuleger  hznet.de
#
#	This shell script will be run by dnssec-signer as a distribution
#	and reload command if:
#
#		a) the dnssec.conf file parameter Distribute_Cmd: points
#		   to this file
#	and
#		b) the user running the dnssec-signer command is not
#		   root (uid==0)
#	and
#		c) the owner of this shell script is the same as the
#		   running user and the access rights don't allow writing
#		   for anyone except the owner
#	or
#		d) the group of this shell script is the same as the
#		   running user and the access rights don't allow writing
#		   for anyone except the group
#
#################################################################

# set path to rndc and scp
PATH="/bin:/usr/bin:/usr/local/sbin"

# remote server and directory
server=localhost	# fqdn of remote name server
dir=/var/named		# zone directory on remote name server

progname=$0
usage()
{
	echo "usage: $progname distribute|reload <domain> <path_to_zonefile> [<viewname>]" 1>&2
	test $# -gt 0 && echo $* 1>&2
	exit 1
}

if test $# -lt 3
then
	usage
fi
action="$1"
domain="$2"
zonefile="$3"
view=""
test $# -gt 3 && view="$4"

case $action in
distribute)
	if test -n "$view"
	then
		echo "scp $zonefile $server:$dir/$view/$domain/"
		: scp $zonefile $server:$dir/$view/$domain/
	else
		echo "scp $zonefile $server:$dir/$domain/"
		: scp $zonefile $server:$dir/$domain/
	fi
	;;
reload)
	echo "rndc $action $zone $view"
	: rndc $action $zone $view
	;;
*)
	usage "illegal action $action"
	;;
esac