mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
18 lines
184 B
Bash
Executable File
18 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
|