From 935df2083ff34cfd8a63402e3e6bab9ada602090 Mon Sep 17 00:00:00 2001 From: brent s Date: Sat, 6 May 2017 08:07:03 -0400 Subject: [PATCH] disable reboot --- aifclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aifclient.py b/aifclient.py index 56bd1d6..77d72c8 100755 --- a/aifclient.py +++ b/aifclient.py @@ -943,7 +943,7 @@ def main(): with open(logfile, 'a') as log: pprint.pprint(instconf, stream = log) runInstall(instconf) - subprocess.call(['reboot']) + #subprocess.run(['reboot']) # We should probably leave this up to operators? if __name__ == "__main__": main()