[ansible-project] Ansible - configuring windows win_acl

2015-11-28 Thread J Hawkesworth
Can you share your playbook, it's hard to make suggestions without some context? -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to ansible-project+unsubscr...@g

[ansible-project] Re: Whitespace in Value for INI_FILE

2015-11-28 Thread Dan Vaida
Try this: - name: Create 'config.ini' to include necessary values ini_file: > dest=./testconfig.ini section="{{ item.section }}" option="{{ item.option }}" value="{{ item.value }}" with_items: - { section: 'General', option: 'test1', value: 'value2' } -

[ansible-project] Re: Failed to find required executable mysql

2015-11-28 Thread Dan Vaida
try to output the PATH var. looks like Ansible is using one that doesn't have mysql in it. On Wednesday, 20 May 2015 17:56:42 UTC+2, Albert Mikaelyan wrote: > > Hey guys, > > All I'm trying to do, is import a schema in case a database does not exist > yet > > ansible --version > ansible 1.9.1 >

[ansible-project] Ansible create an IAM user with a group and with administrator privilege

2015-11-28 Thread Adithya Khamithkar
Hi, Can someone please help me in creating an IAM user with a group and with administrator privilege Thanks, -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email

[ansible-project] Method for formatting long attribute values over multiple lines?

2015-11-28 Thread edrozenberg
I need help trying to stick to 80 columns :). In a number of my tasks, some attribute values get very long and I haven't found any means of breaking them up over several lines. A workaround is to put them into a vars file as a list/array. Is there any way to break up values across several lines

[ansible-project] Ansible hanging on the first npm update

2015-11-28 Thread anoop
Hi, the first time i run this ansible task in the playbook it hangs. I have to go and ssh into the server run npm install manually and after that it works smoothly. Any workaround to get this working? - name: install repo packages become: yes become_user: deploy npm: path={{ app_repo_path

[ansible-project] Re: Ansible create an IAM user with a group and with administrator privilege

2015-11-28 Thread Chun-Hung Huang
Hi Do you mean - you want to add a user which name is IAM ? - the user belong to a group ? ( which name is group name ) - with adminisrator privilege, sudo users? Adithya Khamithkar於 2015年11月28日星期六 UTC-6上午7時23分12秒寫道: > > Hi, > > Can someone please help me in creating an IAM user with a group

[ansible-project] Ansible gets stuck during first npm install

2015-11-28 Thread anoop
Hi, Ansible gets stuck during execution of this task - name: install repo packages become: yes become_user: deploy npm: path={{ app_repo_path }} state=present app_repo_path = /var/www/myApp I'm using ansible version 1.9.4. And deploying to rackspace servers. For the first time it hangs

[ansible-project] "No escaped character" in inventory file

2015-11-28 Thread Andrew Langhorn
Hello, I'm hooking up Ansible and a Vagrant VM running Ubuntu 14.04 LTS. To do this, I have the following inventory file: ? default \ ansible_ssh_host="127.0.0.1" \ ansible_ssh_port="2202" \ ansible_ssh_user="vagrant" \ ansible_ssh_private_key_file=".vagrant/machines/default/virtualbox/pri

Re: [ansible-project] "No escaped character" in inventory file

2015-11-28 Thread Brian Coca
I don't believe the hosts file supports \ line continuations, try this as your hosts file: default ansible_ssh_host="127.0.0.1" ansible_ssh_port="2202" ansible_ssh_user="vagrant" ansible_ssh_private_key_file=".vagrant/machines/default/virtualbox/private_key" -- Brian Coca -- You received th

Re: [ansible-project] Re: Ansible create an IAM user with a group and with administrator privilege

2015-11-28 Thread Adithya Khamithkar
Yes I want to add a user in IAM the user name will be a variable that I'll pass from my vars file. And I want that user to be added in that group called administrator. ~Adithya Khamithkar On Sun, Nov 29, 2015 at 12:07 AM, Chun-Hung Huang wrote: > Hi > > Do you mean > - you want to add a user wh