diff options
-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") |