Update README.md
ci/woodpecker/push/woodpecker Pipeline was successful
Details
ci/woodpecker/push/woodpecker Pipeline was successful
Details
This commit is contained in:
parent
fa02e91582
commit
96c744c4d0
|
@ -1,3 +1,4 @@
|
||||||
.vscode
|
.vscode
|
||||||
inventory
|
inventory
|
||||||
ansible.cfg
|
ansible.cfg
|
||||||
|
test.sh
|
||||||
|
|
|
@ -7,6 +7,7 @@ This Ansible collection contains two roles: `local_accounts` and `ssh_config`. T
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
- Ansible version supporting collections (`ansible-core` > 2.12)
|
- Ansible version supporting collections (`ansible-core` > 2.12)
|
||||||
|
- `community.crypto` collection
|
||||||
|
|
||||||
## Role: local_accounts
|
## Role: local_accounts
|
||||||
|
|
||||||
|
@ -23,6 +24,9 @@ This role configures multiple local user accounts on the target host as specifie
|
||||||
- `expiry_date`: Expiry date for the account (optional)
|
- `expiry_date`: Expiry date for the account (optional)
|
||||||
- `home`: Path for the home directory (optional)
|
- `home`: Path for the home directory (optional)
|
||||||
- `groups`: List of groups the user belongs to (optional)
|
- `groups`: List of groups the user belongs to (optional)
|
||||||
|
- `passwordless`: Enable or disable passwordless authentication (optional)
|
||||||
|
|
||||||
|
- `local_accounts_pk_path`: Path to the private key on the Ansible control node (optional)
|
||||||
|
|
||||||
### Usage
|
### Usage
|
||||||
|
|
||||||
|
@ -38,23 +42,12 @@ Include the `local_accounts` role in your playbook and define the `local_users`
|
||||||
- name: local_adm
|
- name: local_adm
|
||||||
shell: /bin/bash
|
shell: /bin/bash
|
||||||
userid: 38000087
|
userid: 38000087
|
||||||
expiry_date: null
|
|
||||||
home: /home/local_adm
|
|
||||||
groups: [primary_group]
|
|
||||||
- name: local_log
|
- name: local_log
|
||||||
shell: /bin/sh
|
shell: /bin/sh
|
||||||
userid: 38000088
|
userid: 38000088
|
||||||
expiry_date: "2024-12-31"
|
expiry_date: "2024-12-31"
|
||||||
home: /home/local_log
|
|
||||||
groups: [primary_group]
|
|
||||||
```
|
```
|
||||||
|
|
||||||
<!-- TODO -->
|
|
||||||
|
|
||||||
<!-- ### Additional Functionality -->
|
|
||||||
|
|
||||||
<!-- The role also supports configuring passwordless authentication for the local users created. -->
|
|
||||||
|
|
||||||
## Role: ssh_config
|
## Role: ssh_config
|
||||||
|
|
||||||
### Description
|
### Description
|
||||||
|
@ -63,7 +56,14 @@ This role ensures the SSH daemon on the target host has specific options configu
|
||||||
|
|
||||||
### Variables
|
### Variables
|
||||||
|
|
||||||
No additional variables required.
|
- `ssh_config_options`: Dictionary containing SSH configuration options. Each option is a key-value pair where the key represents the SSH option as found in `/etc/ssh/sshd_config`, and the value represents the desired value for that option.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
ssh_config_options:
|
||||||
|
PasswordAuthentication: 'yes'
|
||||||
|
```
|
||||||
|
|
||||||
### Usage
|
### Usage
|
||||||
|
|
||||||
|
|
|
@ -4,14 +4,14 @@
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
pre_tasks:
|
pre_tasks:
|
||||||
- name: Update the apt cache
|
- name: Update the apt cache and install openssh packages
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
update_cache: true
|
update_cache: true
|
||||||
name:
|
name:
|
||||||
- openssh-server
|
- openssh-server
|
||||||
- openssh-client
|
- openssh-client
|
||||||
|
|
||||||
- name: Stop and Start ssh
|
- name: Restart ssh service
|
||||||
ansible.builtin.service:
|
ansible.builtin.service:
|
||||||
name: sshd
|
name: sshd
|
||||||
state: restarted
|
state: restarted
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
Role Name
|
local_accounts
|
||||||
=========
|
=========
|
||||||
|
|
||||||
An Ansible Role to create local user accounts.
|
An Ansible Role to create local user accounts.
|
||||||
|
@ -8,6 +8,7 @@ Requirements
|
||||||
|
|
||||||
- Ansible 2.12.0 or later
|
- Ansible 2.12.0 or later
|
||||||
- This role requires elevated privileges. Make sure to set `become: true` when using this role.
|
- This role requires elevated privileges. Make sure to set `become: true` when using this role.
|
||||||
|
- `community.crypto` collection
|
||||||
|
|
||||||
Role Variables
|
Role Variables
|
||||||
--------------
|
--------------
|
||||||
|
@ -20,6 +21,9 @@ local_accounts_list:
|
||||||
expiry_date: # Expiry date for the local user in the format 'YYYY-MM-DD' (optional, default: never)
|
expiry_date: # Expiry date for the local user in the format 'YYYY-MM-DD' (optional, default: never)
|
||||||
home: # Home directory path for the local user (optional, default: "/home/{{ name }}")
|
home: # Home directory path for the local user (optional, default: "/home/{{ name }}")
|
||||||
groups: # List of groups the local user belongs to (optional, default: its own group)
|
groups: # List of groups the local user belongs to (optional, default: its own group)
|
||||||
|
passwordless: # Boolean value indicating whether SSH key pairs should be generated for passwordless authentication (optional, default: false)
|
||||||
|
|
||||||
|
local_accounts_pk_path: # Path to the private key on the Ansible control node (optional, default: "/tmp")
|
||||||
```
|
```
|
||||||
|
|
||||||
Example Playbook
|
Example Playbook
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
Role Name
|
ssh_config
|
||||||
=========
|
=========
|
||||||
|
|
||||||
An Ansible Role to manage SSH configuration on Linux systems.
|
An Ansible Role to manage SSH configuration on Linux systems.
|
||||||
|
@ -7,12 +7,11 @@ An Ansible Role to manage SSH configuration on Linux systems.
|
||||||
|
|
||||||
- Ansible 2.12.0 or later
|
- Ansible 2.12.0 or later
|
||||||
- This role requires elevated privileges. Make sure to set `become: true` when using this role.
|
- This role requires elevated privileges. Make sure to set `become: true` when using this role.
|
||||||
- `community.crypto` collection
|
|
||||||
|
|
||||||
## Role Variables
|
## Role Variables
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
options:
|
ssh_config_options:
|
||||||
PasswordAuthentication: 'yes' # Allow password authentication (default: yes)
|
PasswordAuthentication: 'yes' # Allow password authentication (default: yes)
|
||||||
PermitEmptyPasswords: 'no' # Permit users to have empty passwords (default: no)
|
PermitEmptyPasswords: 'no' # Permit users to have empty passwords (default: no)
|
||||||
PermitRootLogin: 'no' # Permit root login (default: no)
|
PermitRootLogin: 'no' # Permit root login (default: no)
|
||||||
|
|
Loading…
Reference in New Issue