Re: [ansible-devel] Re: 2.2 Roadmap is Posted for Feedback

2016-06-21 Thread Serge van Ginderachter
On 21 June 2016 at 08:26, Ton Kersten wrote: > I was wondering if it isn't time to define a standard of documenting > playbooks and roles? How about not only documenting, but also having some meta information available that defines input and output variables? (the

Re: [ansible-devel] Use "with_sublelements" with 3,4,5,... elements ?

2016-05-11 Thread Serge van Ginderachter
On 11 May 2016 at 11:21, Clément VALENTIN wrote: > Hi, > > I try to use function "with_subelements" to create a folder tree for MySQL > installation with multiple element in vars, but I can't do this ... > > Exemple : > > *vars.yml :* > > mysqld_instance: >> - name:

Re: [ansible-devel] Re: Use "with_sublelements" with 3,4,5,... elements ?

2016-05-12 Thread Serge van Ginderachter
On 12 May 2016 at 09:32, Clément VALENTIN wrote: > Good job, but I did not really want to change ansible sources :/ ​no need, just drop that plugin in lookup_plugins/ next to your playbooks​ -- You received this message because you are subscribed to the Google Groups

Re: [ansible-devel] Re: I can use some help with a pull request

2017-01-25 Thread Serge van Ginderachter
On 25 January 2017 at 12:53, Pieter Voet wrote: > $ > ​​ > git reset --hard upstream:devel > fatal: Invalid object name 'upstream'. > ​That should be a slash, not a colon: ​ git reset --hard upstream/devel ​ ​Serge​ -- You received this message because you are

[ansible-devel] Request for Comments on ideas for a new Ansible Inventory `2.0'

2017-01-17 Thread Serge van Ginderachter
is svg if you want to chat (I'm in #ansible-devel) and my hours are CET - Central Europe. Kind regards, Serge van Ginderachter -- You received this message because you are subscribed to the Google Groups "Ansible Development" group. To unsubscribe from this group and stop receiv

Re: [ansible-devel] module.exit_json with rc > 0

2017-03-28 Thread Serge van Ginderachter
On 27 March 2017 at 18:39, Peter Oliver wrote: > Is rc a bad name to return if I don't want this behaviour? > ​Yes :)​ That's basically how the module reports a failure. -- You received this message because you are subscribed to the Google Groups "Ansible

Re: [ansible-devel] Request for Comments on ideas for a new Ansible Inventory `2.0'

2017-05-15 Thread Serge van Ginderachter
Brian, all, I always intended to get back on this thread, but it seems I forgot about it. On 17 January 2017 at 17:24, Brian Coca wrote: > As for the variable merging and or scoping to targeted group​, I think it > is already too complex and that adding more on top is going

Re: [ansible-devel] Re: ansible 2.4 api and the all.yml file

2017-12-07 Thread Serge van Ginderachter
Have a look here: http://docs.ansible.com/ansible/latest/meta_module.html meta: refresh_inventory is what you need. On 8 December 2017 at 07:36, Paul Cuzner wrote: > > Some further testing > > If I switch the playbook to one that simple dumps all vars on a host, I >

Re: [ansible-devel] Help setting up a module development environment?

2017-12-25 Thread Serge van Ginderachter
On 25 December 2017 at 21:33, Stephen Nesbitt wrote: > NOOB alert! I'm struggling to setup a module development environment that > includes support for unit tests and which the module development > environment does not occur within the Ansible source tree directly.

Re: [ansible-devel] detachable ansible

2018-08-05 Thread Serge van Ginderachter
> > > > but, the extra steps would reduce ansibles simplicity. ansible is the last > tool where we want more moving parts to break. thought of a couple other > ways to get this detached effect. fair amount that can go wrong with > keys/certs in a remote tmux session. could also make an ephemeral

[ansible-devel] Examples of diverse large and inventories

2018-03-16 Thread Serge van Ginderachter
, managing group_vars files becomes very cumbersome, and impossible to keep a good overview. What are the problems you get, when doing inventory at a larger scale? Thanks! Serge -- Forwarded message -- From: Serge van Ginderachter <se...@vanginderachter.be> Date: 10 March 2018 at

Re: [ansible-devel] using groups_vars in INVENTORY

2018-12-24 Thread Serge van Ginderachter
a couple of things: 1/ your group is called win-mssql but the file is win-mssql_.ini (with an extra underscore) 2/ don't use .ini as an extension, those are supposed to be configuration to dynbamic scripts, and are not parsed by ansible directly 3/ group_vars files must be yaml, not ini On

Re: [ansible-devel] Inventori plugin and vault

2019-08-26 Thread Serge van Ginderachter
Fyi https://github.com/ansible/ansible/issues/57012 Serge van Ginderachter On Tue, 27 Aug 2019, 03:51 Josh R, wrote: > With inventory plugins, the only way I got it to work is to encode the > entire yaml file. It then gets decoded when —vault-Id is passed > > -- > You receiv