You've already forked ansible-role-unix-users
Compare commits
15 Commits
e8d9c85aa5
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
22048124fd
|
|||
| 0db7c7265a | |||
|
8249283978
|
|||
| c5c832e0b3 | |||
|
b58cd93dff
|
|||
|
75b5e3fb32
|
|||
| 42478da122 | |||
| a4ee09ad9d | |||
|
d72731c835
|
|||
|
a938dab1ec
|
|||
|
042c91f42e
|
|||
| f49f61bbc4 | |||
|
551eed98d5
|
|||
| e172e4990f | |||
|
0e8f256a26
|
@@ -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.8.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.3.0
|
||||
- uses: actions/checkout@v5.0.0
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v20.0.0
|
||||
with:
|
||||
globs: '**/*.md'
|
||||
|
||||
18
package-lock.json
generated
18
package-lock.json
generated
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "unix-users",
|
||||
"name": "ansible-role-unix-users",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
@@ -576,16 +576,16 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@vscode/vsce": {
|
||||
"version": "3.6.0",
|
||||
"resolved": "https://repo-nexus.orbis.dedalus.com/nexus/repository/npm-all/@vscode/vsce/-/vsce-3.6.0.tgz",
|
||||
"integrity": "sha512-u2ZoMfymRNJb14aHNawnXJtXHLXDVKc1oKZaH4VELKT/9iWKRVgtQOdwxCgtwSxJoqYvuK4hGlBWQJ05wxADhg==",
|
||||
"version": "3.6.2",
|
||||
"resolved": "https://registry.npmjs.org/@vscode/vsce/-/vsce-3.6.2.tgz",
|
||||
"integrity": "sha512-gvBfarWF+Ii20ESqjA3dpnPJpQJ8fFJYtcWtjwbRADommCzGg1emtmb34E+DKKhECYvaVyAl+TF9lWS/3GSPvg==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@azure/identity": "^4.1.0",
|
||||
"@secretlint/node": "^10.1.1",
|
||||
"@secretlint/secretlint-formatter-sarif": "^10.1.1",
|
||||
"@secretlint/secretlint-rule-no-dotenv": "^10.1.1",
|
||||
"@secretlint/secretlint-rule-preset-recommend": "^10.1.1",
|
||||
"@secretlint/node": "^10.1.2",
|
||||
"@secretlint/secretlint-formatter-sarif": "^10.1.2",
|
||||
"@secretlint/secretlint-rule-no-dotenv": "^10.1.2",
|
||||
"@secretlint/secretlint-rule-preset-recommend": "^10.1.2",
|
||||
"@vscode/vsce-sign": "^2.0.0",
|
||||
"azure-devops-node-api": "^12.5.0",
|
||||
"chalk": "^4.1.2",
|
||||
@@ -602,7 +602,7 @@
|
||||
"minimatch": "^3.0.3",
|
||||
"parse-semver": "^1.1.1",
|
||||
"read": "^1.0.7",
|
||||
"secretlint": "^10.1.1",
|
||||
"secretlint": "^10.1.2",
|
||||
"semver": "^7.5.2",
|
||||
"tmp": "^0.2.3",
|
||||
"typed-rest-client": "^1.8.4",
|
||||
|
||||
@@ -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