diff options
Diffstat (limited to 'debian/vyatta-cfg-system.postinst.in')
-rw-r--r-- | debian/vyatta-cfg-system.postinst.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index a44fe657..1a9f0bd5 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -166,6 +166,13 @@ cp -f /opt/vyatta/etc/syslog.conf /etc/syslog.conf # this logs unnecessary messages trying to start ddclient rm -f /etc/ppp/ip-up.d/ddclient +# set up protected users override file (if necessary) +PU_FILE=/opt/vyatta/etc/protected-users +if [ ! -r "$PU_FILE" ]; then + touch $PU_FILE + chmod 644 $PU_FILE +fi + # Local Variables: # mode: shell-script # sh-indentation: 4 |