diff --git a/.gitignore b/.gitignore index 4fc9754..8d5b691 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .vscode inventory -ansible.cfg \ No newline at end of file +ansible.cfg +test.sh diff --git a/slococo/playground/README.md b/slococo/playground/README.md index 767ad2c..a3680a6 100644 --- a/slococo/playground/README.md +++ b/slococo/playground/README.md @@ -7,6 +7,7 @@ This Ansible collection contains two roles: `local_accounts` and `ssh_config`. T ## Requirements - Ansible version supporting collections (`ansible-core` > 2.12) +- `community.crypto` collection ## 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) - `home`: Path for the home directory (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 @@ -38,23 +42,12 @@ Include the `local_accounts` role in your playbook and define the `local_users` - name: local_adm shell: /bin/bash userid: 38000087 - expiry_date: null - home: /home/local_adm - groups: [primary_group] - name: local_log shell: /bin/sh userid: 38000088 expiry_date: "2024-12-31" - home: /home/local_log - groups: [primary_group] ``` - - - - - - ## Role: ssh_config ### Description @@ -63,7 +56,14 @@ This role ensures the SSH daemon on the target host has specific options configu ### 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 diff --git a/slococo/playground/molecule/default/converge.yml b/slococo/playground/molecule/default/converge.yml index d4db277..2207ea1 100644 --- a/slococo/playground/molecule/default/converge.yml +++ b/slococo/playground/molecule/default/converge.yml @@ -4,14 +4,14 @@ become: true pre_tasks: - - name: Update the apt cache + - name: Update the apt cache and install openssh packages ansible.builtin.apt: update_cache: true name: - openssh-server - openssh-client - - name: Stop and Start ssh + - name: Restart ssh service ansible.builtin.service: name: sshd state: restarted diff --git a/slococo/playground/roles/local_accounts/README.md b/slococo/playground/roles/local_accounts/README.md index aa03da9..bcdebad 100644 --- a/slococo/playground/roles/local_accounts/README.md +++ b/slococo/playground/roles/local_accounts/README.md @@ -1,4 +1,4 @@ -Role Name +local_accounts ========= An Ansible Role to create local user accounts. @@ -8,6 +8,7 @@ Requirements - Ansible 2.12.0 or later - This role requires elevated privileges. Make sure to set `become: true` when using this role. +- `community.crypto` collection 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) 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) + 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 diff --git a/slococo/playground/roles/ssh_config/README.md b/slococo/playground/roles/ssh_config/README.md index fbddb0c..668c6b5 100644 --- a/slococo/playground/roles/ssh_config/README.md +++ b/slococo/playground/roles/ssh_config/README.md @@ -1,4 +1,4 @@ -Role Name +ssh_config ========= 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 - This role requires elevated privileges. Make sure to set `become: true` when using this role. -- `community.crypto` collection ## Role Variables ```yaml -options: +ssh_config_options: PasswordAuthentication: 'yes' # Allow password authentication (default: yes) PermitEmptyPasswords: 'no' # Permit users to have empty passwords (default: no) PermitRootLogin: 'no' # Permit root login (default: no)