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()