diff options
author | Shreenidhi Shedi <53473811+sshedi@users.noreply.github.com> | 2021-08-31 00:51:10 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-30 14:21:10 -0500 |
commit | 7fc3f08ebc20eb496b3d318bb718ece569b10dba (patch) | |
tree | 9399b1b552aafa5f16096bd54e1566c1576bdc40 /tests/unittests/test_net_activators.py | |
parent | de8931edc4093013fd685938e1c4e5a3d53f653c (diff) | |
download | vyos-cloud-init-7fc3f08ebc20eb496b3d318bb718ece569b10dba.tar.gz vyos-cloud-init-7fc3f08ebc20eb496b3d318bb718ece569b10dba.zip |
Add support to accept-ra in networkd renderer (#999)
Also fix search path in networkd
Diffstat (limited to 'tests/unittests/test_net_activators.py')
-rw-r--r-- | tests/unittests/test_net_activators.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unittests/test_net_activators.py b/tests/unittests/test_net_activators.py index 38f2edf2..f63a8b74 100644 --- a/tests/unittests/test_net_activators.py +++ b/tests/unittests/test_net_activators.py @@ -118,8 +118,8 @@ NETWORK_MANAGER_AVAILABLE_CALLS = [ ] NETWORKD_AVAILABLE_CALLS = [ - (('ip',), {'search': ['/usr/bin', '/bin'], 'target': None}), - (('systemctl',), {'search': ['/usr/bin', '/bin'], 'target': None}), + (('ip',), {'search': ['/usr/sbin', '/bin'], 'target': None}), + (('systemctl',), {'search': ['/usr/sbin', '/bin'], 'target': None}), ] |