Ansible_workstation/tasks/arch_CLI_packages.yml

80 lines
1.3 KiB
YAML
Raw Normal View History

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:
name:
- pacman-contrib
- sudo
- wget
- cronie
- vim
- tmux
- ruby
- git
- tig
- openssh
- sshfs
- htop
- ntop
- iotop
- glances
- nmap
- nfs-utils
2019-06-24 05:51:33 +00:00
- samba
- 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
- unzip
- 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-05-11 15:57:41 +00:00
- gnupg
2019-07-09 14:53:09 +00:00
- traceroute
2019-09-11 18:32:27 +00:00
- smartmontools
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:
name:
- moc
- pass
- cups
- cups-pdf
2018-12-07 07:37:30 +00:00
- task
2019-01-02 08:24:30 +00:00
- profanity
2019-05-14 18:01:33 +00:00
- neomutt
- youtube-dl
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:
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