blob: f70c41072a0baaa3696b24439572db72c6054694 [file] [log] [blame]
Alex Savatieievc9055712019-03-01 14:43:56 -06001from cfg_checker.network.checker import NetworkChecker
2
3if __name__ == '__main__':
4 # init connection to salt and collect minion data
5 cl = NetworkChecker()
6
7 # collect data on installed packages
8 cl.collect_network_info()
9
10 # diff installed and candidates
11 # cl.collect_packages()
12
13 # report it
14 cl.create_html_report("./pkg_versions.html")