diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 27 | ||||
-rw-r--r-- | debian/vyatta-cfg-system.postinst.in | 3 |
2 files changed, 30 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 18bafeae..46a4d39d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,30 @@ +vyatta-cfg-system (0.15.32) unstable; urgency=low + + * Using perl module for move() rather than system call. + * Avoid unnecessary writing of file if it's the same contents. + + -- Stig Thormodsrud <stig@vyatta.com> Mon, 27 Apr 2009 14:42:17 -0700 + +vyatta-cfg-system (0.15.31) unstable; urgency=low + + * Add configurable login banners. + + -- Stig Thormodsrud <stig@vyatta.com> Sun, 26 Apr 2009 18:53:02 -0700 + +vyatta-cfg-system (0.15.30) unstable; urgency=low + + * * add jump to local-zone-out chain in OUTPUT chain for both [ip and + ip6] tables + + -- Mohit Mehta <mohit.mehta@vyatta.com> Fri, 24 Apr 2009 18:31:57 -0700 + +vyatta-cfg-system (0.15.29) unstable; urgency=low + + * Add support for virtual-ethernet + * New tacacs+ configuration templates + + -- Stephen Hemminger <stephen.hemminger@vyatta.com> Fri, 24 Apr 2009 13:01:24 -0700 + vyatta-cfg-system (0.15.28) unstable; urgency=low [ Justin Fletcher ] diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 59b43d13..b49576d9 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -32,6 +32,9 @@ if [ "$sysconfdir" != "/etc" ]; then touch /etc/sudoers cp -p /etc/sudoers /etc/sudoers.bak + # enable ssh banner + sed -i 's/^#Banner/Banner/' /etc/ssh/sshd_config + # for "admin" level sed -i 's/^# %sudo ALL=NOPASSWD: ALL/%sudo ALL=NOPASSWD: ALL/' /etc/sudoers if ! grep -q '^%sudo ALL=NOPASSWD: ALL' /etc/sudoers; then |