1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_packages.git synced 2024-08-16 10:19:51 +02:00

Change default options

This commit is contained in:
Lilian Roller 2019-05-14 17:37:22 +02:00
parent 56add31e8d
commit 02a7fa60df
No known key found for this signature in database
GPG key ID: 5215C3441797AB2B
3 changed files with 49 additions and 36 deletions

View file

@ -1,38 +1,6 @@
---
base_packages:
- tmux
- sudo
- htop
- iftop
- iotop
- sysstat
- ethtool
- ethstatus
- nethogs
- nload
- ncdu
- atop
- vim
- nmap
- python3
- wget
- git
- bash-completion
- unzip
- python3-pip
- asciinema
- ranger
- net-tools
- links
debian_packages:
- molly-guard
- mtr-tiny
- knot-dnsutils
fedora_packages:
- mtr
- libselinux-python
packages_extra: []
# - foo
# - bar
upgrade_packages_to_latest_version: false
submodules_versioncheck: true

View file

@ -81,6 +81,16 @@
cache_valid_time: 43200
when: ansible_distribution == 'Debian'
- name: Install extra packages
become: true
package:
name: "{{ packages_extra }}"
state: present
when:
- packages_extra is defined
- packages_extra != ""
- packages_extra != '[]'
- name: Remove rpcbind, nfs-common
become: yes
package:

View file

@ -1,3 +1,38 @@
---
playbook_version_number: 100
base_packages:
- tmux
- sudo
- htop
- iftop
- iotop
- sysstat
- ethtool
- ethstatus
- nethogs
- nload
- ncdu
- atop
- vim
- nmap
- python3
- wget
- git
- bash-completion
- unzip
- python3-pip
- asciinema
- ranger
- net-tools
- links
debian_packages:
- molly-guard
- mtr-tiny
- knot-dnsutils
fedora_packages:
- mtr
- libselinux-python
playbook_version_number: 101
playbook_version_path: '/etc/ansible-version/base-packages_ffbsee_github.version'