From c05ac5d14afbe70b46bd59f278395533837d59c9 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 5 Mar 2023 16:39:13 +0100 Subject: rename Ubuntu scripts --- src/ubuntu/check-integrity.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 src/ubuntu/check-integrity.sh (limited to 'src/ubuntu/check-integrity.sh') diff --git a/src/ubuntu/check-integrity.sh b/src/ubuntu/check-integrity.sh new file mode 100755 index 0000000..39e01dd --- /dev/null +++ b/src/ubuntu/check-integrity.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +set -o errexit -o nounset -o pipefail +shopt -s inherit_errexit lastpipe + +if ! command -v debsums &> /dev/null; then + echo 'Where is debsums?' >&2 + exit 1 +fi + +debsums -ca -- cgit v1.2.3