You've already forked ansible-role-unix-users
Compare commits
22 Commits
0.1.1
...
renovate/v
| Author | SHA1 | Date | |
|---|---|---|---|
|
eb3122ffce
|
|||
|
22048124fd
|
|||
| 0db7c7265a | |||
|
8249283978
|
|||
| c5c832e0b3 | |||
|
b58cd93dff
|
|||
|
75b5e3fb32
|
|||
| 42478da122 | |||
| a4ee09ad9d | |||
|
d72731c835
|
|||
|
a938dab1ec
|
|||
|
042c91f42e
|
|||
| f49f61bbc4 | |||
|
551eed98d5
|
|||
| e172e4990f | |||
|
0e8f256a26
|
|||
| e8d9c85aa5 | |||
|
1ac0da5661
|
|||
| 345c739489 | |||
|
e05d5d9574
|
|||
|
7a757ee119
|
|||
|
c552f95227
|
@@ -12,9 +12,9 @@ jobs:
|
||||
runs-on:
|
||||
- ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5.0.0
|
||||
- name: Run ansible-lint
|
||||
uses: ansible/ansible-lint@v25.7.0
|
||||
uses: ansible/ansible-lint@v25.9.2
|
||||
with:
|
||||
args: "--config-file .ansible-lint"
|
||||
setup_python: "true"
|
||||
|
||||
@@ -12,7 +12,7 @@ jobs:
|
||||
runs-on:
|
||||
- ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4.2.2
|
||||
- uses: actions/checkout@v5.0.0
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v20.0.0
|
||||
with:
|
||||
globs: '**/*.md'
|
||||
|
||||
3890
package-lock.json
generated
Normal file
3890
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
5
package.json
Normal file
5
package.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"dependencies": {
|
||||
"@vscode/vsce": "^3.6.0"
|
||||
}
|
||||
}
|
||||
@@ -76,7 +76,7 @@
|
||||
unix_user.value.btrfs
|
||||
block:
|
||||
- name: "Copy skel files"
|
||||
ansible.builtin.include_tasks: copy_skel_file.yml
|
||||
ansible.builtin.include_tasks: copy_skel_file.yaml
|
||||
loop_control:
|
||||
loop_var: skel_file
|
||||
with_items:
|
||||
@@ -190,7 +190,7 @@
|
||||
|
||||
- name: "Create shell rc files"
|
||||
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:
|
||||
- "{{ unix_user.value.shell_rc_files }}"
|
||||
loop_control:
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
|
||||
- name: Remove unix user
|
||||
ansible.builtin.include_tasks: remove_unix_user.yml
|
||||
ansible.builtin.include_tasks: remove_unix_user.yaml
|
||||
with_dict: "{{ unix_users }}"
|
||||
loop_control:
|
||||
loop_var: unix_user
|
||||
@@ -11,7 +11,7 @@
|
||||
unix_user.value.state == 'absent'
|
||||
|
||||
- name: Remove unix groups
|
||||
ansible.builtin.include_tasks: remove_unix_group.yml
|
||||
ansible.builtin.include_tasks: remove_unix_group.yaml
|
||||
with_dict: "{{ unix_groups }}"
|
||||
loop_control:
|
||||
loop_var: unix_group
|
||||
@@ -21,7 +21,7 @@
|
||||
unix_group.value.state == 'absent'
|
||||
|
||||
- name: Create unix groups
|
||||
ansible.builtin.include_tasks: create_unix_group.yml
|
||||
ansible.builtin.include_tasks: create_unix_group.yaml
|
||||
with_dict: "{{ unix_groups }}"
|
||||
loop_control:
|
||||
loop_var: unix_group
|
||||
@@ -33,7 +33,7 @@
|
||||
)
|
||||
|
||||
- name: Create unix users
|
||||
ansible.builtin.include_tasks: create_unix_user.yml
|
||||
ansible.builtin.include_tasks: create_unix_user.yaml
|
||||
no_log: true
|
||||
with_dict: "{{ unix_users }}"
|
||||
loop_control:
|
||||
Reference in New Issue
Block a user