7 lines
99 B
Bash
7 lines
99 B
Bash
|
#!/bin/sh
|
||
|
if [ "$INIT_HALT" = HALT ]; then
|
||
|
exec /sbin/halt -dhn
|
||
|
else
|
||
|
exec /sbin/poweroff -dhn
|
||
|
fi
|