test(packer): add image for opensuse & some cleanup.
This commit is contained in:
parent
46165fe58f
commit
9731a09588
5 changed files with 112 additions and 13 deletions
|
|
@ -1,13 +1,19 @@
|
|||
#!/usr/bin/env bash
|
||||
set -eu
|
||||
|
||||
export BUILDDIR=/tmp/build/ PKGDEST=/tmp/pkg
|
||||
|
||||
# shellcheck source=/dev/null
|
||||
_lsb_release() { . /etc/os-release || exit 1; echo "$ID"; }
|
||||
_lsb_release() {
|
||||
. /etc/os-release || exit 1
|
||||
echo "$ID"
|
||||
}
|
||||
DISTRIBUTION="$(_lsb_release)"
|
||||
|
||||
cd "$HOME/Projects/apparmor.d"
|
||||
case "$DISTRIBUTION" in
|
||||
arch) make pkg ;;
|
||||
debian | ubuntu | whonix) make dpkg ;;
|
||||
opensuse*) make rpm ;;
|
||||
arch) make pkg ;;
|
||||
debian | ubuntu | whonix) make dpkg ;;
|
||||
opensuse*) make rpm ;;
|
||||
*) ;;
|
||||
esac
|
||||
esac
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue