summaryrefslogtreecommitdiff
path: root/debian/vyatta-cfg.postinst.in
blob: f840803044e3cb9b8d01a4f787baa7d9989343e5 (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
#!/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
for hook in PreCommit PostCommit; do
  d=$(cli-shell-api get${hook}HookDir)
  if [ -n "$d" ] && [ ! -e "$d" ]; then
    mkdir -p "$d"
  fi
done

# handle renamed file (not automatically deleted since it was "conffile")
rm -f /etc/bash_completion.d/20vyatta-cfg

# create symlink for post commit hook
ln -sf /opt/vyatta/sbin/vyatta-log-commit.pl /etc/commit/post-hooks.d/10vyatta-log-commit.pl

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/pre-hooks.d/99vyos-user-postcommit-hooks