summaryrefslogtreecommitdiff
path: root/debian/vyatta-cfg.postinst.in
blob: e84995ec77506942e58129270408371578977254 (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 >/dev/null
# do we want to start vyatta-ofr here in postinst?