Ansible-Playbook: ntpstat
up vote
0
down vote
favorite
I am trying to run this play book:
pi@rpi02:/etc/ansible/playbooks $ cat ntp.yml
---
- hosts: raspbian
become: yes
vars:
ntp_server1: time.google.com
tasks:
- name: Ensure NTP (for time synclronization) is install
apt: name=ntpdate state=latest update_cache=yes
- name: Ensure ntpstat (to report the synchronisation state of the NTP daemon)
apt: name=ntpstat state=latest update_cache=yes
- name: Start service ntpdate, if not started
systemd:
name: ntp
state: restarted
enabled: yes
- name: report the synchronisation state of the NTP daemon
shell:
name: ntpstat
# ...
Every things runs fine, except the last part. I get this error:
TASK [report the synchronisation state of the NTP daemon]
******************************************************************************************************************************************************** fatal: [rpi02.daquezada.net]: FAILED! => "changed": false, "msg":
"Unsupported parameters for (command) module: name Supported
parameters include: _raw_params, _uses_shell, argv, chdir, creates,
executable, removes, stdin, warn" fatal: [rpi04.daquezada.net]:
FAILED! => "changed": false, "msg": "Unsupported parameters for
(command) module: name Supported parameters include: _raw_params,
_uses_shell, argv, chdir, creates, executable, removes, stdin, warn" fatal: [rpi03.daquezada.net]: FAILED! => "changed": false, "msg":
"Unsupported parameters for (command) module: name Supported
parameters include: _raw_params, _uses_shell, argv, chdir, creates,
executable, removes, stdin, warn" fatal: [rpi01.daquezada.net]:
FAILED! => "changed": false, "msg": "Unsupported parameters for
(command) module: name Supported parameters include: _raw_params,
_uses_shell, argv, chdir, creates, executable, removes, stdin, warn" [WARNING]: Could not create retry file
'/etc/ansible/playbooks/ntp.retry'. [Errno 13] Permission
denied: u'/etc/ansible/playbooks/ntp.retry'
Please advise.
Thanks
ansible ansible-2.x
add a comment |
up vote
0
down vote
favorite
I am trying to run this play book:
pi@rpi02:/etc/ansible/playbooks $ cat ntp.yml
---
- hosts: raspbian
become: yes
vars:
ntp_server1: time.google.com
tasks:
- name: Ensure NTP (for time synclronization) is install
apt: name=ntpdate state=latest update_cache=yes
- name: Ensure ntpstat (to report the synchronisation state of the NTP daemon)
apt: name=ntpstat state=latest update_cache=yes
- name: Start service ntpdate, if not started
systemd:
name: ntp
state: restarted
enabled: yes
- name: report the synchronisation state of the NTP daemon
shell:
name: ntpstat
# ...
Every things runs fine, except the last part. I get this error:
TASK [report the synchronisation state of the NTP daemon]
******************************************************************************************************************************************************** fatal: [rpi02.daquezada.net]: FAILED! => "changed": false, "msg":
"Unsupported parameters for (command) module: name Supported
parameters include: _raw_params, _uses_shell, argv, chdir, creates,
executable, removes, stdin, warn" fatal: [rpi04.daquezada.net]:
FAILED! => "changed": false, "msg": "Unsupported parameters for
(command) module: name Supported parameters include: _raw_params,
_uses_shell, argv, chdir, creates, executable, removes, stdin, warn" fatal: [rpi03.daquezada.net]: FAILED! => "changed": false, "msg":
"Unsupported parameters for (command) module: name Supported
parameters include: _raw_params, _uses_shell, argv, chdir, creates,
executable, removes, stdin, warn" fatal: [rpi01.daquezada.net]:
FAILED! => "changed": false, "msg": "Unsupported parameters for
(command) module: name Supported parameters include: _raw_params,
_uses_shell, argv, chdir, creates, executable, removes, stdin, warn" [WARNING]: Could not create retry file
'/etc/ansible/playbooks/ntp.retry'. [Errno 13] Permission
denied: u'/etc/ansible/playbooks/ntp.retry'
Please advise.
Thanks
ansible ansible-2.x
What is wrong with the very clearly stated error message?Unsupported parameters for (command) module: name
means you cannot useshell: name: ntpstat
like that, as the fine manual will tell you
– Matthew L Daniel
Nov 10 at 18:41
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am trying to run this play book:
pi@rpi02:/etc/ansible/playbooks $ cat ntp.yml
---
- hosts: raspbian
become: yes
vars:
ntp_server1: time.google.com
tasks:
- name: Ensure NTP (for time synclronization) is install
apt: name=ntpdate state=latest update_cache=yes
- name: Ensure ntpstat (to report the synchronisation state of the NTP daemon)
apt: name=ntpstat state=latest update_cache=yes
- name: Start service ntpdate, if not started
systemd:
name: ntp
state: restarted
enabled: yes
- name: report the synchronisation state of the NTP daemon
shell:
name: ntpstat
# ...
Every things runs fine, except the last part. I get this error:
TASK [report the synchronisation state of the NTP daemon]
******************************************************************************************************************************************************** fatal: [rpi02.daquezada.net]: FAILED! => "changed": false, "msg":
"Unsupported parameters for (command) module: name Supported
parameters include: _raw_params, _uses_shell, argv, chdir, creates,
executable, removes, stdin, warn" fatal: [rpi04.daquezada.net]:
FAILED! => "changed": false, "msg": "Unsupported parameters for
(command) module: name Supported parameters include: _raw_params,
_uses_shell, argv, chdir, creates, executable, removes, stdin, warn" fatal: [rpi03.daquezada.net]: FAILED! => "changed": false, "msg":
"Unsupported parameters for (command) module: name Supported
parameters include: _raw_params, _uses_shell, argv, chdir, creates,
executable, removes, stdin, warn" fatal: [rpi01.daquezada.net]:
FAILED! => "changed": false, "msg": "Unsupported parameters for
(command) module: name Supported parameters include: _raw_params,
_uses_shell, argv, chdir, creates, executable, removes, stdin, warn" [WARNING]: Could not create retry file
'/etc/ansible/playbooks/ntp.retry'. [Errno 13] Permission
denied: u'/etc/ansible/playbooks/ntp.retry'
Please advise.
Thanks
ansible ansible-2.x
I am trying to run this play book:
pi@rpi02:/etc/ansible/playbooks $ cat ntp.yml
---
- hosts: raspbian
become: yes
vars:
ntp_server1: time.google.com
tasks:
- name: Ensure NTP (for time synclronization) is install
apt: name=ntpdate state=latest update_cache=yes
- name: Ensure ntpstat (to report the synchronisation state of the NTP daemon)
apt: name=ntpstat state=latest update_cache=yes
- name: Start service ntpdate, if not started
systemd:
name: ntp
state: restarted
enabled: yes
- name: report the synchronisation state of the NTP daemon
shell:
name: ntpstat
# ...
Every things runs fine, except the last part. I get this error:
TASK [report the synchronisation state of the NTP daemon]
******************************************************************************************************************************************************** fatal: [rpi02.daquezada.net]: FAILED! => "changed": false, "msg":
"Unsupported parameters for (command) module: name Supported
parameters include: _raw_params, _uses_shell, argv, chdir, creates,
executable, removes, stdin, warn" fatal: [rpi04.daquezada.net]:
FAILED! => "changed": false, "msg": "Unsupported parameters for
(command) module: name Supported parameters include: _raw_params,
_uses_shell, argv, chdir, creates, executable, removes, stdin, warn" fatal: [rpi03.daquezada.net]: FAILED! => "changed": false, "msg":
"Unsupported parameters for (command) module: name Supported
parameters include: _raw_params, _uses_shell, argv, chdir, creates,
executable, removes, stdin, warn" fatal: [rpi01.daquezada.net]:
FAILED! => "changed": false, "msg": "Unsupported parameters for
(command) module: name Supported parameters include: _raw_params,
_uses_shell, argv, chdir, creates, executable, removes, stdin, warn" [WARNING]: Could not create retry file
'/etc/ansible/playbooks/ntp.retry'. [Errno 13] Permission
denied: u'/etc/ansible/playbooks/ntp.retry'
Please advise.
Thanks
ansible ansible-2.x
ansible ansible-2.x
edited Nov 10 at 18:40
Matthew L Daniel
6,41511826
6,41511826
asked Nov 10 at 15:18
daquezada
55
55
What is wrong with the very clearly stated error message?Unsupported parameters for (command) module: name
means you cannot useshell: name: ntpstat
like that, as the fine manual will tell you
– Matthew L Daniel
Nov 10 at 18:41
add a comment |
What is wrong with the very clearly stated error message?Unsupported parameters for (command) module: name
means you cannot useshell: name: ntpstat
like that, as the fine manual will tell you
– Matthew L Daniel
Nov 10 at 18:41
What is wrong with the very clearly stated error message?
Unsupported parameters for (command) module: name
means you cannot use shell: name: ntpstat
like that, as the fine manual will tell you– Matthew L Daniel
Nov 10 at 18:41
What is wrong with the very clearly stated error message?
Unsupported parameters for (command) module: name
means you cannot use shell: name: ntpstat
like that, as the fine manual will tell you– Matthew L Daniel
Nov 10 at 18:41
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
You are using the shell module incorrectly as stated by the output:
Unsupported parameters for (command) module: name Supported parameters include: _raw_params, _uses_shell, argv, chdir, creates, executable, removes, stdin, warn
Your task looks like this:
- name: report the synchronisation state of the NTP daemon
shell:
name: ntpstat
Should look like this:
- name: report the synchronisation state of the NTP daemon
shell: ntpstat
I changed it to what you suggested and now I am getting this:
– daquezada
Nov 12 at 0:11
fatal: [rpi02.daquezada.net]: FAILED! => "changed": true, "cmd": "ntpstat", "delta": "0:00:00.007701", "end": "2018-11-11 19:04:04.371892", "msg": "non-zero return code", "rc": 1, "start": "2018-11-11 19:04:04.364191", "stderr": "", "stderr_lines": , "stdout": "unsynchronisedn polling server every 8 s", "stdout_lines": ["unsynchronised", " polling server every 8 s"]
– daquezada
Nov 12 at 0:12
Surprisingly ansible raspbian -b -m shell -a "ntpstat" works fine.
– daquezada
Nov 12 at 0:13
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
You are using the shell module incorrectly as stated by the output:
Unsupported parameters for (command) module: name Supported parameters include: _raw_params, _uses_shell, argv, chdir, creates, executable, removes, stdin, warn
Your task looks like this:
- name: report the synchronisation state of the NTP daemon
shell:
name: ntpstat
Should look like this:
- name: report the synchronisation state of the NTP daemon
shell: ntpstat
I changed it to what you suggested and now I am getting this:
– daquezada
Nov 12 at 0:11
fatal: [rpi02.daquezada.net]: FAILED! => "changed": true, "cmd": "ntpstat", "delta": "0:00:00.007701", "end": "2018-11-11 19:04:04.371892", "msg": "non-zero return code", "rc": 1, "start": "2018-11-11 19:04:04.364191", "stderr": "", "stderr_lines": , "stdout": "unsynchronisedn polling server every 8 s", "stdout_lines": ["unsynchronised", " polling server every 8 s"]
– daquezada
Nov 12 at 0:12
Surprisingly ansible raspbian -b -m shell -a "ntpstat" works fine.
– daquezada
Nov 12 at 0:13
add a comment |
up vote
1
down vote
You are using the shell module incorrectly as stated by the output:
Unsupported parameters for (command) module: name Supported parameters include: _raw_params, _uses_shell, argv, chdir, creates, executable, removes, stdin, warn
Your task looks like this:
- name: report the synchronisation state of the NTP daemon
shell:
name: ntpstat
Should look like this:
- name: report the synchronisation state of the NTP daemon
shell: ntpstat
I changed it to what you suggested and now I am getting this:
– daquezada
Nov 12 at 0:11
fatal: [rpi02.daquezada.net]: FAILED! => "changed": true, "cmd": "ntpstat", "delta": "0:00:00.007701", "end": "2018-11-11 19:04:04.371892", "msg": "non-zero return code", "rc": 1, "start": "2018-11-11 19:04:04.364191", "stderr": "", "stderr_lines": , "stdout": "unsynchronisedn polling server every 8 s", "stdout_lines": ["unsynchronised", " polling server every 8 s"]
– daquezada
Nov 12 at 0:12
Surprisingly ansible raspbian -b -m shell -a "ntpstat" works fine.
– daquezada
Nov 12 at 0:13
add a comment |
up vote
1
down vote
up vote
1
down vote
You are using the shell module incorrectly as stated by the output:
Unsupported parameters for (command) module: name Supported parameters include: _raw_params, _uses_shell, argv, chdir, creates, executable, removes, stdin, warn
Your task looks like this:
- name: report the synchronisation state of the NTP daemon
shell:
name: ntpstat
Should look like this:
- name: report the synchronisation state of the NTP daemon
shell: ntpstat
You are using the shell module incorrectly as stated by the output:
Unsupported parameters for (command) module: name Supported parameters include: _raw_params, _uses_shell, argv, chdir, creates, executable, removes, stdin, warn
Your task looks like this:
- name: report the synchronisation state of the NTP daemon
shell:
name: ntpstat
Should look like this:
- name: report the synchronisation state of the NTP daemon
shell: ntpstat
answered Nov 10 at 22:52
Welsh
3,51321730
3,51321730
I changed it to what you suggested and now I am getting this:
– daquezada
Nov 12 at 0:11
fatal: [rpi02.daquezada.net]: FAILED! => "changed": true, "cmd": "ntpstat", "delta": "0:00:00.007701", "end": "2018-11-11 19:04:04.371892", "msg": "non-zero return code", "rc": 1, "start": "2018-11-11 19:04:04.364191", "stderr": "", "stderr_lines": , "stdout": "unsynchronisedn polling server every 8 s", "stdout_lines": ["unsynchronised", " polling server every 8 s"]
– daquezada
Nov 12 at 0:12
Surprisingly ansible raspbian -b -m shell -a "ntpstat" works fine.
– daquezada
Nov 12 at 0:13
add a comment |
I changed it to what you suggested and now I am getting this:
– daquezada
Nov 12 at 0:11
fatal: [rpi02.daquezada.net]: FAILED! => "changed": true, "cmd": "ntpstat", "delta": "0:00:00.007701", "end": "2018-11-11 19:04:04.371892", "msg": "non-zero return code", "rc": 1, "start": "2018-11-11 19:04:04.364191", "stderr": "", "stderr_lines": , "stdout": "unsynchronisedn polling server every 8 s", "stdout_lines": ["unsynchronised", " polling server every 8 s"]
– daquezada
Nov 12 at 0:12
Surprisingly ansible raspbian -b -m shell -a "ntpstat" works fine.
– daquezada
Nov 12 at 0:13
I changed it to what you suggested and now I am getting this:
– daquezada
Nov 12 at 0:11
I changed it to what you suggested and now I am getting this:
– daquezada
Nov 12 at 0:11
fatal: [rpi02.daquezada.net]: FAILED! => "changed": true, "cmd": "ntpstat", "delta": "0:00:00.007701", "end": "2018-11-11 19:04:04.371892", "msg": "non-zero return code", "rc": 1, "start": "2018-11-11 19:04:04.364191", "stderr": "", "stderr_lines": , "stdout": "unsynchronisedn polling server every 8 s", "stdout_lines": ["unsynchronised", " polling server every 8 s"]
– daquezada
Nov 12 at 0:12
fatal: [rpi02.daquezada.net]: FAILED! => "changed": true, "cmd": "ntpstat", "delta": "0:00:00.007701", "end": "2018-11-11 19:04:04.371892", "msg": "non-zero return code", "rc": 1, "start": "2018-11-11 19:04:04.364191", "stderr": "", "stderr_lines": , "stdout": "unsynchronisedn polling server every 8 s", "stdout_lines": ["unsynchronised", " polling server every 8 s"]
– daquezada
Nov 12 at 0:12
Surprisingly ansible raspbian -b -m shell -a "ntpstat" works fine.
– daquezada
Nov 12 at 0:13
Surprisingly ansible raspbian -b -m shell -a "ntpstat" works fine.
– daquezada
Nov 12 at 0:13
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53240340%2fansible-playbook-ntpstat%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What is wrong with the very clearly stated error message?
Unsupported parameters for (command) module: name
means you cannot useshell: name: ntpstat
like that, as the fine manual will tell you– Matthew L Daniel
Nov 10 at 18:41