From 325cfa1ed8dfe41aaf393bdf04f38c6b392f7994 Mon Sep 17 00:00:00 2001 From: An-Cheng Huang Date: Sat, 12 Jul 2008 17:01:56 -0700 Subject: fix for bug 3459: make bash-completion use "builtin set". --- debian/vyatta-cfg-system.postinst.in | 2 ++ 1 file changed, 2 insertions(+) (limited to 'debian') diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index b21437a5..cac2a55a 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -85,6 +85,8 @@ if [ ! -f /etc/bash_completion ]; then echo "source /etc/bash_completion.d/20vyatta-cfg" >> /etc/bash_completion fi +sed -i 's/^set /builtin set /' /etc/bash_completion + # Local Variables: # mode: shell-script # sh-indentation: 4 -- cgit v1.2.3 From c415474342cccde3cbe00cb6fc4a7ee3aeb00cc3 Mon Sep 17 00:00:00 2001 From: rbalocca Date: Tue, 22 Jul 2008 12:10:05 -0700 Subject: The postinst was printing a '?' --- debian/vyatta-cfg-system.postinst.in | 1 + 1 file changed, 1 insertion(+) (limited to 'debian') diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index cac2a55a..e7ac929a 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -32,6 +32,7 @@ if [ "$sysconfdir" != "/etc" ]; then fi # cleanup any old entries from previous versions + touch /etc/sudoers ed - /etc/sudoers < Date: Fri, 25 Jul 2008 14:56:16 +0000 Subject: add dnsmasq package to be included in the build --- debian/control | 3 ++- debian/vyatta-cfg-system.postinst.in | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'debian') diff --git a/debian/control b/debian/control index 214be062..20237cd1 100644 --- a/debian/control +++ b/debian/control @@ -33,7 +33,8 @@ Depends: sed (>= 4.1.5), usbutils, tasksel, snmp, - tcpdump + tcpdump, + dnsmasq Pre-Depends: bash-completion Suggests: util-linux (>= 2.13-5), net-tools, diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 61a4842a..91e5f1e0 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -7,7 +7,7 @@ bindir=@bindir@ sbindir=@sbindir@ # remove init of daemons that we start/stop -for init in ntp ssh snmpd openhpid vyatta-keepalived ipvsadm; do +for init in ntp ssh snmpd openhpid vyatta-keepalived ipvsadm dnsmasq; do update-rc.d -f ${init} remove >/dev/null done -- cgit v1.2.3 From 573add99eb1632e43707acd086d7010d08f465d5 Mon Sep 17 00:00:00 2001 From: rbalocca Date: Mon, 28 Jul 2008 16:26:29 -0700 Subject: Since this packages changes the bash-completion conf file, it must be installed after bash-completion --- debian/control | 1 + debian/vyatta-cfg-system.postinst.in | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/control b/debian/control index 4b5692bb..214be062 100644 --- a/debian/control +++ b/debian/control @@ -34,6 +34,7 @@ Depends: sed (>= 4.1.5), tasksel, snmp, tcpdump +Pre-Depends: bash-completion Suggests: util-linux (>= 2.13-5), net-tools, ethtool, diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index e7ac929a..61a4842a 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -23,6 +23,7 @@ esac ln -sf ../vyatta-net.rules /etc/udev/rules.d/$vyatta_net_rules if [ "$sysconfdir" != "/etc" ]; then + touch /etc/sudoers cp -p /etc/sudoers /etc/sudoers.bak # for "admin" level @@ -32,7 +33,6 @@ if [ "$sysconfdir" != "/etc" ]; then fi # cleanup any old entries from previous versions - touch /etc/sudoers ed - /etc/sudoers < Date: Wed, 30 Jul 2008 12:19:45 -0700 Subject: Partial fix for http://bugzilla.vyatta.com/show_bug.cgi?id=3225 --- debian/vyatta-cfg-system.postinst.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 61a4842a..109e59d1 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -33,7 +33,7 @@ if [ "$sysconfdir" != "/etc" ]; then fi # cleanup any old entries from previous versions - ed - /etc/sudoers <&/dev/null < Date: Wed, 30 Jul 2008 12:39:23 -0700 Subject: Fix for http://bugzilla.vyatta.com/show_bug.cgi?id=3225 --- debian/vyatta-cfg-system.postinst.in | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'debian') diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 109e59d1..0dd6248f 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -33,13 +33,12 @@ if [ "$sysconfdir" != "/etc" ]; then fi # cleanup any old entries from previous versions - ed /etc/sudoers >&/dev/null <>/etc/sudoers ### BEGIN VYATTA -- cgit v1.2.3 From 87365a0abddc24dd19b3c237fc04dd3d1417e936 Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Wed, 30 Jul 2008 15:06:03 -0700 Subject: Get rid of debian build warning Line too long --- debian/copyright | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/copyright b/debian/copyright index f12deb1f..5eb46c84 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,8 @@ This package was debianized by An-Cheng Huang on Thu, 18 Oct 2007 11:03:18 -0700. -It's original content from the GIT repository +It's original content from the GIT repository + Upstream Author: -- cgit v1.2.3 From c094e68c6a0bab40ad60792b8ea2c0eb5477dc7c Mon Sep 17 00:00:00 2001 From: Mark O'Brien Date: Wed, 6 Aug 2008 00:22:41 -0700 Subject: control: added ifenslave-2.6 to debian control file --- debian/control | 1 + 1 file changed, 1 insertion(+) (limited to 'debian') diff --git a/debian/control b/debian/control index 20237cd1..b23880d2 100644 --- a/debian/control +++ b/debian/control @@ -27,6 +27,7 @@ Depends: sed (>= 4.1.5), ssh, ed, tshark, + ifenslave-2.6, iputils-arping installation-report, laptop-detect, -- cgit v1.2.3 From 5249053c47fd72a36870c2195eefabc7915b92e5 Mon Sep 17 00:00:00 2001 From: Mohit Mehta Date: Tue, 5 Aug 2008 15:44:30 +0000 Subject: add missing comma --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/control b/debian/control index b23880d2..bcca954f 100644 --- a/debian/control +++ b/debian/control @@ -28,7 +28,7 @@ Depends: sed (>= 4.1.5), ed, tshark, ifenslave-2.6, - iputils-arping + iputils-arping, installation-report, laptop-detect, usbutils, -- cgit v1.2.3