mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-04 00:08:09 -07:00
10 lines
189 B
Bash
10 lines
189 B
Bash
#!/bin/sh
|
|
|
|
PATH=/bin:/usr/bin
|
|
MSG="System is going down in 14 seconds..."
|
|
|
|
# echo 'disabled.' ; exit
|
|
touch /etc/runit/stopit
|
|
chmod 100 /etc/runit/stopit && echo "$MSG" | wall
|
|
/bin/sleep 14
|