Re: [ansible-project] Re: Problem creating postgresql user

2019-03-14 Thread Joshua J. Kugler
On Thursday, March 14, 2019 9:10:23 AM AKDT Joshua J. Kugler wrote: > On Wednesday, March 13, 2019 11:00:59 PM AKDT Kai Stian Olstad wrote: > > I can not confirm this behavior with Ansible 2.7.8 so if you are not > > running latest maybe try to upgrade. > > I am running

Re: [ansible-project] Re: Problem creating postgresql user

2019-03-14 Thread Joshua J. Kugler
's not working for me. j -- Joshua J. Kugler -- Fairbanks, AK Blogs: http://jjncj.com/blog/ (Family) -- http://joshuakugler.com (Geek) Philippians 2:9-11 -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe fro

Re: [ansible-project] Re: Problem creating postgresql user

2019-03-13 Thread Joshua J. Kugler
value I put in the > > password field, the md5 hash comes out as > > > > md5bbc5416c08a022eda40297f11f548594 > > > > That "bbc5416" is certainly not what I get when hashing my password, > > and > > like I said, I get that value regardless of what

Re: [ansible-project] Problem creating postgresql user

2019-03-13 Thread Joshua J. Kugler
umentation says. I've read it several times trying to figure out what is wrong. :) Please read my question again: *regardless* of what value I specify for my password, the hash ends up the same, and I cannot log in using the password I just created for that user. j -- Joshua J. Kugler - Fairba

[ansible-project] Problem creating postgresql user

2019-03-12 Thread Joshua J. Kugler
still ends up as "md5bbc5416" What am I doing wrong? How can I go about debugging this? Thanks! j -- Joshua J. Kugler - Fairbanks, Alaska - jos...@azariah.com Azariah Enterprises - Programming and Website Design PGP Key: http://pgp.mit.edu/ ID 0x73B13B6A -- You received this m

[ansible-project] Possible bug in mount module or docs

2016-04-08 Thread Joshua J. Kugler
ace' The documentation doesn't say that 'passno' should be a string (and since it is a number, one would not expect it to be a string). However, when I put 10 in quotes, like '10' the command runs to completion without throwing the error (that is, the lines get added to

[ansible-project] But in iptables module?

2016-03-18 Thread Joshua J. Kugler
ter -A INPUT -p tcp -m state -j ACCEPT --destination-port 6556 -m state --state NEW,RELATED,ESTABLISHED Notice how it puts an '-m state' before the '-j ACCEPT' and then it does the '-m state --state ..." properly later. Bug? Or something I'm missing? j --

Re: [ansible-project] 389 server stops after Ansible "hangs up"

2016-02-11 Thread Joshua J. Kugler
nd the 'daemon' might not have detached yet or detach > correctly which can stall/kill the process. > > ​- > Brian Coca​ Thanks for the suggestion. I had been using ansible's 'service' module and that wasn't working either. I resorted to comm

Re: [ansible-project] 389 server stops after Ansible "hangs up"

2016-02-10 Thread Joshua J. Kugler
iah Enterprises - Programming and Website Design > > jos...@azariah.com - Jabber: pedah...@gmail.com > > PGP Key: http://pgp.mit.edu/ ID 0x73B13B6A > > > > -- > > You received this message because you are subscribed to the Google Groups > > "Ansible Project&quo

[ansible-project] 389 server stops after Ansible "hangs up"

2016-02-10 Thread Joshua J. Kugler
e. Clearly a bug on the dirsrv side, but a really weird interaction with ansible and its ssh sessions. Ideas would be greatly appreciated! j -- Joshua J. Kugler - Fairbanks, Alaska Azariah Enterprises - Programming and Website Design jos...@azariah.com - Jabber: pedah...@gmail.com PGP Key:

[ansible-project] Does get_url prevent caching?

2016-02-02 Thread Joshua J. Kugler
7;s not turning off some default option in the underlying urllib (or whatever it uses under the hood)? j -- Joshua J. Kugler - Fairbanks, Alaska Azariah Enterprises - Programming and Website Design jos...@azariah.com - Jabber: pedah...@gmail.com PGP Key: http://pgp.mit.edu/ ID 0x73B13B6A -

[SOLVED] Re: [ansible-project] Ansible skipping the rest of the tasks after one conditional task

2015-10-28 Thread Joshua J. Kugler
in this case). The outer file then re-evaluates the 'st' var (which is the *same* var), sees the condition is no longer true, and skips the rest of the steps. That's actually kind of handy...the included file could short-circuit its own execution if it changed the value of the v

Re: [ansible-project] Ansible skipping the rest of the tasks after one conditional task

2015-10-28 Thread Joshua J. Kugler
xplicit condition on them you have an implicit > one > On Wed, Oct 28, 2015 at 12:45 PM, Joshua J. Kugler wrote: > > On Tuesday, October 27, 2015 20:51:41 Brian Coca wrote: > >> the when in the include is applied to each included task, if it also > >> relies on the

Re: [ansible-project] Ansible skipping the rest of the tasks after one conditional task

2015-10-28 Thread Joshua J. Kugler
ved the 'when' in the above gist, it properly processed the file. It *SEEMED* the 'when' in the gist was affecting the rest of the steps in the gist. j -- Joshua J. Kugler - Fairbanks, Alaska Azariah Enterprises - Programming and Website Design jos...@azariah.com - Jabb

Re: [ansible-project] Need help with Ansible /jenkins

2015-10-27 Thread Joshua J. Kugler
ed: '/var/config' > > > > ​Check the remote user has sufficient permissions.​ -- Joshua J. Kugler - Fairbanks, Alaska Azariah Enterprises - Programming and Website Design jos...@azariah.com - Jabber: pedah...@gmail.com PGP Key: http://pgp.mit.edu/ ID 0x73B13B6A -- You r

Re: [ansible-project] Looking up variables in another host's host_var file

2015-10-27 Thread Joshua J. Kugler
ditions. I've submitted document additions/corrections before that were accepted. j -- Joshua J. Kugler - Fairbanks, Alaska Azariah Enterprises - Programming and Website Design jos...@azariah.com - Jabber: pedah...@gmail.com PGP Key: http://pgp.mit.edu/ ID 0x73B13B6A -- You received this messag

[ansible-project] Ansible skipping the rest of the tasks after one conditional task

2015-10-27 Thread Joshua J. Kugler
I know I don't have to do the stat check before the get_url. I had named a file wrong, and get_url was failing, and I wasn't understanding the error message, thus the stat call. But it did bring up this odd behavior that I would still like to understand. j -- Joshua J. Kugler

Re: [ansible-project] Looking up variables in another host's host_var file

2015-10-26 Thread Joshua J. Kugler
nsible/playbooks_variables.html#magic-variables-and-how-to-access-information-about-other-hosts I had read that page, but when it came time to use that knowledge, it didn't click. Thanks again for your patience and instruction! j -- Joshua J. Kugler - Fairbanks, Alaska Azariah Enterprises - Programming

Re: [ansible-project] Looking up variables in another host's host_var file

2015-10-26 Thread Joshua J. Kugler
hat I was looking for. Either 1) something odd was going on where the echo was getting cut off due to shell rules or some such, or 2) (more likely) it wasn't actually loaded until I did this: -m shell -a "echo '{{ hostvars['192.168.122.12'] }}'" That will work grea

Re: [ansible-project] Looking up variables in another host's host_var file

2015-10-26 Thread Joshua J. Kugler
rs even when they aren't being contacted? is there a lookup I can do? Maybe a custom lookup plugin to get information about them even when they aren't in the current run? j -- Joshua J. Kugler - Fairbanks, Alaska Azariah Enterprises - Programming and Website Design jos...@azar