[ansible-project] OTRS Plugin in Ansible

2018-01-09 Thread SUMIT SAHAY
Hi All, Do we have any plugin for otrs in ansible, I want to automate the process of Change Management approval process in otrs. Looking for plugin that will trigger the otrs for these approval process. Looking forward for your reply. Thanks & Regards Sumit Sahay -- You received this

[ansible-project] How to make EC2 instance join an ECS Cluster through Ansible Playbook?

2018-01-09 Thread jacob . oommen
I need to create an EC2 Instance and launch it to an existing ECS cluster. I know the same can be done manually through AWS console by executing following shell command on EC2 launch : #!/bin/bash echo ECS_CLUSTER=your_cluster_name >> /etc/ecs/ecs.config How can i achieve the same

Re: [ansible-project] How to iterate a list of dictionaries where the dictionary names are contained in a list in Ansible ?

2018-01-09 Thread Kai Stian Olstad
On 09.01.2018 22:47, Amishi Shah wrote: In the code I want to iterate over all the dictionaries listed in list_of_dict. So that whenever a new dictionary is added in the variable file, the code handles it dynamically and there is no need to change the with_dict list. I tried to look into

[ansible-project] Re: local Inventory

2018-01-09 Thread Christer Hemgren
Hi We add the inventory file in the git project. and then in inventory -> my-inventory -> sources -> "sourced from projects" -> the Inventory file. example Inventory [ASA] 192.168.96.1 ansible_network_os=asa [Switch] 192.168.98.5 ansible_network_os=ios Christer Den måndag 25 december 2017

[ansible-project] How to iterate a list of dictionaries where the dictionary names are contained in a list in Ansible ?

2018-01-09 Thread Amishi Shah
Hi team, Below is the scenario and snippet of the files. ~/ansible/group_vars/all/main.yml --- list_of_dict: - dict1_test - dict2_test dict1_test: var1: test1 var2: test2 dict2_test: var3: test3 var4: test4 In the code I want to iterate over all the

[ansible-project] Re: callback plugin log_plays double output in logs

2018-01-09 Thread ansiblekrazy
So I defined it under /usr/share/ansible/plugins/callback ansible one. Tested on ansible 2.4.2.0, same result: Jan 10 2018 02:25:17 - OK - omitted Jan 10 2018 02:25:17 - OK - omitted Jan 10 2018 02:25:17 - OK - {"msg": "hello", "changed": false, "_ansible_verbose_always": true,

[ansible-project] Re: Kerberos authentication failed (while following instructions.)

2018-01-09 Thread Jordan Borean
Good that you were able to get it working, I don't know of any incompatibilities with Ubuntu 14.04 that could cause this but I think the issue is that requests_kerberos is failing to import a dependency which is being swallowed. If you wanted to try again you could run python manually and run

Re: [ansible-project] Re: apt module is reinstalling the same .deb file on every single run of a playbook

2018-01-09 Thread Kai Stian Olstad
On Tuesday, 9 January 2018 19.33.29 CET David Reagan wrote: > Changing to force: no and update_cache: no did not make a difference. > force: yes and update_cache: no also did not make a difference. > > It seems to me that, maybe, the apt module isn't able to see the version of > the .deb file

[ansible-project] Re: apt module is reinstalling the same .deb file on every single run of a playbook

2018-01-09 Thread David Reagan
Changing to force: no and update_cache: no did not make a difference. force: yes and update_cache: no also did not make a difference. It seems to me that, maybe, the apt module isn't able to see the version of the .deb file is the same as the installed version. How does the apt module check

[ansible-project] Re: Kerberos authentication failed (while following instructions.)

2018-01-09 Thread Jeremie Levy
Hi I've reinstall it on Ubuntu 16.04 and the install was much more straight forward. And it works now! Are you aware of any issue with ubuntu 14.04 or it may be my company build? Thank you! On Sunday, January 7, 2018 at 4:18:59 PM UTC+2, Jeremie Levy wrote: > > I'm trying to connect to my first

[ansible-project] Can't Access to Welcome Page of Ansible TOWER

2018-01-09 Thread BERTRAND PINGDWENDE PAHIMA
Hi everyone, After installed Ansible Tower, with postgresql database on external server, i Can't Access to Welcome Page with the "https://ansible_IPadresse. please somebody can help me understand and resolve this problem? the installation went well. Thank you -- You received this message

[ansible-project] Re: apt module is reinstalling the same .deb file on every single run of a playbook

2018-01-09 Thread Martyn Kempster
Have you tries setting update_cache to no? Its set to null in your output which should mean it doesn't do it -- 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] Re: apt module is reinstalling the same .deb file on every single run of a playbook

2018-01-09 Thread Martyn Kempster
Apologies, didnt see you already tried force: no! On Monday, January 8, 2018 at 10:20:09 PM UTC, David Reagan wrote: > > Every single time I run a task that installs a .deb file, the apt module > reinstalls the file. Even when the file has not changed since the last run. > > Specifically, on the

[ansible-project] Re: apt module is reinstalling the same .deb file on every single run of a playbook

2018-01-09 Thread Martyn Kempster
I would assume having force set to yes would cause it to install it each time regardless? Ansible docs: "If yes, force installs/removes." On Monday, January 8, 2018 at 10:20:09 PM UTC, David Reagan wrote: > > Every single time I run a task that installs a .deb file, the apt module > reinstalls

[ansible-project] [AWS, EC2, EBS] resize ebs volume?

2018-01-09 Thread Reiner Nippes
Hi, I wonder if this is a missing feature or a bug. We create ebs volumes via ec2_vol: task and "{{ discs }}" dictionary. e.g. - discs: /dev/xvdb: volume_size: "360" delete_on_termination: "true" volume_type: gp2 /dev/xvdc: volume_size: "300" delete_on_termination: