]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - test/TEST-07-ISSUE-1981/test-segfault.sh
test: move TEST-07-ISSUE-1981 setup to static files
[thirdparty/systemd.git] / test / TEST-07-ISSUE-1981 / test-segfault.sh
diff --git a/test/TEST-07-ISSUE-1981/test-segfault.sh b/test/TEST-07-ISSUE-1981/test-segfault.sh
deleted file mode 100755 (executable)
index fbb2d1d..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/usr/bin/env bash
-set -x
-set -e
-
->/failed
-
-cat <<'EOL' >/lib/systemd/system/my.service
-[Service]
-Type=oneshot
-ExecStart=/bin/echo Timer runs me
-EOL
-
-cat <<'EOL' >/lib/systemd/system/my.timer
-[Timer]
-OnBootSec=10s
-OnUnitInactiveSec=1h
-EOL
-
-systemctl unmask my.timer
-
-systemctl start my.timer
-
-mkdir -p /etc/systemd/system/my.timer.d/
-cat <<'EOL' >/etc/systemd/system/my.timer.d/override.conf
-[Timer]
-OnBootSec=10s
-OnUnitInactiveSec=1h
-EOL
-
-systemctl daemon-reload
-
-systemctl mask my.timer
-
-touch /testok
-rm /failed