Re: [ansible-project] how can i get around this error?

2021-12-30 Thread Luca 'remix_tj' Lorenzetto
Hello, check docs of this module. On top of the page there are some clarifications on steps you need to do: https://docs.ansible.com/ansible/latest/collections/ansible/windows/win_powershell_module.html On Thu, Dec 30, 2021 at 1:09 PM Kerem Kalayci wrote: > Hi Luca, > > > Thank you for your

Re: [ansible-project] how can i get around this error?

2021-12-30 Thread Kerem Kalayci
Hi Luca, Thank you for your interest and reply. When I tried in the order you sent, I got an error like below. I think I'm having a problem with the module version. What is your opinion? https://stackoverflow.com/questions/47159193/why-does-ansible-show-error-no-action-detected-in-task-error

Re: [ansible-project] how can i get around this error?

2021-12-30 Thread Luca 'remix_tj' Lorenzetto
Hello Kerem, you're using a bad indentation. win_powershell: has to be aligned with the n of name: (the previous row) and script as to be aligned with the n of win_powershell. So your playbook will result written this way: - gather_facts: False name: asdf hosts: localhost tasks: -

Re: [ansible-project] how can i get around this error?

2021-12-30 Thread Kerem Kalayci
*Thanks for reply, I am already using the link you sent, but the error persists.* - gather_facts: False name: asdf hosts: localhost tasks: - name: Run basic PowerShell script win_powershell: script: | C:\Users\emperior\Desktop\run_command.ps1 ERROR! 'win_powershell'

Re: [ansible-project] how can i get around this error?

2021-12-30 Thread dulhaver via Ansible Project
on first sight I would try to change the indentation of the task like: tasks: - name: Run basic PowerShell script win_powershell: | your script here not 100% sure about the postition-indentation of the script line though. That said ... it's always a good idea to look at the

Re: [ansible-project] how can i get around this error?

2021-12-30 Thread Stefan Hornburg (Racke)
On 30/12/2021 09:16, Kerem Kalayci wrote: Hi everyone, i'm newbie at ansible yml. I am trying to run a command like below. But I am getting an error as below. where am i doing wrong? - gather_facts: False   name: LINGO'da komut   hosts: xxx   remote_user: xxx   tasks:     - name: Run

[ansible-project] how can i get around this error?

2021-12-30 Thread Kerem Kalayci
Hi everyone, i'm newbie at ansible yml. I am trying to run a command like below. But I am getting an error as below. where am i doing wrong? - gather_facts: False name: LINGO'da komut hosts: xxx remote_user: xxx tasks: - name: Run basic PowerShell script win_powershell: