2021-10-14 19:13:03 +02:00
|
|
|
## This playbook deploys a FvS desktop machine.
|
2020-11-28 09:23:44 +01:00
|
|
|
---
|
|
|
|
- name: apply configuration to the machines
|
|
|
|
hosts: all
|
|
|
|
remote_user: ansible
|
|
|
|
become: yes
|
|
|
|
vars:
|
|
|
|
extra_pkgs:
|
|
|
|
- webext-privacy-badger
|
|
|
|
- webext-ublock-origin
|
2020-12-02 13:03:44 +01:00
|
|
|
- vim
|
|
|
|
- emacs
|
2022-06-02 08:41:56 +02:00
|
|
|
- elpa-magit
|
|
|
|
- elpa-color-theme-modern
|
2020-12-02 13:03:44 +01:00
|
|
|
- vlc
|
|
|
|
- gimp
|
|
|
|
- inkscape
|
|
|
|
- bluefish
|
|
|
|
- git
|
2022-06-02 08:41:56 +02:00
|
|
|
- gitk
|
|
|
|
- gitg
|
2020-12-02 13:03:44 +01:00
|
|
|
- mc
|
|
|
|
- tmux
|
|
|
|
- wireshark
|
|
|
|
- nmap
|
|
|
|
- netcat-openbsd
|
|
|
|
- net-tools
|
2022-03-13 10:27:15 +01:00
|
|
|
- ghex
|
2020-12-02 13:03:44 +01:00
|
|
|
- thonny
|
2022-06-02 08:41:56 +02:00
|
|
|
- spyder
|
2020-12-02 13:03:44 +01:00
|
|
|
- mu-editor
|
|
|
|
- dia
|
|
|
|
- vym
|
|
|
|
- tree
|
|
|
|
- console-setup
|
|
|
|
- virt-manager
|
2022-03-13 10:27:15 +01:00
|
|
|
- libreoffice-l10n-de
|
2022-06-02 08:41:56 +02:00
|
|
|
extra_pkgs_bpo: [ libreoffice ] # [ linux-image-amd64 ] # [ libreoffice ]
|
2021-07-27 12:13:40 +02:00
|
|
|
ansible_python_interpreter: "/usr/bin/python3"
|
2020-11-28 09:23:44 +01:00
|
|
|
|
|
|
|
roles:
|
2022-07-25 09:06:50 +02:00
|
|
|
- up2date_debian
|
2020-12-18 08:14:43 +01:00
|
|
|
- fvs-sssd
|
|
|
|
- fvs-mount
|
|
|
|
- fvs-client
|
2020-11-28 09:23:44 +01:00
|
|
|
## Choose either gnome or KDE:
|
|
|
|
- gnome
|
|
|
|
#- kde
|
2022-06-02 11:01:56 +02:00
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: Add local user 'virti' in the 'libvirt' group
|
|
|
|
ansible.builtin.user:
|
|
|
|
name: virti
|
|
|
|
password: $y$j9T$DuSvAO63v5LvoJmJ1rB0B0$D4tovIz79AdLHs5I6tYa7rxr3SWknQeUFvGaaKvUpo3
|
|
|
|
comment: Libvirt VM User,,,
|
|
|
|
shell: /bin/bash
|
|
|
|
groups: libvirt
|
|
|
|
append: yes
|