2018-08-22 18:42:52 +00:00
|
|
|
---
|
|
|
|
- name: Update and upgrade all packages
|
|
|
|
pacman:
|
|
|
|
update_cache: yes
|
|
|
|
upgrade: yes
|
2018-11-07 09:57:55 +00:00
|
|
|
tags:
|
|
|
|
- first_deployement
|
2018-08-22 18:42:52 +00:00
|
|
|
|
2018-08-23 12:32:42 +00:00
|
|
|
- name: Install base CLI packages
|
2018-08-22 18:42:52 +00:00
|
|
|
pacman:
|
2018-10-08 08:59:02 +00:00
|
|
|
name:
|
|
|
|
- sudo
|
|
|
|
- wget
|
|
|
|
- cronie
|
|
|
|
- vim
|
|
|
|
- tmux
|
|
|
|
- ruby
|
|
|
|
- git
|
|
|
|
- tig
|
|
|
|
- openssh
|
|
|
|
- sshfs
|
|
|
|
- htop
|
|
|
|
- ntop
|
|
|
|
- iotop
|
|
|
|
- glances
|
|
|
|
- ranger
|
|
|
|
- nmap
|
|
|
|
- nfs-utils
|
|
|
|
- sshpass
|
2018-10-17 09:29:13 +00:00
|
|
|
- rsync
|
2018-10-18 15:13:10 +00:00
|
|
|
- autofs
|
2018-11-05 13:01:04 +00:00
|
|
|
- bind-tools
|
2018-11-11 10:09:33 +00:00
|
|
|
- unzip
|
2018-11-12 09:34:49 +00:00
|
|
|
- fzf
|
2018-11-17 09:01:17 +00:00
|
|
|
- ntfs-3g
|
2019-01-14 07:16:36 +00:00
|
|
|
- git-annex
|
2019-02-03 17:32:32 +00:00
|
|
|
- cifs-utils
|
2019-04-01 07:55:14 +00:00
|
|
|
- vifm
|
2018-08-22 18:42:52 +00:00
|
|
|
state: present
|
2018-11-07 09:57:55 +00:00
|
|
|
tags:
|
|
|
|
- first_deployement
|
2018-08-22 18:42:52 +00:00
|
|
|
|
2018-08-23 12:32:42 +00:00
|
|
|
- name: Install extra CLI packages
|
|
|
|
pacman:
|
2018-10-08 09:01:58 +00:00
|
|
|
name:
|
2018-11-29 17:23:38 +00:00
|
|
|
- moc
|
2018-10-08 09:01:58 +00:00
|
|
|
- newsboat
|
|
|
|
- pass
|
|
|
|
- cups
|
|
|
|
- cups-pdf
|
2018-12-07 07:37:30 +00:00
|
|
|
- task
|
2019-01-02 08:24:30 +00:00
|
|
|
- profanity
|
2018-08-23 12:32:42 +00:00
|
|
|
state: present
|
2018-08-25 09:05:56 +00:00
|
|
|
when: not minimal or not server
|
2018-08-24 07:18:58 +00:00
|
|
|
|
2018-10-04 13:47:17 +00:00
|
|
|
- name: enable service cups
|
|
|
|
systemd:
|
|
|
|
name: org.cups.cupsd
|
|
|
|
enabled: yes
|
2018-10-04 15:48:34 +00:00
|
|
|
state: started
|
|
|
|
when: not minimal or not server
|
|
|
|
|
|
|
|
- name: enable service nfs
|
|
|
|
systemd:
|
2018-10-08 08:38:29 +00:00
|
|
|
name: nfs-client.target
|
2018-10-04 15:48:34 +00:00
|
|
|
enabled: yes
|
|
|
|
state: started
|
2018-10-04 13:47:17 +00:00
|
|
|
when: not minimal or not server
|
|
|
|
|
2018-08-24 07:20:46 +00:00
|
|
|
- name: More colorfull pacman
|
|
|
|
lineinfile:
|
|
|
|
dest: /etc/pacman.conf
|
|
|
|
regexp: '^#Color$'
|
|
|
|
line: 'Color'
|
2018-08-24 09:26:37 +00:00
|
|
|
backrefs: yes
|
2018-08-24 08:00:59 +00:00
|
|
|
|
2018-11-11 16:42:31 +00:00
|
|
|
- name: Install mkpasswd
|
|
|
|
aur:
|
|
|
|
name: mkpasswd
|
|
|
|
use: makepkg
|
|
|
|
skip_installed: true
|
|
|
|
become: yes
|
|
|
|
become_user: aur_builder
|
|
|
|
|
2019-04-16 08:47:45 +00:00
|
|
|
# - name: Init Samba (empty config)
|
|
|
|
# file:
|
|
|
|
# path: /etc/samba/smb.conf
|
|
|
|
# state: file
|
2019-02-03 17:32:32 +00:00
|
|
|
|
2019-04-16 08:47:45 +00:00
|
|
|
# - name: Install Tmuxinator
|
|
|
|
# aur:
|
|
|
|
# name: "{{ item }}"
|
|
|
|
# use: yay
|
|
|
|
# skip_installed: true
|
|
|
|
# with_items:
|
|
|
|
# - tmuxinator
|
|
|
|
# become: yes
|
|
|
|
# become_user: aur_builder
|
2018-08-24 08:00:59 +00:00
|
|
|
|