From a682edf3d37fabf248fd75d1e69fb9deaad7f99a Mon Sep 17 00:00:00 2001 From: Salt Date: Mon, 18 Apr 2022 11:13:07 -0500 Subject: [PATCH] Totally deprecate scan configuration --- playbooks/all_scanner.yml | 12 ------------ playbooks/site_pre.yml | 1 - 2 files changed, 13 deletions(-) delete mode 100755 playbooks/all_scanner.yml diff --git a/playbooks/all_scanner.yml b/playbooks/all_scanner.yml deleted file mode 100755 index eb68d9b..0000000 --- a/playbooks/all_scanner.yml +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env ansible-playbook -# vim:ft=ansible: ---- -- hosts: all - gather_facts: no - tasks: - - name: assure scanner user - user: name=scanner state=absent - tags: [ scanner, greenbone ] - - name: assure scanner user sudoers rule - lineinfile: path=/etc/sudoers line="scanner ALL=(ALL:ALL) NOPASSWD:ALL" state=absent - tags: [ scanner, greenbone ] diff --git a/playbooks/site_pre.yml b/playbooks/site_pre.yml index 29293ce..2407680 100755 --- a/playbooks/site_pre.yml +++ b/playbooks/site_pre.yml @@ -4,7 +4,6 @@ # Preambulatory system configuration # It's implicit that configuration here MUST preceed site_main.yml - import_playbook: all.yml -- import_playbook: all_scanner.yml # Platform configuration - import_playbook: "{{ item }}" loop: "{{ lookup('fileglob' 'platforms_*.yml') }}"