summaryrefslogtreecommitdiff
path: root/debian/vyatta-cfg.postinst.in
blob: 621d783262dff66bda495bf3929a1d301d34e30e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

prefix=@prefix@
sysconfdir=@sysconfdir@

# make sure config dir and config file dir are usable
for d in {$prefix,$sysconfdir}/config; do
  mkdir -p $d
  chgrp -R quaggavty $d
  chmod -R g+w $d
done

update-rc.d vyatta-ofr defaults 99 >/dev/null
# do we want to start vyatta-ofr here in postinst?