diff options
| author | Daniil Baturin <daniil@vyos.io> | 2025-04-15 15:41:30 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-15 15:41:30 +0100 |
| commit | a86a3980b4ffae9970de1abd123e02965ab3356a (patch) | |
| tree | d31e34ee4ed90f84b795e6128e4d9bd4577103f1 /src/init | |
| parent | eba349629e2dd4cec6dbec0e03ee7232d2540296 (diff) | |
| parent | 588f2e02028bc3e0d1203c750c3cba56fb8291f2 (diff) | |
| download | vyos-1x-a86a3980b4ffae9970de1abd123e02965ab3356a.tar.gz vyos-1x-a86a3980b4ffae9970de1abd123e02965ab3356a.zip | |
Merge pull request #4449 from c-po/netplug-T7353
T7353: T7360: netplug: behavior change 1.3.8 -> 1.4 when interface with DHCP address looses carrier
Diffstat (limited to 'src/init')
| -rwxr-xr-x | src/init/vyos-router | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/init/vyos-router b/src/init/vyos-router index 565b778e6..081adf214 100755 --- a/src/init/vyos-router +++ b/src/init/vyos-router @@ -557,6 +557,9 @@ start () if [[ ! -z "$tmp" ]]; then vtysh -c "rpki start" fi + + # Start netplug daemon + systemctl start netplug.service } stop() @@ -574,8 +577,8 @@ stop() umount ${vyatta_configdir} log_action_end_msg $? + systemctl stop netplug.service systemctl stop vyconfd.service - systemctl stop frr.service unmount_encrypted_config |
