From 384d435868d2cec88c44a5b73c4a46ba114acde9 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Mon, 30 Jan 2017 18:48:21 -0700 Subject: fix swapped sourceFile & prefFile --- src/Propellor/Property/Apt.hs | 4 ++-- 1 file 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" -- cgit v1.2.3