Compare commits

..

2 Commits

Author SHA1 Message Date
max 4897cdadbd feat (roles): copies a config with hosts rules in human admin ~/.ssh 2026-09-01 10:18:30 +05:00
max e0571783ba fix (docs): a typ in README.md 2026-09-01 09:31:48 +05:00
3 changed files with 26 additions and 2 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
## How to use it?
It's better to use a virtual environment to avoid incompitability issues
It's better to use a virtual environment to avoid incompatibility issues
```bash
git clone https://git.vmn.su/max/vmn-ansible
@@ -17,4 +17,4 @@ ansible-playbook playbooks/deploy_and_set_up_lxc_on_proxmox.yaml --vault-pass-fi
**deploy** playbooks must be used with `inventory/localhost.yaml`, they need access to proxmox host only
There are also a systemd service and timer under `systemd` directory
There are also a systemd service and timer under `systemd` directory
+15
View File
@@ -0,0 +1,15 @@
# PUT NEW BLOCKS STRICTLY BEFORE ANY MATCH BLOCK
# Private keys are NOT distributed via Ansible
# They must to be copied manually ONLY to those hosts that need access to others
# Most of the home major LAN hosts should be accessible with this key
Match 192.168.0.0/24
User max
IdentityFile ~/.ssh/max_regular_key
# This virtual network has the same hosts range
Match 10.9.2.0/24
User max
IdentityFile ~/.ssh/max_regular_key
+9
View File
@@ -48,6 +48,15 @@
group: "{{ human_admin_user }}"
mode: u=rw,g=r,o-rwx
- name: Configure ssh client, by pushing the config
remote_user: ansible
ansible.builtin.copy:
src: "{{ role_path }}/files/ssh_config"
dest: "/home/{{ human_admin_user }}/.ssh/config"
owner: "{{ human_admin_user }}"
group: "{{ human_admin_user }}"
mode: u=rw,g=r,o-rwx
# WARNING: we've finished with the initial setup, drop ansible key
# Push regular user key