blob: 527a7446804dbd1fa59f0e9577e68755a8a328d3 (
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
|
#!/bin/bash -e
prefix=@prefix@
exec_prefix=@exec_prefix@
sysconfdir=@sysconfdir@
sbindir=@sbindir@
for dir in $sysconfdir/config $prefix/config; do
if [ -d "$dir" ]; then
# already exists
chmod 2775 $dir
else
# create it
mkdir -m 2775 -p $dir
fi
chgrp vyattacfg $dir 2>/dev/null
done
update-rc.d vyatta-router defaults 90 >/dev/null
if [ "$sysconfdir" != "/etc" ]; then
# remove the config files and replace with blank ones
for conf in dhcp3/dhclient.conf
do
[ -f /etc/$conf ] && mv -f /etc/$conf /etc/$conf.vyatta-save
touch /etc/$conf
done
fi
# capability stuff
for bin in my_cli_bin my_cli_shell_api; do
touch -ac $sbindir/$bin
setcap cap_sys_admin=pe $sbindir/$bin
done
# commit hooks
mkdir -p /etc/commit/pre-hooks.d
mkdir -p /etc/commit/post-hooks.d
# create symlink for post commit hook
ln -sf /opt/vyatta/sbin/vyatta-log-commit.pl /etc/commit/post-hooks.d/10vyatta-log-commit.pl
# User pre/post-commit hook executors
ln -s /opt/vyatta/sbin/vyos-user-precommit-hooks.sh /etc/commit/pre-hooks.d/99vyos-user-precommit-hooks
ln -s /opt/vyatta/sbin/vyos-user-postcommit-hooks.sh /etc/commit/post-hooks.d/99vyos-user-postcommit-hooks
|