Want
Power off host at the specified time using "shutdown"

OpenBSD
# shutdown -ph 1501161730

other BSDs
# shutdown -p 1501161730

Why? Will we sync?

----------------------------
man shutdown 8  in OpenBSD
-h      The system is halted at the specified time when shutdown execs halt(8).
-p      The -p flag is passed on to halt(8), causing machines which support 
automatic power down to do so after halting.


FreeBSD
# shutdown -ph 1501161730
shutdown: incompatible switches -h, -k, -p and -r
-h      The system is halted at the specified time.
-p      The system is halted and the power is turned off (hardware support 
required) at the specified time.


NetBSD 
-h       The system is halted at the specified time, using halt(8).
-p       The system is powered down at the specified time, using poweroff(8).  
If the powerdown fails, or the system does not support software powerdown, the 
system will simply halt instead.


DragonFly 
-h      The system is halted at the specified time.
-p      The system is halted and the power is turned off (hardware support 
required) at the specified time.

Reply via email to