system/tasks/base_software.yml

6 lines
580 B
YAML
Raw Normal View History

- name: launch base install software
pacman:
state: present # not required. choices: absent;latest;present. Desired state of the package.
2018-12-02 20:03:03 +00:00
name: ['zsh','stow','nmap','rsync','awesome-terminal-fonts','wget','bat','diff-so-fancy','git','htop','thefuck','tldr','ntfs-3g','tmux','vim','zsh-theme-powerlevel9k' ] # not required. Name or list of names of the packages to install, upgrade, or remove.
update_cache: true # not required. Whether or not to refresh the master package lists. This can be run as part of a package installation or as a separate step.
2019-01-12 18:12:55 +00:00
become: yes