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