From 68cd1f0cd55bfe76a44f552fd04e4019539a3a99 Mon Sep 17 00:00:00 2001 From: hagbard Date: Mon, 7 Jan 2019 15:04:28 -0800 Subject: T1026: Removing tunnel deletes all tunnels? --- debian/changelog | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 1f14c36e..bfe81527 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,15 @@ +vyatta-cfg-system (0.20.44+vyos2+current17) unstable; urgency=low + + * T1026 - Removing tunnel deletes all tunnels? + + -- hagbard Mon, 07 Jan 2019 14:24:33 -0800 + vyatta-cfg-system (0.20.44+vyos2+current16) unstable; urgency=low * T1053 - Error when re-configuring an interface from DHCP to static IP -- hagbard Thu, 29 Nov 2018 14:26:07 -0800 + vyatta-cfg-system (0.20.44+vyos2+current15) unstable; urgency=medium * Virtio network card, no info (maybe not fully supported?) -- cgit v1.2.3 From 5dc05b81da218114e75adb5176ca02640823f2bf Mon Sep 17 00:00:00 2001 From: hagbard Date: Tue, 15 Jan 2019 12:22:22 -0800 Subject: Fix: T1181 - enable/disable interface doesn't restart dhclient on enable --- debian/changelog | 6 ++++++ templates/interfaces/ethernet/node.tag/disable/node.def | 4 ++++ 2 files changed, 10 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index bfe81527..00c15b91 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +vyatta-cfg-system (0.20.44+vyos2+current18) unstable; urgency=low + + * T1181 dhclient not restarted if interface switches from disable to enabled again + + -- hagbard Tue, 15 Jan 2019 12:19:16 -0800 + vyatta-cfg-system (0.20.44+vyos2+current17) unstable; urgency=low * T1026 - Removing tunnel deletes all tunnels? diff --git a/templates/interfaces/ethernet/node.tag/disable/node.def b/templates/interfaces/ethernet/node.tag/disable/node.def index c948e970..418fe24c 100644 --- a/templates/interfaces/ethernet/node.tag/disable/node.def +++ b/templates/interfaces/ethernet/node.tag/disable/node.def @@ -14,3 +14,7 @@ delete: [ -d /sys/class/net/$VAR(../@) ] || exit 0 fi affinity=$VAR(../smp-affinity/@) sudo /opt/vyatta/sbin/irq-affinity.pl $VAR(../@) ${affinity:-auto} + s=$(cli-shell-api showCfg interfaces ethernet $VAR(../@) address | awk '{print $2}') + if [ "$s" == "dhcp" ]; then + /etc/netplug/linkup.d/dhclient $VAR(../@) + fi -- cgit v1.2.3 From 9df8abe49b2e5c7a23f7d2344a9be92a978bc998 Mon Sep 17 00:00:00 2001 From: hagbard Date: Thu, 17 Jan 2019 11:53:46 -0800 Subject: netplug scripts moved into vyos-netplug --- Makefile.am | 6 ------ debian/changelog | 5 +++++ 2 files changed, 5 insertions(+), 6 deletions(-) (limited to 'debian') diff --git a/Makefile.am b/Makefile.am index ce970826..990cba46 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5,8 +5,6 @@ curverdir = $(sysconfdir)/config-migrate/current gentmpdir = generated-templates checkparamsonrebootdir = $(bindir)/sudo-users/check-params-on-reboot.d initddir = /etc/init.d -netplugupdir = /etc/netplug/linkup.d -netplugdowndir = /etc/netplug/linkdown.d modprobedir = /etc/modprobe.d modprobe_DATA = etc/modprobe.d/no-copybreak.conf @@ -24,10 +22,6 @@ initd_SCRIPTS += etc/init.d/ec2-vyos-init initd_SCRIPTS += etc/init.d/vyatta-config-reboot-params checkparamsonreboot_SCRIPTS += scripts/check-params-on-reboot.d/ipv6_disable_blacklist - -netplugup_SCRIPTS = scripts/netplug/linkup/dhclient -netplugdown_SCRIPTS = scripts/netplug/linkdown/dhclient - bin_SCRIPTS += scripts/progress-indicator bin_SCRIPTS += scripts/vyatta-functions bin_SCRIPTS += scripts/restricted-shell diff --git a/debian/changelog b/debian/changelog index 00c15b91..4f4d5fda 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,8 @@ +vyatta-cfg-system (0.20.44+vyos2+current19) unstable; urgency=low + + * linkdown.d and linkup.d scripts moved into vyos-netplug + + -- hagbard Thu, 17 Jan 2019 11:51:42 -0800 vyatta-cfg-system (0.20.44+vyos2+current18) unstable; urgency=low * T1181 dhclient not restarted if interface switches from disable to enabled again -- cgit v1.2.3