From 12ce8b309d2535ba7277da4561bdd80bb89185be Mon Sep 17 00:00:00 2001 From: Peri Diane Jones Date: Sat, 11 Aug 2018 22:28:13 +0000 Subject: T772 allow stow-away arguments in the script name field https://phabricator.vyos.net/T772 --- src/validators/script | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/validators') diff --git a/src/validators/script b/src/validators/script index beeba57ae..689296a73 100755 --- a/src/validators/script +++ b/src/validators/script @@ -20,6 +20,7 @@ import re import os import sys +import shlex import vyos.util @@ -28,7 +29,8 @@ if len(sys.argv) < 2: print("Please specify script file to check") sys.exit(1) -script = sys.argv[1] +#if the "script" is a script+ stowaway arugments, this removes the aguements +script = shlex.split(sys.argv[1])[0] if not os.path.exists(script): print("File {0} does not exist".format(script)) -- cgit v1.2.3