Sha256: 63f31ae95ac08ebd8b1537f8b65b271a00f418394ede729a98bb41b2d0067d77
Contents?: true
Size: 264 Bytes
Versions: 21
Compression:
Stored size: 264 Bytes
Contents
module LinuxAdmin class System def self.reboot! Common.run!(Common.cmd(:shutdown), :params => { "-r" => "now" }) end def self.shutdown! Common.run!(Common.cmd(:shutdown), :params => { "-h" => "0" }) end end end
Version data entries
21 entries across 21 versions & 1 rubygems