summaryrefslogtreecommitdiff
path: root/src/Propellor/Property/Apt.hs
diff options
context:
space:
mode:
authorSean Whitton2017-01-30 18:48:21 -0700
committerSean Whitton2017-01-30 18:48:21 -0700
commit384d435868d2cec88c44a5b73c4a46ba114acde9 (patch)
treefea63c8f1bf74eda8232454d330f6c3671f8e027 /src/Propellor/Property/Apt.hs
parent77c1f36116b1e3a6c2d3936504dfdd7e8bdb5241 (diff)
fix swapped sourceFile & prefFile
Diffstat (limited to 'src/Propellor/Property/Apt.hs')
-rw-r--r--src/Propellor/Property/Apt.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Propellor/Property/Apt.hs b/src/Propellor/Property/Apt.hs
index 56b42eb6..b89d12c6 100644
--- a/src/Propellor/Property/Apt.hs
+++ b/src/Propellor/Property/Apt.hs
@@ -140,8 +140,8 @@ suiteAvailablePinned s pin = available <!> unavailable
_ -> noChange
generators = [debCdn, kernelOrg, securityUpdates]
- sourceFile = "/etc/apt/preferences.d/20" ++ showSuite s ++ ".pref"
- prefFile = "/etc/apt/sources.list.d/" ++ showSuite s ++ ".list"
+ prefFile = "/etc/apt/preferences.d/20" ++ showSuite s ++ ".pref"
+ sourceFile = "/etc/apt/sources.list.d/" ++ showSuite s ++ ".list"
desc True = "Debian " ++ showSuite s ++ " pinned, priority " ++ show pin
desc False = "Debian " ++ showSuite s ++ "not pinned"