system/tasks/base_software.yml
2019-04-11 11:09:29 +02:00

28 lines
1.3 KiB
YAML

#- name: upgrade system
# pacman:
# state: latest # not required. choices: absent;latest;present. Desired state of the package.
# upgrade: true # not required. Whether or not to upgrade whole system.
# force: true # not required. When removing package - force remove package, without any checks. When update_cache - force redownload repo databases.
# update_cache: true
# become: yes
# register: upgrade
#
#- debug:
# var: upgrade
#
#- name: Reboot updates to apply
# reboot:
# reboot_timeout: 3600
# when: upgrade.changed and "linux" in upgrade.packages
# become: yes
- name: launch base install software
pacman:
state: present # not required. choices: absent;latest;present. Desired state of the package.
name: ['zsh','stow','wol','nmap','rsync','awesome-terminal-fonts','wget','bat','diff-so-fancy','git','htop','thefuck','tldr','ntfs-3g','python-lxml','tmux','vim','zsh-theme-powerlevel9k','python-pip','pacman-contrib','npm','nethogs','iftop','grub' ] # not required. Name or list of names of the packages to install, upgrade, or remove.
become: yes
- name: install powerline status via pip
pip:
name: powerline-status # not required. The name of a Python library to install or the url(bzr+,hg+,git+,svn+) of the remote package.,This can be a list (since 2.2) and contain version specifiers (since 2.7).
extra_args: --user