propellor spin
This commit is contained in:
parent
2ad3334b26
commit
cdad4fbe15
|
@ -21,9 +21,9 @@ import qualified Propellor.Property.Docker.Shim as DockerShim
|
||||||
import Utility.FileMode
|
import Utility.FileMode
|
||||||
import Utility.SafeCommand
|
import Utility.SafeCommand
|
||||||
|
|
||||||
usage :: IO a
|
usage :: Handle -> IO a
|
||||||
usage = do
|
usage h = do
|
||||||
putStrLn $ unlines
|
hPutStrLn h $ unlines
|
||||||
[ "Usage:"
|
[ "Usage:"
|
||||||
, " propellor"
|
, " propellor"
|
||||||
, " propellor hostname"
|
, " propellor hostname"
|
||||||
|
@ -46,21 +46,21 @@ processCmdLine = go =<< getArgs
|
||||||
go ("--dump":f:c:[]) = withprivfield f c Dump
|
go ("--dump":f:c:[]) = withprivfield f c Dump
|
||||||
go ("--edit":f:c:[]) = withprivfield f c Edit
|
go ("--edit":f:c:[]) = withprivfield f c Edit
|
||||||
go ("--list-fields":[]) = return ListFields
|
go ("--list-fields":[]) = return ListFields
|
||||||
go ("--help":_) = usage
|
go ("--help":_) = usage stdout
|
||||||
go ("--update":h:[]) = return $ Update h
|
go ("--update":h:[]) = return $ Update h
|
||||||
go ("--boot":h:[]) = return $ Update h -- for back-compat
|
go ("--boot":h:[]) = return $ Update h -- for back-compat
|
||||||
go ("--continue":s:[]) = case readish s of
|
go ("--continue":s:[]) = case readish s of
|
||||||
Just cmdline -> return $ Continue cmdline
|
Just cmdline -> return $ Continue cmdline
|
||||||
Nothing -> errorMessage $ "--continue serialization failure (" ++ s ++ ")"
|
Nothing -> errorMessage $ "--continue serialization failure (" ++ s ++ ")"
|
||||||
go (h:[])
|
go (h:[])
|
||||||
| "--" `isPrefixOf` h = usage
|
| "--" `isPrefixOf` h = usage stderr
|
||||||
| otherwise = return $ Run h
|
| otherwise = return $ Run h
|
||||||
go [] = do
|
go [] = do
|
||||||
s <- takeWhile (/= '\n') <$> readProcess "hostname" ["-f"]
|
s <- takeWhile (/= '\n') <$> readProcess "hostname" ["-f"]
|
||||||
if null s
|
if null s
|
||||||
then errorMessage "Cannot determine hostname! Pass it on the command line."
|
then errorMessage "Cannot determine hostname! Pass it on the command line."
|
||||||
else return $ Run s
|
else return $ Run s
|
||||||
go _ = usage
|
go _ = usage stderr
|
||||||
|
|
||||||
withprivfield s c f = case readish s of
|
withprivfield s c f = case readish s of
|
||||||
Just pf -> return $ f pf (Context c)
|
Just pf -> return $ f pf (Context c)
|
||||||
|
|
Loading…
Reference in New Issue