diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2007-11-06 16:40:49 -0800 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2007-11-06 16:40:49 -0800 |
commit | 79ee9229cc8ad833c4bb4e0eaf89cfe3645ed094 (patch) | |
tree | 817823ac6ec386e05d73cc5efe9c0c9297445e23 /debian | |
parent | 76b12db507c0381b9b93db73a4cacab89dcd8c13 (diff) | |
download | vyatta-cfg-quagga-79ee9229cc8ad833c4bb4e0eaf89cfe3645ed094.tar.gz vyatta-cfg-quagga-79ee9229cc8ad833c4bb4e0eaf89cfe3645ed094.zip |
don't need to change /etc/hosts in postinst
Diffstat (limited to 'debian')
-rw-r--r-- | debian/vyatta-cfg-system.postinst.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 15287bcc..42085362 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -19,7 +19,7 @@ ln -sf ${bindir}/progress-indicator /usr/bin/progress-indicator if [ "$sysconfdir" != "/etc" ]; then # remove the config files and replace with blank ones - for conf in hosts motd.tail ntp.conf syslog.conf logrotate.d/messages \ + for conf in motd.tail ntp.conf syslog.conf logrotate.d/messages \ default/ssh ssh/ssh_host_key quagga/daemons quagga/zebra.conf \ quagga/bgpd.conf quagga/ospfd.conf quagga/ospf6d.conf \ quagga/ripd.conf quagga/ripngd.conf quagga/isisd.conf \ @@ -31,7 +31,7 @@ if [ "$sysconfdir" != "/etc" ]; then done # use our config files - for conf in hosts motd.tail syslog.conf; do + for conf in motd.tail syslog.conf; do cp $sysconfdir/$conf /etc/$conf done cp $sysconfdir/logrotate_messages /etc/logrotate.d/messages |