From 3622bfdd962f1123d351c04d9c6a009da4e883a8 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Tue, 12 Sep 2023 21:57:58 -0400 Subject: try printing whole _service file --- scripts/ci-print-_service.sh | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 scripts/ci-print-_service.sh (limited to 'scripts/ci-print-_service.sh') diff --git a/scripts/ci-print-_service.sh b/scripts/ci-print-_service.sh new file mode 100755 index 0000000..fcc499c --- /dev/null +++ b/scripts/ci-print-_service.sh @@ -0,0 +1,32 @@ +#!/bin/sh +# Goal: print entirety of a useful OBS service file + +##################################### +# Load settings +# basically, dot-source the conf file. +test -z "${librewolf_dpkg_conf}" && export librewolf_dpkg_conf="$( find "$( dirname "${0}" )" -maxdepth 2 -name "prep-librewolf-dpkg.conf" -print 2>/dev/null | head -n1 )" +test ! -r "${librewolf_dpkg_conf}" && { echo "Unable to load config file, which should be named prep-librewolf-dpkg.conf. Aborted." 1>&2 ; exit 1 ; } +. "${librewolf_dpkg_conf}" + +cat < + + ${ARTIFACT_PROTOCOL} + ${ARTIFACT_HOSTNAME} + ${ARTIFACT_PATHDIR}/librewolf_${distro_firefox_version}.debian.tar.xz + librewolf_${distro_firefox_version}.debian.tar.xz + + + ${ARTIFACT_PROTOCOL} + ${ARTIFACT_HOSTNAME} + ${ARTIFACT_PATHDIR}/librewolf_${distro_firefox_version}.dsc + librewolf_${distro_firefox_version}.dsc + + + ${ARTIFACT_PROTOCOL} + ${ARTIFACT_HOSTNAME} + ${ARTIFACT_PATHDIR}/librewolf_${firefox_version}.orig.tar.xz + librewolf_${firefox_version}.orig.tar.xz + + +EOF -- cgit