From e7eb8439d1053ce31ea880bf3bdfdc44da41296c Mon Sep 17 00:00:00 2001 From: Mischa ter Smitten Date: Thu, 12 Jan 2017 16:06:30 +0100 Subject: [PATCH] More Frey specific variables (#92) --- .infra/group_vars/all/_frey.yml | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/.infra/group_vars/all/_frey.yml b/.infra/group_vars/all/_frey.yml index 81fd465..4553cfd 100644 --- a/.infra/group_vars/all/_frey.yml +++ b/.infra/group_vars/all/_frey.yml @@ -1,9 +1,26 @@ -# Frey specific overrides +# Frey specific overrides, DO NOT EDIT THIS FILE --- # apt role apt_manage_sources_list: true apt_src_enable: false -apt_install_state: present - -# Temporary fix for failing build: https://travis-ci.org/tus/tusd/jobs/190891590 +apt_update_cache_valid_time: 86400 apt_upgrade: false +apt_dpkg_configure: true +apt_install_state: present +apt_clean: true +apt_autoremove: true + +# 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] }}"