trying a different var, ansible doesn't seem to like hyphens

This commit is contained in:
Tim Flink 2015-02-02 06:27:44 +00:00
parent d77696b82d
commit 5d48d0b4e2
2 changed files with 4 additions and 4 deletions

View file

@ -20,7 +20,7 @@ virt_install_command: /usr/bin/virt-install -n {{ inventory_hostname }} -r {{ me
--network=bridge=br0,model=virtio --autostart --noautoconsole
sshd_config: ssh/sshd_config.qadevel
external-hostname: qadevel-stg.qa.fedoraproject.org
externalhostname: qadevel-stg.qa.fedoraproject.org
mariadb_host: db-qa01.qa.fedoraproject.org
mariadb_user: '{{ qadevel_stg_mariadb_user }}'

View file

@ -14,9 +14,9 @@ return array(
'diffusion.ssh-user' => '{{ phabricator_vcs_user }}',
'welcome.html' => '{{ lookup("file", "phabricator-welcome.html") }}',
'ui.header-color' => '{{ phabricator_header_color }}',
'metamta.default-address' => 'phab@{{ external-hostname }}',
'metamta.domain' => '{{ external-hostname }}',
'metamta.reply-handler-domain' => '{{ external-hostname }}',
'metamta.default-address' => 'phab@{{ externalhostname }}',
'metamta.domain' => '{{ externalhostname }}',
'metamta.reply-handler-domain' => '{{ externalhostname }}',
'metamta.mail-adapter' => '{{ 'PhabricatorMailImplementationPHPMailerLiteAdapter' if phabricator_mail_enabled else 'PhabricatorMailImplementationTestAdapter'}}',
'phabricator.uninstalled-applications' => array(
'PhabricatorApplicationPhame' => true,