Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ansible-lint: Move to v6.8.2 #290

Merged
merged 32 commits into from
Nov 13, 2022
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
d7400b8
ansible-lint: jinja[spacing]
Rendanic Oct 30, 2022
9703af1
ansible-lint: jfqcn[action-core]
Rendanic Oct 30, 2022
451a638
ansible-lint: fqcn[canonical]
Rendanic Oct 30, 2022
2f9ade9
ansible-lint: Replaced outdated tag 'unnamed-task' with 'name[missing]'
Rendanic Oct 30, 2022
d889119
ansible-lint: Replaced outdated tag 'fqcn-builtins' with 'fqcn[action…
Rendanic Oct 30, 2022
3e97489
ansible-lint: name[missing]
Rendanic Oct 30, 2022
fc95bf3
ansible-lint: name[template]
Rendanic Oct 30, 2022
36a370d
ansible-lint: include needs to be removed at a later time
Rendanic Oct 30, 2022
8d9764f
ansible-lint: Move to v6.8.2
Rendanic Oct 30, 2022
ee4c7f9
common: ansible-lint
Rendanic Oct 30, 2022
6f74db0
oradb_manage_db: ansible-lint
Rendanic Oct 30, 2022
2377e8d
oraswgi_opatch: ansible-lint
Rendanic Oct 30, 2022
bcd5433
orahost: ansible-lint
Rendanic Oct 30, 2022
063e9c4
oraswgi_manage_patche: ansible-lint
Rendanic Oct 30, 2022
07df678
oraswdb_install: ansible-lint
Rendanic Oct 30, 2022
fefdd25
oradb_manage_parameters: ansible-lint
Rendanic Oct 30, 2022
9f200da
oradb_manage_pdb: ansible-lint
Rendanic Oct 30, 2022
fefca82
oradb_manage_profiles: ansible-lint
Rendanic Oct 30, 2022
b59accc
oradb_manage_redo: ansible-lint
Rendanic Oct 30, 2022
e5061f1
oradb_manage_roles: ansible-lint
Rendanic Oct 30, 2022
50b1754
oradb_manage_services: ansible-lint
Rendanic Oct 30, 2022
9796869
oradb_manage_statspack: ansible-lint
Rendanic Oct 30, 2022
fa99e42
oradb_manage_tablespace: ansible-lint
Rendanic Oct 30, 2022
d543494
oradb_manage_users: ansible-lint
Rendanic Oct 30, 2022
2c8113f
oraswdb_golden_image: ansible-lint
Rendanic Oct 30, 2022
79451fb
playbooks: ansible-lint
Rendanic Oct 30, 2022
ffe4785
oraswdb_manage_patches: ansible-lint
Rendanic Oct 30, 2022
7df8db8
oraswgi_golden_image: ansible-lint
Rendanic Oct 30, 2022
7727828
oraswgi_install: ansible-lint
Rendanic Oct 30, 2022
2f4260b
.pre-commit: more options
Rendanic Nov 1, 2022
51bb606
example: make inventory happy for ansible-lint
Rendanic Nov 13, 2022
8389b86
oradb_tzupgrade: ansible-lint
Rendanic Nov 13, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
oradb_manage_roles: ansible-lint
  • Loading branch information
Rendanic committed Nov 13, 2022
commit e5061f1079d295dce46c8c8ce050190778f24d00
32 changes: 16 additions & 16 deletions roles/oradb_manage_roles/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# tasks file for manage-db-users
- name: Manage roles (cdb)
opitzconsulting.ansible_oracle.oracle_role:
role={{ item.1.name }}
state={{ item.1.state }}
hostname={{ ansible_hostname }}
port={{ listener_port_template }}
service_name={{ db_service_name }}
user={{ db_user }}
password={{ db_password_cdb }}
mode={{ db_mode }}
role: "{{ item.1.name }}"
state: "{{ item.1.state }}"
hostname: "{{ ansible_hostname }}"
port: "{{ listener_port_template }}"
service_name: "{{ db_service_name }}"
user: "{{ db_user }}"
password: "{{ db_password_cdb }}"
mode: "{{ db_mode }}"
with_subelements:
- "{{ oracle_databases }}"
- roles
Expand All @@ -28,14 +28,14 @@

- name: Manage roles (pdb)
opitzconsulting.ansible_oracle.oracle_role:
role={{ item.1.name }}
state={{ item.1.state }}
hostname={{ ansible_hostname }}
port={{ listener_port_template }}
service_name={{ item.0.pdb_name }}
user={{ db_user }}
password={{ db_password_pdb }}
mode={{ db_mode }}
role: "{{ item.1.name }}"
state: "{{ item.1.state }}"
hostname: "{{ ansible_hostname }}"
port: "{{ listener_port_template }}"
service_name: "{{ item.0.pdb_name }}"
user: "{{ db_user }}"
password: "{{ db_password_pdb }}"
mode: "{{ db_mode }}"
with_subelements:
- "{{ oracle_pdbs }}"
- roles
Expand Down