diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 04:42:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 04:42:34 +0000 |
commit | c5efd282371d5b199d2d96c13ea3334a42161dfb (patch) | |
tree | fb8f55cadae3b93ef210a1be5237a7834362e6d4 /debian/tests/shellcheck | |
parent | Adding upstream version 1.7. (diff) | |
download | dh-nss-c5efd282371d5b199d2d96c13ea3334a42161dfb.tar.xz dh-nss-c5efd282371d5b199d2d96c13ea3334a42161dfb.zip |
Adding debian version 1.7.debian/1.7debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-x | debian/tests/shellcheck | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/debian/tests/shellcheck b/debian/tests/shellcheck new file mode 100755 index 0000000..e85e422 --- /dev/null +++ b/debian/tests/shellcheck @@ -0,0 +1,36 @@ +#!/bin/sh + +set -eu + +. "$(dirname "$0")/shared-functions.sh" + +testname="$(basename "$0")" +pkgname="libnss-test-$testname" + +nss_lines=" +passwd last mynss +group before=files mynss +shadow after=files mynss [!SUCCESS=notfound] +gshadow first mynss [NOTFOUND=return] +hosts remove-only mynss +protocols after=db mynss skip-if-present=files +" + +echo "Set up and build test package..." +cd "$AUTOPKGTEST_TMP" +mkdir "$pkgname" +cd "$pkgname" +setup_pkg "$pkgname" "$testname" +build_pkg "$pkgname" "1" "$nss_lines" + +echo "Extract maintscripts..." +cd "$AUTOPKGTEST_TMP" +dpkg-deb -e "${pkgname}_1_all.deb" control + +echo "Check for errors and warnings..." +cd control/ +test -s postinst +test -s postrm +shellcheck postinst +shellcheck postrm +echo "OK" |