mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 19:05:20 -05:00
17 lines
184 B
Bash
Executable file
17 lines
184 B
Bash
Executable file
#!/bin/bash
|
|
|
|
prog=check.sh
|
|
|
|
die() {
|
|
echo "${prog}: $1" >&2
|
|
exit 1
|
|
}
|
|
|
|
if [ $(id -u) != 0 ]; then
|
|
die "Must run as root"
|
|
fi
|
|
|
|
./load-zfs.sh || die ""
|
|
./unload-zfs.sh || die ""
|
|
|
|
exit 0
|