diff options
| author | Sean Whitton <spwhitton@spwhitton.name> | 2016-05-20 07:42:00 +0900 |
|---|---|---|
| committer | Sean Whitton <spwhitton@spwhitton.name> | 2016-05-20 07:42:00 +0900 |
| commit | 6eb8e9fedfa4a1b12f1f2a48791f10132b76d012 (patch) | |
| tree | b89eed3d53b5e36e013c65d7c7fbcd4a965a6a10 /src | |
| parent | c6e1829e4f5ff75a04300e2fe6fb5633a60348af (diff) | |
redundant bracket
Diffstat (limited to 'src')
| -rw-r--r-- | src/Propellor/Property/Sbuild.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/Sbuild.hs b/src/Propellor/Property/Sbuild.hs index 7f53d5b6..72f224f0 100644 --- a/src/Propellor/Property/Sbuild.hs +++ b/src/Propellor/Property/Sbuild.hs @@ -223,7 +223,7 @@ keypairGenerated = check (not <$> doesFileExist secKeyFile) $ go -- another script from wiki.d.o/sbuild ccachePrepared :: Property DebianLike ccachePrepared = propertyList "sbuild group ccache configured" $ props - & (Group "sbuild") `Ccache.hasGroupCache` "2G" + & Group "sbuild" `Ccache.hasGroupCache` "2G" & "/etc/schroot/sbuild/fstab" `File.containsLine` "/var/cache/ccache-sbuild /var/cache/ccache-sbuild rw,bind 0 0" & "/var/cache/ccache-sbuild/sbuild-setup" `File.hasContent` |
