-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed linting issues Signed-off-by: schamola <[email protected]> * linting issue Signed-off-by: schamola <[email protected]> --------- Signed-off-by: schamola <[email protected]>
- Loading branch information
Showing
10 changed files
with
69 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
--- | ||
#[email protected] | ||
#Demo playbook | ||
#Create a local nginx with the patches | ||
#Download patches with playbook: | ||
#demo_shell_flrtvc_wget_ifix.yml | ||
# [email protected] | ||
# Demo playbook | ||
# Create a local nginx with the patches | ||
# Download patches with playbook: | ||
# demo_shell_flrtvc_wget_ifix.yml | ||
- name: "Demo install ifix from flrtvc from local patch server" | ||
hosts: all | ||
gather_facts: no | ||
gather_facts: false | ||
vars: | ||
localpatchserver: "192.168.1.1" | ||
localpatchpath: "ifix" | ||
|
@@ -15,20 +15,20 @@ | |
flrtvczip: "{{protocol}}://{{localpatchserver}}/{{localpatchpath}}/FLRTVC-latest.zip" | ||
apar_csv_url: "{{protocol}}://{{localpatchserver}}/{{localpatchpath}}/apar.csv" | ||
debug: false | ||
collections: | ||
- ibm.power_aix | ||
tasks: | ||
- name: Download apar.csv to {{ apar_csv }} from {{ apar_csv_url }} | ||
ansible.builtin.shell: | ||
cmd: "wget -q --no-check-certificate {{ apar_csv_url }} -O {{ apar_csv }}" | ||
- name: Download apar.csv to /tmp/apar.csv from {{ apar_csv_url }} | ||
ansible.builtin.get_url: | ||
url: "{{ apar_csv_url }}" | ||
dest: "{{ apar_csv }}" | ||
validate_certs: false | ||
|
||
- name: install all security interim fixes | ||
- name: Install all security interim fixes | ||
ibm.power_aix.flrtvc: | ||
apar: "sec" | ||
verbose: true | ||
protocol: "{{ protocol }}" | ||
force: no | ||
clean: no | ||
force: false | ||
clean: false | ||
flrtvczip: "{{ flrtvczip }}" | ||
localpatchserver: "{{ localpatchserver }}" | ||
localpatchpath: "{{ localpatchpath }}" | ||
|
@@ -39,7 +39,7 @@ | |
https_proxy: "" | ||
PATH: "/usr/bin:/usr/sbin:/usr/local/bin:/opt/freeware/bin" | ||
|
||
- name: debug reg_install | ||
- name: Debug reg_install | ||
ansible.builtin.debug: | ||
var: reg_install | ||
when: debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.