Rename debug-dump.sh to cdist-dump

This commit is contained in:
Darko Poljak 2019-04-11 13:52:33 +02:00
parent 540434557d
commit d11ac7dda4
5 changed files with 5 additions and 4 deletions

View File

@ -275,7 +275,7 @@ shellcheck-remote-gencodes:
@find cdist/conf/type -type f -name gencode-remote -exec $(SHELLCHECKCMD) {} + | $(SHELLCHECK_SKIP) || exit 0 @find cdist/conf/type -type f -name gencode-remote -exec $(SHELLCHECKCMD) {} + | $(SHELLCHECK_SKIP) || exit 0
shellcheck-scripts: shellcheck-scripts:
@$(SHELLCHECKCMD) scripts/debug-dump.sh || exit 0 @$(SHELLCHECKCMD) scripts/cdist-dump || exit 0
shellcheck-gencodes: shellcheck-local-gencodes shellcheck-remote-gencodes shellcheck-gencodes: shellcheck-local-gencodes shellcheck-remote-gencodes

View File

@ -2,6 +2,7 @@ Changelog
--------- ---------
next: next:
* Debugging: Rename debug-dump.sh to cdist-dump(Darko Poljak)
* Type __link: Add messaging (Ander Punnar) * Type __link: Add messaging (Ander Punnar)
* New types: __ufw and __ufw_rule (Mark Polyakov) * New types: __ufw and __ufw_rule (Mark Polyakov)

View File

@ -53,11 +53,11 @@ For more info see:
.. code-block:: sh .. code-block:: sh
debug-dump.sh -h cdist-dump -h
Or from cdist git cloned directory: Or from cdist git cloned directory:
.. code-block:: sh .. code-block:: sh
./scripts/debug-dump.sh -h ./scripts/cdist-dump -h

View File

@ -36,7 +36,7 @@ setup(
name="cdist", name="cdist",
packages=["cdist", "cdist.core", "cdist.exec", "cdist.util", ], packages=["cdist", "cdist.core", "cdist.exec", "cdist.util", ],
package_data={'cdist': package_data}, package_data={'cdist': package_data},
scripts=["scripts/cdist", "scripts/debug-dump.sh"], scripts=["scripts/cdist", "scripts/cdist-dump"],
version=cdist.version.VERSION, version=cdist.version.VERSION,
description="A Usable Configuration Management System", description="A Usable Configuration Management System",
author="Nico Schottelius", author="Nico Schottelius",