blob: 4690c18b9b2c768e57d7d01d0f749c6c5bef79fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
prefix=@prefix@
sysconfdir=@sysconfdir@
update-rc.d vyatta-ofr defaults 90 >/dev/null
# do we want to start vyatta-ofr here in postinst?
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
|