From d11ac7dda40b10424a765f4aaff7f54821244382 Mon Sep 17 00:00:00 2001 From: Darko Poljak Date: Thu, 11 Apr 2019 13:52:33 +0200 Subject: [PATCH] Rename debug-dump.sh to cdist-dump --- Makefile | 2 +- docs/changelog | 1 + docs/src/cdist-troubleshooting.rst | 4 ++-- scripts/{debug-dump.sh => cdist-dump} | 0 setup.py | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) rename scripts/{debug-dump.sh => cdist-dump} (100%) diff --git a/Makefile b/Makefile index 4ed97c7b..5f03997a 100644 --- a/Makefile +++ b/Makefile @@ -275,7 +275,7 @@ shellcheck-remote-gencodes: @find cdist/conf/type -type f -name gencode-remote -exec $(SHELLCHECKCMD) {} + | $(SHELLCHECK_SKIP) || exit 0 shellcheck-scripts: - @$(SHELLCHECKCMD) scripts/debug-dump.sh || exit 0 + @$(SHELLCHECKCMD) scripts/cdist-dump || exit 0 shellcheck-gencodes: shellcheck-local-gencodes shellcheck-remote-gencodes diff --git a/docs/changelog b/docs/changelog index 830d49e0..c06715b7 100644 --- a/docs/changelog +++ b/docs/changelog @@ -2,6 +2,7 @@ Changelog --------- next: + * Debugging: Rename debug-dump.sh to cdist-dump(Darko Poljak) * Type __link: Add messaging (Ander Punnar) * New types: __ufw and __ufw_rule (Mark Polyakov) diff --git a/docs/src/cdist-troubleshooting.rst b/docs/src/cdist-troubleshooting.rst index b76f3859..6b7fb4af 100644 --- a/docs/src/cdist-troubleshooting.rst +++ b/docs/src/cdist-troubleshooting.rst @@ -53,11 +53,11 @@ For more info see: .. code-block:: sh - debug-dump.sh -h + cdist-dump -h Or from cdist git cloned directory: .. code-block:: sh - ./scripts/debug-dump.sh -h + ./scripts/cdist-dump -h diff --git a/scripts/debug-dump.sh b/scripts/cdist-dump similarity index 100% rename from scripts/debug-dump.sh rename to scripts/cdist-dump diff --git a/setup.py b/setup.py index 767f5bf7..d76bbd4b 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ setup( name="cdist", packages=["cdist", "cdist.core", "cdist.exec", "cdist.util", ], package_data={'cdist': package_data}, - scripts=["scripts/cdist", "scripts/debug-dump.sh"], + scripts=["scripts/cdist", "scripts/cdist-dump"], version=cdist.version.VERSION, description="A Usable Configuration Management System", author="Nico Schottelius",