propellor/src/Propellor/Property/Reboot.hs

8 lines
129 B
Haskell
Raw Normal View History

2014-03-31 03:37:54 +00:00
module Propellor.Property.Reboot where
2014-03-31 03:55:59 +00:00
import Propellor
2014-03-30 06:26:23 +00:00
now :: Property
2014-03-30 06:12:48 +00:00
now = cmdProperty "reboot" []
2014-03-30 19:53:35 +00:00
`describe` "reboot now"