[ansible-project] Re: apt-key with HKP keyserver

2014-05-13 Thread Adrian Simmons
On Saturday, 1 March 2014 08:58:47 UTC, Michael Mahemoff wrote: > > http doesn't work stderr: gpg: no valid OpenPGP data found." > Did you ever resolve this Michael? Just hit the same OpenPGP error with MariaDB... -- You received this message because you are subscribed to the Google Groups

Re: [ansible-project] Problem with a debconf key=value when value has a space

2014-05-09 Thread Adrian Simmons
Spot on! Somehow I knew it was going to be a simple answer :/ Was also able to revert to single quotes on the value items in the list. Thanks Brian. -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop rece

[ansible-project] Problem with a debconf key=value when value has a space

2014-05-08 Thread Adrian Simmons
I've been trying the new debconf module with Postfix on ubuntu 14.04. Here's the problem section of the roles task file: - name: Postfix | Set debconf values debconf: name=postfix question={{ item.question }} value={{ item.value }} vtype={{ item.vtype }} with_items: - { question: 'postfi

Re: [ansible-project] Re: Different initial remote_user per host - how best to arrange inventory?

2014-03-25 Thread Adrian Simmons
sible fact specific to a vagrant box and then a conditional in the setup play based on that, so that I can have one setup play that deals with both types of box. > > > On Mon, Mar 24, 2014 at 6:25 AM, Adrian Simmons > > wrote: > >> Right now the only thing I can th

[ansible-project] Re: Different initial remote_user per host - how best to arrange inventory?

2014-03-24 Thread Adrian Simmons
> > Right now the only thing I can think of is to work outside of ansible, > setting up the root account with vagrant to match that on the non-vagrant > hosts, so I can have a single setup play. > Looks like that question was to long and rambling to get answers :P At least writing it all down so

[ansible-project] Different initial remote_user per host - how best to arrange inventory?

2014-03-20 Thread Adrian Simmons
Hi, My current 'hosts' inventory file has sections for a dev/stage/production workflow, and I don't imagine it will ever have more than one or two servers in each section. eg ``` [devel] 192.0.2.10 hostname=devel fqdn=devel.example.com [stage] 192.0.2.10 hostname=stage fqdn=stage.example.com