You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
947 B
34 lines
947 B
---
|
|
|
|
- name: Manage local users and groups
|
|
collections: [ 'debops.debops', 'debops.roles01',
|
|
'debops.roles02', 'debops.roles03' ]
|
|
hosts: [ 'debian10' ]
|
|
become: True
|
|
|
|
environment: '{{ inventory__environment | d({})
|
|
| combine(inventory__group_environment | d({}))
|
|
| combine(inventory__host_environment | d({})) }}'
|
|
|
|
vars:
|
|
system_users__self: False
|
|
system_users__dotfiles_enabled: True
|
|
system_users__dotfiles_repo: 'https://vcs.wpstudio.ru/gitea/dotfiles.git'
|
|
|
|
vars_files:
|
|
- ./../../vars/system_users.yml
|
|
|
|
post_tasks:
|
|
- name: Change starship character to dollar sign
|
|
shell: |
|
|
sed -i 's/#/\\$/g' /home/{{ site_name }}/.config/starship.toml
|
|
args:
|
|
executable: /bin/bash
|
|
|
|
roles:
|
|
|
|
- role: libuser
|
|
tags: [ 'role::libuser', 'skip::libuser' ]
|
|
|
|
- role: system_users
|
|
tags: [ 'role::system_users', 'skip::system_users' ]
|