> But couldn't resolve . I am not sure that which part of the playbook which I need to modify inorder to make it run for admin user.
I've been doing a lot of become work the last day, I found it's designed to work on a task level in roles but does this work? - name: Replace the silent-install-server_ file to each Application Servers hosts: localhost,CCM,RM vars: jts_file: /etc/ansible/roles/IBM2/files/silent-install-server_JTS.xml ccm_file: /etc/ansible/roles/IBM2/files/silent-install-server_CCM.xml rm_file: /etc/ansible/roles/IBM2/files/silent-install-server_RM.xml dest_dir: /opt/CLM-Web-Installer-Linux-6.0.5/im/linux.gtk.x86_64 ansible_become: yes ansible_become_user: root ansible_become_pass: "{{rootpass}}" tasks: - name: check the folder existance stat: path=/opt/CLM-Web-Installer-Linux-6.0.5/im/linux.gtk.x86_64 register: folder_exist - name: JTS Server copy: src: "{{ jts_file }}" dest: "{{ dest_dir }}/" mode: 777 backup: yes delegate_to: localhost when: folder_exist.stat.exists == True On Fri, 22 Feb 2019 at 14:49, vivek vijayan <vivuu1...@gmail.com> wrote: > Hello kief, > > I already tried with different options of become as given in the link > But couldn't resolve . I am not sure that which part of the playbook > which I need to modify inorder to make it run for admin user. > > Where this playbook is working fine in another environmental where using > root user > > On Fri, 22 Feb 2019, 19:50 Keif Gwinn, <keif.gw...@3drepo.com> wrote: > >> it looks like it needs a password to escalate, have a look at >> https://docs.ansible.com/ansible/latest/user_guide/become.html#connection-variables >> to set an escalation password. >> >> On Fri, 22 Feb 2019 at 13:50, visar <vivuu1...@gmail.com> wrote: >> >>> Hello Sudeer.. No luck. >>> >>> >>> --- >>> >>> - name: Replace the silent-install-server_ file to each Application >>> Servers >>> hosts: localhost,CCM,RM >>> become: true >>> vars: >>> jts_file: /etc/ansible/roles/IBM2/files/silent-install-server_JTS.xml >>> ccm_file: /etc/ansible/roles/IBM2/files/silent-install-server_CCM.xml >>> rm_file: /etc/ansible/roles/IBM2/files/silent-install-server_RM.xml >>> dest_dir: /opt/CLM-Web-Installer-Linux-6.0.5/im/linux.gtk.x86_64 >>> tasks: >>> - name: check the folder existance >>> stat: path=/opt/CLM-Web-Installer-Linux-6.0.5/im/linux.gtk.x86_64 >>> register: folder_exist >>> >>> - name: JTS Server >>> copy: >>> src: "{{ jts_file }}" >>> dest: "{{ dest_dir }}/" >>> mode: 777 >>> backup: yes >>> delegate_to: localhost >>> when: folder_exist.stat.exists == True >>> >>> - name: CCM Server >>> copy: >>> src: "{{ ccm_file }}" >>> dest: "{{ dest_dir }}/" >>> mode: 777 >>> backup: yes >>> delegate_to: 10.16.24.102 >>> when: folder_exist.stat.exists == True >>> >>> - name: RM Server >>> copy: >>> src: "{{ rm_file }}" >>> dest: "{{ dest_dir }}/" >>> mode: 777 >>> backup: yes >>> delegate_to: 10.16.24.103 >>> when: folder_exist.stat.exists == True >>> >>> >>> >>> >>> >>> Output >>> ________ >>> PLAY [Replace the silent-install-server_ file to each Application >>> Servers] >>> ********************************************************************************** >>> >>> TASK [Gathering Facts] >>> ************************************************************************************************************************************** >>> fatal: [10.16.24.102]: FAILED! => {"changed": false, "module_stderr": >>> "Shared connection to 10.16.24.102 closed.\r\n", "module_stdout": "sudo: a >>> password is required\r\n", "msg": "MODULE FAILURE\nSee stdout/stderr for >>> the exact error", "rc": 1} >>> fatal: [10.16.24.103]: FAILED! => {"changed": false, "module_stderr": >>> "Shared connection to 10.16.24.103 closed.\r\n", "module_stdout": "sudo: a >>> password is required\r\n", "msg": "MODULE FAILURE\nSee stdout/stderr for >>> the exact error", "rc": 1} >>> ok: [localhost] >>> >>> TASK [check the folder existance] >>> *************************************************************************************************************************** >>> ok: [localhost] >>> >>> TASK [JTS Server] >>> ******************************************************************************************************************************************* >>> ok: [localhost -> localhost] >>> >>> TASK [CCM Server] >>> ******************************************************************************************************************************************* >>> fatal: [localhost]: FAILED! => {"msg": "Failed to get information on >>> remote file >>> (/opt/CLM-Web-Installer-Linux-6.0.5/im/linux.gtk.x86_64/silent-install-server_CCM.xml): >>> Shared connection to 10.16.24.102 closed.\r\n"} >>> to retry, use: --limit >>> @/etc/ansible/roles/IBM2/tasks/best/silentiInstallerfile1.retry >>> >>> PLAY RECAP >>> ************************************************************************************************************************************************** >>> 10.16.24.102 : ok=0 changed=0 unreachable=0 failed=1 >>> 10.16.24.103 : ok=0 changed=0 unreachable=0 failed=1 >>> localhost : ok=3 changed=0 unreachable=0 >>> failed=1 >>> >>> >>> >>> >>> On Friday, February 22, 2019 at 7:06:28 PM UTC+5:30, Sudheer S wrote: >>>> >>>> On 22/02/19 6:58 PM, visar wrote: >>>> > Hello Experts, >>>> > >>>> > I had a working playbook in my test environment, where my user was >>>> > root user itslef and didnt have any issue. >>>> > When i moved my playbook to staging environment , there my login user >>>> > account is "admin" which is sudo user. But all of my playbooks are >>>> > failing in this environment. >>>> Have this in your playbook: >>>> >>>> become: true >>>> >>>> - >>>> >>>> Sudheer S >>>> >>>> -- >>> 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...@googlegroups.com. >>> To post to this group, send email to ansible-project@googlegroups.com. >>> To view this discussion on the web visit >>> https://groups.google.com/d/msgid/ansible-project/b2c2673b-9961-4e53-b22a-7f72c4548e25%40googlegroups.com >>> <https://groups.google.com/d/msgid/ansible-project/b2c2673b-9961-4e53-b22a-7f72c4548e25%40googlegroups.com?utm_medium=email&utm_source=footer> >>> . >>> For more options, visit https://groups.google.com/d/optout. >>> >> -- >> 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...@googlegroups.com. >> To post to this group, send email to ansible-project@googlegroups.com. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/ansible-project/CAMTXzjVZ-RjCHCuhESU6gkJ%3DA0TBLS8X7pacpKB2fnMSzH5UxA%40mail.gmail.com >> <https://groups.google.com/d/msgid/ansible-project/CAMTXzjVZ-RjCHCuhESU6gkJ%3DA0TBLS8X7pacpKB2fnMSzH5UxA%40mail.gmail.com?utm_medium=email&utm_source=footer> >> . >> For more options, visit https://groups.google.com/d/optout. >> > -- > 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...@googlegroups.com. > To post to this group, send email to ansible-project@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/ansible-project/CAJztPtS7vuGq%2Bs9Y%2BY_iMm21ZYhMS2rmFj8pVt-abZW%2BZU6p6w%40mail.gmail.com > <https://groups.google.com/d/msgid/ansible-project/CAJztPtS7vuGq%2Bs9Y%2BY_iMm21ZYhMS2rmFj8pVt-abZW%2BZU6p6w%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- 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...@googlegroups.com. To post to this group, send email to ansible-project@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/CAMTXzjXeZ-3YyEKFUVDPGb3Sxw8K_cdXXL2gbO_pPjFKT2gXSw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.