Merge pull request #117 from matburt/scan_files_implementation

Scan files implementation
This commit is contained in:
Matthew Jones
2015-04-03 15:37:34 -04:00
2 changed files with 171 additions and 1 deletions

View File

@@ -1,4 +1,11 @@
- hosts: all
vars:
scan_use_checksum: false
scan_use_recursive: false
tasks:
- scan_packages:
- scan_files:
path: '{{ scan_file_path }}'
get_checksum: '{{ scan_use_checksum }}'
recursive: '{{ scan_use_recursive }}'
when: scan_file_path is defined