Ansible-Playbook: ntpstat
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 |
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 '18 at 18:41
add a comment |
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 '18 at 18:40
Matthew L Daniel
7,77112326
7,77112326
asked Nov 10 '18 at 15:18
daquezadadaquezada
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 '18 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 '18 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 '18 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 '18 at 18:41
add a comment |
1 Answer
1
active
oldest
votes
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 '18 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 '18 at 0:12
Surprisingly ansible raspbian -b -m shell -a "ntpstat" works fine.
– daquezada
Nov 12 '18 at 0:13
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
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 '18 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 '18 at 0:12
Surprisingly ansible raspbian -b -m shell -a "ntpstat" works fine.
– daquezada
Nov 12 '18 at 0:13
add a comment |
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 '18 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 '18 at 0:12
Surprisingly ansible raspbian -b -m shell -a "ntpstat" works fine.
– daquezada
Nov 12 '18 at 0:13
add a comment |
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 '18 at 22:52
WelshWelsh
3,55321733
3,55321733
I changed it to what you suggested and now I am getting this:
– daquezada
Nov 12 '18 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 '18 at 0:12
Surprisingly ansible raspbian -b -m shell -a "ntpstat" works fine.
– daquezada
Nov 12 '18 at 0:13
add a comment |
I changed it to what you suggested and now I am getting this:
– daquezada
Nov 12 '18 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 '18 at 0:12
Surprisingly ansible raspbian -b -m shell -a "ntpstat" works fine.
– daquezada
Nov 12 '18 at 0:13
I changed it to what you suggested and now I am getting this:
– daquezada
Nov 12 '18 at 0:11
I changed it to what you suggested and now I am getting this:
– daquezada
Nov 12 '18 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 '18 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 '18 at 0:12
Surprisingly ansible raspbian -b -m shell -a "ntpstat" works fine.
– daquezada
Nov 12 '18 at 0:13
Surprisingly ansible raspbian -b -m shell -a "ntpstat" works fine.
– daquezada
Nov 12 '18 at 0:13
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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 '18 at 18:41