From 959adf45fad678bfd7bf3de15033753c95ade2fb Mon Sep 17 00:00:00 2001 From: Mohit Mehta Date: Thu, 2 Oct 2008 23:02:11 -0700 Subject: Fix Bug 3609 - "show tech-support" does not display open file information for operator level user - add lsof to sudoers file for use by an operator level user --- debian/vyatta-cfg-system.postinst.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 925edcb5..46a7b5c7 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -60,7 +60,7 @@ Cmnd_Alias DATE = /bin/date, /usr/sbin/ntpdate Cmnd_Alias PPPOE_CMDS = /sbin/pppd, /sbin/poff Cmnd_Alias PCAPTURE = /usr/bin/tshark, /usr/bin/tcpdump %operator ALL=NOPASSWD: /sbin/reboot, DATE, IPTABLES, ETHTOOLP, IPFLUSH, \ - PPPOE_CMDS, PCAPTURE, /usr/sbin/wanpipemon + PPPOE_CMDS, PCAPTURE, /usr/sbin/wanpipemon, /usr/bin/lsof EOF cat <>/etc/sudoers %users ALL=NOPASSWD: ${bindir}/sudo-users/ -- cgit v1.2.3 From e9b009defbc8cb128096b8026e787d864ad52e97 Mon Sep 17 00:00:00 2001 From: Bob Gilligan Date: Fri, 3 Oct 2008 10:30:05 -0700 Subject: Bugfix: 3743 Default answer question about diag partitionis "no". --- scripts/install-system | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-system b/scripts/install-system index d06695e0..20b9f6a3 100644 --- a/scripts/install-system +++ b/scripts/install-system @@ -360,7 +360,7 @@ check_for_new_raid () { echo "Would you like me to create a $part_diag_size MB partition for diagnostics?" echo -n "(Yes/No) [No]: " - diag_response=$(get_response "Yes" "Yes No Y N") + diag_response=$(get_response "No" "Yes No Y N") if [ "$diag_response" == "yes" ] || [ "$diag_response" == "y" ]; then for drive in $drives do -- cgit v1.2.3 From 764d9b48880b321e166dce8941bedd87733cbf7d Mon Sep 17 00:00:00 2001 From: rbalocca Date: Fri, 3 Oct 2008 16:09:42 -0700 Subject: Fix for bug http://bugzilla.vyatta.com/show_bug.cgi?id=3735 --- debian/vyatta-cfg-system.postinst.in | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 925edcb5..d2ca0a95 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -91,6 +91,7 @@ sed -i 's/^set /builtin set /' /etc/bash_completion # for password sed -i 's/requisite[ \t][ \t]*pam_securetty.so/required pam_securetty.so/' $rootfsdir/etc/pam.d/login +[ grep "blacklist.*snd-pcsp" >&/dev/null ] || echo "blacklist snd-pcsp" >>/etc/modprobe.d/blacklist # Local Variables: # mode: shell-script -- cgit v1.2.3 From 41a724bb81b713ab86430c34ccbc9171cdd9d4d0 Mon Sep 17 00:00:00 2001 From: Mohit Mehta Date: Mon, 6 Oct 2008 17:17:34 -0700 Subject: don't poll resolv files for nameserver changes - it messes up statistics we already make sure that nameservers are re-reread when any change from any configured source of nameservers happen --- scripts/dns-forwarding/vyatta-dns-forwarding.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/dns-forwarding/vyatta-dns-forwarding.pl b/scripts/dns-forwarding/vyatta-dns-forwarding.pl index 38f5ee67..6cdcfaa0 100644 --- a/scripts/dns-forwarding/vyatta-dns-forwarding.pl +++ b/scripts/dns-forwarding/vyatta-dns-forwarding.pl @@ -50,6 +50,7 @@ sub dnsforwarding_get_constants { chomp $date; $output = "#\n# autogenerated by vyatta-dns-forwarding.pl on $date\n#\n"; $output .= "log-facility=/var/log/dnsmasq.log\n"; + $output .= "no-poll\n"; system("rm -f /var/log/dnsmasq.log; touch /var/log/dnsmasq.log"); return $output; } -- cgit v1.2.3