1
0

Remove old configs

This commit is contained in:
Anton Vakhrushev 2025-05-04 11:12:44 +03:00
parent c6db39b55a
commit 38bafd7186
Signed by: av
GPG Key ID: F5BF52FC352E255A
2 changed files with 0 additions and 19 deletions

View File

@ -1 +0,0 @@
192.168.50.10

View File

@ -1,18 +0,0 @@
---
- name: 'Create owner.'
import_role:
name: owner
vars:
owner_name: '{{ username }}'
owner_group: '{{ username }}'
owner_extra_groups: '{{ extra_groups | default([]) }}'
owner_ssh_keys: '{{ ssh_keys | default([]) }}'
owner_env: '{{ env | default({}) }}'
- name: 'Create web dir.'
file:
path: '/var/www/{{ username }}'
state: directory
owner: '{{ username }}'
group: '{{ username }}'
recurse: True