mirror of
https://github.com/roles-ansible/ansible_role_base.git
synced 2024-08-16 14:29:50 +02:00
Change default options
This commit is contained in:
parent
56add31e8d
commit
02a7fa60df
3 changed files with 49 additions and 36 deletions
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue