diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-12 17:39:58 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-01-12 17:40:00 +0100 |
commit | 656ea31fc6a4313fb002d5f515e130b1451bd067 (patch) | |
tree | 5dc3e99dad58be11d03e087feddc542595a73dfd /scripts | |
parent | 10408791914c53a058e9f935512a5a967fd72512 (diff) | |
download | vyos-build-656ea31fc6a4313fb002d5f515e130b1451bd067.tar.gz vyos-build-656ea31fc6a4313fb002d5f515e130b1451bd067.zip |
QEMU: remove vyos-configd tests
This is not available in VyOS 1.2.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/check-qemu-install | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index 4bc16160..c73efd62 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -68,12 +68,6 @@ parser.add_argument('--logfile', help='Log to file') parser.add_argument('--no-kvm', help='Disable use of kvm', action='store_true', default=False) -parser.add_argument('--configd', help='Execute testsuite with config daemon', - action='store_true', - default=False) -parser.add_argument('--configtest', help='Execute load/commit config tests', - action='store_true', - default=False) args = parser.parse_args() @@ -297,16 +291,6 @@ try: c.expect(r'vyos@vyos:~\$') ################################################# - # Start/stop config daemon - ################################################# - if args.configd: - c.sendline('sudo systemctl start vyos-configd.service &> /dev/null') - c.expect(r'vyos@vyos:~\$') - else: - c.sendline('sudo systemctl stop vyos-configd.service &> /dev/null') - c.expect(r'vyos@vyos:~\$') - - ################################################# # Basic Configmode/Opmode switch ################################################# log.info("Basic CLI configuration mode test") |