1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_base.git synced 2024-08-16 14:29:50 +02:00
ansible_role_base/defaults/main.yml

57 lines
1.4 KiB
YAML
Raw Normal View History

---
2020-08-12 17:20:30 +02:00
# install these additional packages
base__extra_packages: []
2019-05-14 17:37:22 +02:00
# - foo
# - bar
2019-07-15 23:07:17 +02:00
2020-08-28 10:41:48 +02:00
# should we add additional package source?
2020-08-12 17:20:30 +02:00
base__add_ethz: "{{ add_ethz }}"
2020-08-28 10:41:48 +02:00
# add nonfree/firmware packages?
base__pkg_non_free_firmware: "{{ base_pkg_non_free_firmware }}"
base__pkg_contrib: "{{ base_pkg_contrib }}"
2020-08-12 17:20:30 +02:00
2020-08-28 10:41:48 +02:00
# optionaly print some OS vars
base__print_os_vars: "{{ print_os_vars }}"
2020-08-12 17:20:30 +02:00
2020-08-28 14:01:22 +02:00
# choose latest or present for package state
# set this to latest for updating all packages!
2020-08-28 13:32:16 +02:00
base__package_state: 'present'
2020-08-28 14:01:22 +02:00
# should we update all packages?
base__upgrade_packages_to_latest_version: "{{ upgrade_packages_to_latest_version }}"
2019-07-15 23:07:17 +02:00
# install keycain to have a awesome ssh agent
base__install_keychain: true
# install vim as awesome command line editor
base__install_vim: "{{ editor_is_vim }}"
# directlink to keychain becaus RHEL do not provide it...
_base__keychain_rpm: 'http://packages.psychotic.ninja/7/base/x86_64/RPMS//keychain-2.8.0-3.el7.psychotic.noarch.rpm'
2020-08-12 17:20:30 +02:00
# LEGACY VARS
# ++ WILL BE REMOVED SOON ++
2019-07-15 23:07:17 +02:00
# add eth zurich apt source
add_ethz: true
2020-08-12 17:20:30 +02:00
# do we want the latest package version or just upgrade manually?
2020-08-28 14:01:22 +02:00
upgrade_packages_to_latest_version: false
2020-08-12 17:20:30 +02:00
2019-07-15 23:07:17 +02:00
# we use vim!
editor_is_vim: true
2019-07-16 16:53:03 +02:00
# print os variables
print_os_vars: false
2019-07-15 23:07:17 +02:00
2019-07-20 22:38:49 +02:00
# do we want non-free firmware from eth zuerich?
base_pkg_non_free_firmware: false
2019-07-29 08:57:58 +02:00
# do we want contrib from eth zuerich?
base_pkg_contrib: false
2019-07-15 23:07:17 +02:00
# version management
submodules_versioncheck: false