mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
Jenkins test runs are failing with: ./test/jenkins/run_ct ./test/jenkins/crit.sh ./test/jenkins/crit.sh: 3: source: not found Switch to bash which has 'source'. Signed-off-by: Adrian Reber <areber@redhat.com>
8 lines
147 B
Bash
Executable file
8 lines
147 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
mount --make-rslave /
|
|
umount -l /proc
|
|
mount -t proc proc /proc/
|
|
mount -t binfmt_misc none /proc/sys/fs/binfmt_misc/
|
|
exec "$@"
|