summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMatt Martz <matt@sivel.net>2023-04-12 15:03:03 -0500
committerGitHub <noreply@github.com>2023-04-12 15:03:03 -0500
commit0f1c165196de1245bcb4226667f7566c6abd2cf4 (patch)
treeb23c122b9b2f4fe1cdc58589e8a1dede433959a5 /lib
parent5d8fa14a7b5b40f05609b0999731634c8cd8b037 (diff)
downloadansible-0f1c165196de1245bcb4226667f7566c6abd2cf4.tar.gz
[stable-2.14] --syntax-check is only applicable to ansible-playbook. Fixes #80506 (#80507) (#80510)
(cherry picked from commit f3774ae)
Diffstat (limited to 'lib')
-rw-r--r--lib/ansible/cli/arguments/option_helpers.py2
-rwxr-xr-xlib/ansible/cli/playbook.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/ansible/cli/arguments/option_helpers.py b/lib/ansible/cli/arguments/option_helpers.py
index cb37d57c19..a3efb1e268 100644
--- a/lib/ansible/cli/arguments/option_helpers.py
+++ b/lib/ansible/cli/arguments/option_helpers.py
@@ -235,8 +235,6 @@ def add_check_options(parser):
"""Add options for commands which can run with diagnostic information of tasks"""
parser.add_argument("-C", "--check", default=False, dest='check', action='store_true',
help="don't make any changes; instead, try to predict some of the changes that may occur")
- parser.add_argument('--syntax-check', dest='syntax', action='store_true',
- help="perform a syntax check on the playbook, but do not execute it")
parser.add_argument("-D", "--diff", default=C.DIFF_ALWAYS, dest='diff', action='store_true',
help="when changing (small) files and templates, show the differences in those"
" files; works great with --check")
diff --git a/lib/ansible/cli/playbook.py b/lib/ansible/cli/playbook.py
index c94cf0ff77..9c091a675a 100755
--- a/lib/ansible/cli/playbook.py
+++ b/lib/ansible/cli/playbook.py
@@ -54,6 +54,8 @@ class PlaybookCLI(CLI):
opt_help.add_module_options(self.parser)
# ansible playbook specific opts
+ self.parser.add_argument('--syntax-check', dest='syntax', action='store_true',
+ help="perform a syntax check on the playbook, but do not execute it")
self.parser.add_argument('--list-tasks', dest='listtasks', action='store_true',
help="list all tasks that would be executed")
self.parser.add_argument('--list-tags', dest='listtags', action='store_true',