diff options
author | Stig Thormodsrud <stig@vyatta.com> | 2009-10-31 13:22:42 -0700 |
---|---|---|
committer | Stig Thormodsrud <stig@vyatta.com> | 2009-10-31 13:22:42 -0700 |
commit | b817fa2eb752bc1f4a8d3c97b7749d003c2bb7d4 (patch) | |
tree | 54c329d60fc947e7562759bebcd8cd8b24ac7be8 /debian | |
parent | 1b8212fe55cc9d83601acc52b43d3e7116542eda (diff) | |
parent | 1f5174a65f21d1280827d7fb911232f4bfc56eb7 (diff) | |
download | vyatta-cfg-quagga-b817fa2eb752bc1f4a8d3c97b7749d003c2bb7d4.tar.gz vyatta-cfg-quagga-b817fa2eb752bc1f4a8d3c97b7749d003c2bb7d4.zip |
Merge branch 'kenwood' of http://git.vyatta.com/vyatta-cfg-system into kenwood
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 22 | ||||
-rw-r--r-- | debian/vyatta-cfg-system.postinst.in | 11 |
2 files changed, 31 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 8c273bf4..4787a9c8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,25 @@ +vyatta-cfg-system (0.15.93) unstable; urgency=low + + * radius client: try first password only if not first + * Shut up debconf when installing pam radius + * radius-server: shutup debconf dialog + * radius: add missing space + + -- Stephen Hemminger <stephen.hemminger@vyatta.com> Fri, 30 Oct 2009 13:37:15 -0700 + +vyatta-cfg-system (0.15.92) unstable; urgency=low + + * Dont start radvd on boot + + -- Stephen Hemminger <stephen.hemminger@vyatta.com> Thu, 29 Oct 2009 11:16:33 -0700 + +vyatta-cfg-system (0.15.91) unstable; urgency=low + + * Fix description of vif bonding + * Use pam-auth-update to configure radius + + -- Stephen Hemminger <stephen.hemminger@vyatta.com> Tue, 27 Oct 2009 18:52:45 -0700 + vyatta-cfg-system (0.15.90) unstable; urgency=low * move priority after tag nodes. diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 1a9f0bd5..95fcd1ca 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -6,8 +6,10 @@ sysconfdir=@sysconfdir@ bindir=@bindir@ sbindir=@sbindir@ -# remove init of daemons that we start/stop -for init in ntp ssh snmpd openhpid vyatta-keepalived ipvsadm dnsmasq ddclient; do +# remove init of daemons that are controlled by Vyatta configuration process +for init in ntp ssh snmpd openhpid \ + vyatta-keepalived ipvsadm dnsmasq ddclient radvd +do update-rc.d -f ${init} remove >/dev/null done @@ -115,6 +117,7 @@ EOF cp $sysconfdir/$f /etc/$f fi done + fi # update crontab for logrotate @@ -124,6 +127,7 @@ rm /etc/crontab mv /etc/crontab.$$ /etc/crontab crontab /etc/crontab + # create needed directories mkdir -p /var/log/user @@ -144,6 +148,9 @@ update-rc.d -f ssh remove >/dev/null # for password sed -i 's/requisite[ \t][ \t]*pam_securetty.so/required pam_securetty.so/' $rootfsdir/etc/pam.d/login +# Install pamradius config (should come with radius client eventually) +cp $sysconfdir/pam-radius /usr/share/pam-configs/radius + [ grep "blacklist.*snd-pcsp" >&/dev/null ] || echo "blacklist snd-pcsp" >>/etc/modprobe.d/blacklist # |