mirror of
https://github.com/roles-ansible/ansible_role_base.git
synced 2024-08-16 14:29:50 +02:00
43 lines
883 B
YAML
43 lines
883 B
YAML
---
|
|
# install these additional packages
|
|
base__extra_packages: []
|
|
# - foo
|
|
# - bar
|
|
|
|
# should we add additional package source?
|
|
base__add_ethz: "{{ add_ethz }}"
|
|
# add nonfree/firmware packages?
|
|
base__pkg_non_free_firmware: "{{ base_pkg_non_free_firmware }}"
|
|
base__pkg_contrib: "{{ base_pkg_contrib }}"
|
|
|
|
# optionaly print some OS vars
|
|
base__print_os_vars: "{{ print_os_vars }}"
|
|
|
|
base__package_state: 'present'
|
|
|
|
|
|
|
|
# LEGACY VARS
|
|
# ++ WILL BE REMOVED SOON ++
|
|
# add eth zurich apt source
|
|
add_ethz: true
|
|
|
|
|
|
# do we want the latest package version or just upgrade manually?
|
|
upgrade_packages_to_latest_version: true
|
|
|
|
|
|
# we use vim!
|
|
editor_is_vim: true
|
|
|
|
# print os variables
|
|
print_os_vars: false
|
|
|
|
# do we want non-free firmware from eth zuerich?
|
|
base_pkg_non_free_firmware: false
|
|
|
|
# do we want contrib from eth zuerich?
|
|
base_pkg_contrib: false
|
|
|
|
# version management
|
|
submodules_versioncheck: true
|