]> 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 597959fb7bb77c616de03c3b48b568d12b4b4f67..92f5546fc1499acf6c8fb47640635efbe3e823f3 100644 (file)
         autoremove: yes
         cache_valid_time: 3600
         install_recommends: no
-        name: ['fvwm', 'hibernate', 'mpv', 'pavucontrol', 'pulseaudio',
-               'rxvt-unicode', 'uswsusp',
-               'x11-apps', 'x11-xserver-utils', 'xbindkeys', 'xinit',
-               'xli', 'xloadimage', 'xorg', 'xscreensaver', 'xserver-xorg',
-               'xserver-xorg-input-kbd', 'xserver-xorg-input-mouse',
-               'xserver-xorg-input-synaptics', 'xserver-xorg-legacy',
-               'xserver-xorg-video-vesa', 'xxkb',
+        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: Extend fstab (add cgroups)
-      become: true
-      lineinfile:
-        path: /etc/fstab
-        regexp: "^none              /sys/fs/cgroup cgroup   memory         0        0$"
-        line: "none              /sys/fs/cgroup cgroup   memory         0        0"
-    - name: Extend fstab (add webdav.yandex.ru)
-      become: true
-      lineinfile:
-        path: /etc/fstab
-        regexp: "^https://webdav.yandex.ru /mnt     davfs   noauto,user    0        0$"
-        line: "https://webdav.yandex.ru /mnt     davfs   noauto,user    0        0"
+    - 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