blob: 4d6d0c44fc994d104d4efd11b62cab9a38706f3e [file] [log] [blame]
Alex Savatieievf526dc02019-03-06 10:11:32 -06001from cfg_checker.modules.network.checker import NetworkChecker
Alex Savatieievc9055712019-03-01 14:43:56 -06002
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")