From 78f53f5ecf30e04edc53b59b520ad040c4590f04 Mon Sep 17 00:00:00 2001 From: jgaunt Date: Sat, 9 Nov 2019 21:21:33 -0500 Subject: [PATCH] Update 'freenas_network_unlock.py' --- freenas_network_unlock.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/freenas_network_unlock.py b/freenas_network_unlock.py index 3bdd1ea..54ddcb3 100644 --- a/freenas_network_unlock.py +++ b/freenas_network_unlock.py @@ -2,9 +2,10 @@ import requests # For the api calls import platform # For getting the operating system name import subprocess # For executing a shell command import yaml # For parsing the yaml config file -import config as cfg # configuration file +import config # configuration file -print(cfg) +for host in hosts: + print(host) exit()