8 lines
173 B
Bash
Executable File
8 lines
173 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
install -Dm755 shinit "$1/usr/bin/shinit"
|
|
install -Dm755 poweroff "$1/usr/bin/poweroff"
|
|
|
|
ln -s shinit "$1/usr/bin/init"
|
|
ln -s poweroff "$1/usr/bin/reboot"
|