1 2 3 4 5 6 7 8 9 10
#!/bin/sh arch=$(uname -m) case $arch in arc|metag|s390x) poweroff ;; *) /usr/bin/qmp |nc 10.0.2.2 4444 ;; esac