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.

27 lines
1.3 KiB

  1. ---
  2. - name: Manage root system account
  3. collections: [ 'debops.debops', 'debops.roles01',
  4. 'debops.roles02', 'debops.roles03' ]
  5. hosts: [ 'debian10' ]
  6. become: True
  7. environment: '{{ inventory__environment | d({})
  8. | combine(inventory__group_environment | d({}))
  9. | combine(inventory__host_environment | d({})) }}'
  10. vars:
  11. root_account__enabled: True
  12. root_account__password: False
  13. # root_account__dotfiles_enabled: True
  14. # root_account__dotfiles_repo: 'https://vcs.wpstudio.ru/gitea/dotfiles.git'
  15. post_tasks:
  16. - name: Tmux Plugins Manager
  17. # Вообще это конструкция не нужна, так как tmux и сам все прекрасно умеет устанавливать, только если бы у него в этот момент была программа git
  18. # Хотя нет, блин, нихрена он не умеет. Последнюю команду он почему не запускает: ~/.tmux/plugins/tpm/bin/install_plugins
  19. shell: test -d ~/.tmux/plugins/tpm || git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm && ~/.tmux/plugins/tpm/bin/install_plugins
  20. roles:
  21. - role: root_account
  22. tags: [ 'role::root_account', 'skip::root_account' ]