You've already forked ansible-role-unix-users
Compare commits
8 Commits
75b5e3fb32
...
renovate/v
| Author | SHA1 | Date | |
|---|---|---|---|
|
773449e1fb
|
|||
| b4c70b472e | |||
|
fc2b257c98
|
|||
|
22048124fd
|
|||
| 0db7c7265a | |||
|
8249283978
|
|||
| c5c832e0b3 | |||
|
b58cd93dff
|
@@ -14,7 +14,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5.0.0
|
- uses: actions/checkout@v5.0.0
|
||||||
- name: Run ansible-lint
|
- name: Run ansible-lint
|
||||||
uses: ansible/ansible-lint@v25.9.0
|
uses: ansible/ansible-lint@v25.11.0
|
||||||
with:
|
with:
|
||||||
args: "--config-file .ansible-lint"
|
args: "--config-file .ansible-lint"
|
||||||
setup_python: "true"
|
setup_python: "true"
|
||||||
|
|||||||
6
package-lock.json
generated
6
package-lock.json
generated
@@ -576,9 +576,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@vscode/vsce": {
|
"node_modules/@vscode/vsce": {
|
||||||
"version": "3.6.2",
|
"version": "3.7.0",
|
||||||
"resolved": "https://registry.npmjs.org/@vscode/vsce/-/vsce-3.6.2.tgz",
|
"resolved": "https://registry.npmjs.org/@vscode/vsce/-/vsce-3.7.0.tgz",
|
||||||
"integrity": "sha512-gvBfarWF+Ii20ESqjA3dpnPJpQJ8fFJYtcWtjwbRADommCzGg1emtmb34E+DKKhECYvaVyAl+TF9lWS/3GSPvg==",
|
"integrity": "sha512-LY9r2T4joszRjz4d92ZPl6LTBUPS4IWH9gG/3JUv+1QyBJrveZlcVISuiaq0EOpmcgFh0GgVgKD4rD/21Tu8sA==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@azure/identity": "^4.1.0",
|
"@azure/identity": "^4.1.0",
|
||||||
|
|||||||
@@ -76,7 +76,7 @@
|
|||||||
unix_user.value.btrfs
|
unix_user.value.btrfs
|
||||||
block:
|
block:
|
||||||
- name: "Copy skel files"
|
- name: "Copy skel files"
|
||||||
ansible.builtin.include_tasks: copy_skel_file.yml
|
ansible.builtin.include_tasks: copy_skel_file.yaml
|
||||||
loop_control:
|
loop_control:
|
||||||
loop_var: skel_file
|
loop_var: skel_file
|
||||||
with_items:
|
with_items:
|
||||||
@@ -190,7 +190,7 @@
|
|||||||
|
|
||||||
- name: "Create shell rc files"
|
- name: "Create shell rc files"
|
||||||
when: unix_user.value.shell_rc_files is defined
|
when: unix_user.value.shell_rc_files is defined
|
||||||
ansible.builtin.include_tasks: create_shell_rc_file.yml
|
ansible.builtin.include_tasks: create_shell_rc_file.yaml
|
||||||
with_items:
|
with_items:
|
||||||
- "{{ unix_user.value.shell_rc_files }}"
|
- "{{ unix_user.value.shell_rc_files }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
- name: Remove unix user
|
- name: Remove unix user
|
||||||
ansible.builtin.include_tasks: remove_unix_user.yml
|
ansible.builtin.include_tasks: remove_unix_user.yaml
|
||||||
with_dict: "{{ unix_users }}"
|
with_dict: "{{ unix_users }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
loop_var: unix_user
|
loop_var: unix_user
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
unix_user.value.state == 'absent'
|
unix_user.value.state == 'absent'
|
||||||
|
|
||||||
- name: Remove unix groups
|
- name: Remove unix groups
|
||||||
ansible.builtin.include_tasks: remove_unix_group.yml
|
ansible.builtin.include_tasks: remove_unix_group.yaml
|
||||||
with_dict: "{{ unix_groups }}"
|
with_dict: "{{ unix_groups }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
loop_var: unix_group
|
loop_var: unix_group
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
unix_group.value.state == 'absent'
|
unix_group.value.state == 'absent'
|
||||||
|
|
||||||
- name: Create unix groups
|
- name: Create unix groups
|
||||||
ansible.builtin.include_tasks: create_unix_group.yml
|
ansible.builtin.include_tasks: create_unix_group.yaml
|
||||||
with_dict: "{{ unix_groups }}"
|
with_dict: "{{ unix_groups }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
loop_var: unix_group
|
loop_var: unix_group
|
||||||
@@ -33,7 +33,7 @@
|
|||||||
)
|
)
|
||||||
|
|
||||||
- name: Create unix users
|
- name: Create unix users
|
||||||
ansible.builtin.include_tasks: create_unix_user.yml
|
ansible.builtin.include_tasks: create_unix_user.yaml
|
||||||
no_log: true
|
no_log: true
|
||||||
with_dict: "{{ unix_users }}"
|
with_dict: "{{ unix_users }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
Reference in New Issue
Block a user