module Propellor.Property.Chroot.Util where
import Propellor.Property.Mount
import Utility.Env
import Utility.Directory
import Control.Applicative
import Prelude
standardPathEnv :: IO [(String, String)]
standardPathEnv :: IO [(String, String)]
standardPathEnv = do
path <- String -> String -> IO String
getEnvDefault String
"PATH" String
"/bin"
addEntry "PATH" (path ++ stdPATH)
<$> getEnvironment
stdPATH :: String
stdPATH :: String
stdPATH = String
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
removeChroot :: FilePath -> IO ()
removeChroot :: String -> IO ()
removeChroot String
c = do
String -> IO ()
unmountBelow String
c
String -> IO ()
removeDirectoryRecursive String
c