summaryrefslogtreecommitdiff
path: root/src/Propellor
diff options
context:
space:
mode:
authorSean Whitton2017-11-11 10:31:14 -0700
committerSean Whitton2017-11-11 10:31:14 -0700
commit8c3d8b1b7ae902a75507473562ce43b5877882a9 (patch)
tree79c348acae08e7012913c46f9cdf8466cf735ceb /src/Propellor
parent8b50c1669a910bd88bf3b63e03a550815eadd4db (diff)
fix type of Firejail.jailed'
Diffstat (limited to 'src/Propellor')
-rw-r--r--src/Propellor/Property/Firejail.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/Firejail.hs b/src/Propellor/Property/Firejail.hs
index 6e877683..aa4024a7 100644
--- a/src/Propellor/Property/Firejail.hs
+++ b/src/Propellor/Property/Firejail.hs
@@ -26,6 +26,6 @@ jailed ps = mconcat (map jailed' ps)
`requires` installed
`describe` unwords ("firejail jailed":ps)
-jailed' :: String -> Property UnixLike
+jailed' :: String -> RevertableProperty UnixLike UnixLike
jailed' p = ("/usr/local/bin" </> p)
`File.isSymlinkedTo` File.LinkTarget "/usr/bin/firejail"