]> git.phdru.name Git - ansible.git/blobdiff - playbooks/debian/init-local-phd.yml
Fix(init-local-phd): Comment out `pidgin` and related packages
[ansible.git] / playbooks / debian / init-local-phd.yml
index 1c1f89fecfe3e67b79cd0ce3120433f2d407cdf5..92f5546fc1499acf6c8fb47640635efbe3e823f3 100644 (file)
@@ -1,5 +1,5 @@
 - name: Update local user phd
-  hosts: localhost
+  hosts: "{{ hosts | default('localhost') }}"
   gather_facts: false
   vars:
     system_groups: root,adm,disk,cdrom,floppy,sudo,audio,www-data,video,plugdev,staff,users,Debian-exim,fuse,sambashare,bluetooth,davfs2,vboxusers,input
       become: true
       group:
         name: phd
-    - name: user phd
+    - name: Create user phd
       become: true
       user:
         name: phd
         groups: "{{ system_groups }}"
-    - name: Install X11
+    - name: Install packages
       become: true
       apt:
         autoclean: yes
         autoremove: yes
         cache_valid_time: 3600
         install_recommends: no
-        name: ['fvwm', 'rxvt-unicode', 'xorg']
+        name: [
+          # System
+          'acpi', 'fuse-convmvfs', 'curlftpfs', 'hibernate', 'ntfs-3g',
+          'pinentry-gtk2', # for GnuPG
+          'sshfs', 'uswsusp',
+          # Audio
+          'audacious', 'pavucontrol', 'pulseaudio',
+          # Browsers
+          'chromium',
+          'libdbus-1-3', # for Firefox
+          # Docs and texts
+          'docutils-doc', 'fbreader', 'qpdfview', 'sqlite3-doc',
+          'vim-doc', 'vim-gtk3',
+          # Image handling
+          'imagemagick', 'imagemagick-doc',
+          'xli', 'xloadimage',
+          # Instant messaging
+          #'pidgin', 'pidgin-awayonlock', 'pidgin-encryption',
+          #'pidgin-extprefs', 'pidgin-mra', 'pidgin-openpgp', 'pidgin-otr',
+          #'pidgin-plugin-pack', 'pidgin-privacy-please', 'pidgin-skype',
+          # Video
+          'mpv',
+          # X Windows
+          'fvwm', 'gxmessage', 'rxvt-unicode',
+          'x11-apps', 'x11-xserver-utils', 'xbindkeys', 'xclip', 'xinit',
+          'xsel', 'xorg', 'xscreensaver', 'xserver-xorg',
+          'xserver-xorg-input-kbd', 'xserver-xorg-input-mouse',
+          'xserver-xorg-input-synaptics', 'xserver-xorg-legacy',
+          'xserver-xorg-video-vesa', 'xxkb',
+        ]
         state: latest
         update_cache: yes
+    - name: Mount cgroups
+      mount:
+        path: /sys/fs/cgroup
+        src: none
+        opts: memory
+        state: mounted
+        fstype: cgroup
+    - name: Mount webdav.yandex.ru
+      mount:
+        path: /mnt
+        src: https://webdav.yandex.ru
+        opts: noauto,user
+        state: present
+        fstype: davfs