mirror of
https://github.com/token2/snapd.git
synced 2026-03-13 11:15:47 -07:00
19 lines
262 B
Bash
19 lines
262 B
Bash
#!/bin/sh
|
|
|
|
L=$(pwd)/../src/ubuntu-core-launcher
|
|
|
|
TMP="$(mktemp -d)"
|
|
trap "rm -rf $TMP" EXIT
|
|
|
|
export SNAPPY_LAUNCHER_SECCOMP_PROFILE_DIR="$TMP"
|
|
export SNAPPY_LAUNCHER_SKIP_APPRMOR="1"
|
|
|
|
FAIL() {
|
|
printf ": FAIL\n"
|
|
exit 1
|
|
}
|
|
|
|
PASS() {
|
|
printf ": PASS\n"
|
|
}
|