mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-02 14:32:10 +00:00
8 lines
110 B
Plaintext
8 lines
110 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
#compatibility script for openvmtools
|
||
|
|
if [ "$1" == "-r" ]; then
|
||
|
|
/sbin/reboot
|
||
|
|
else
|
||
|
|
/sbin/poweroff
|
||
|
|
fi
|