36 lines
794 B
YAML
36 lines
794 B
YAML
# Frey specific overrides, DO NOT EDIT THIS FILE
|
|
---
|
|
# apt role
|
|
apt_manage_sources_list: true
|
|
apt_src_enable: false
|
|
apt_update_cache_valid_time: 86400
|
|
apt_upgrade: false
|
|
apt_dpkg_configure: true
|
|
apt_install_state: present
|
|
apt_clean: true
|
|
apt_autoremove: false
|
|
|
|
# ansistrano roles
|
|
ansistrano_shared_paths:
|
|
- logs
|
|
ansistrano_keep_releases: 10
|
|
ansistrano_npm: no
|
|
ansistrano_owner: www-data
|
|
ansistrano_group: www-data
|
|
ansistrano_allow_anonymous_stats: no
|
|
|
|
ansistrano_remove_rolled_back: no
|
|
|
|
# fqdn
|
|
fqdn: "{{ lookup('env', 'FREY_DOMAIN') }}"
|
|
hostname: "{{ fqdn.split('.')[0] }}"
|
|
|
|
# nodejs
|
|
nodejs_yarn: false
|
|
nodejs_install_npm_user: "{{ ansible_user | default(lookup('env', 'USER')) }}"
|
|
nodejs_npm_global_packages:
|
|
- name: yarn
|
|
|
|
# unattended-upgrades
|
|
unattended_remove_unused_dependencies: true
|