freenas-proxmox/tests/stubs/pvedaemon

8 lines
267 B
Bash
Executable File

#!/bin/bash
# Stub for the real /usr/bin/pvedaemon PVE::Daemon wrapper.
# Real binary supports: start, stop, restart, reload, status, help.
case "$1" in
start|stop|restart|reload|status) exit 0 ;;
*) echo "pvedaemon: unknown command '$1'" >&2; exit 1 ;;
esac