diff options
| -rw-r--r-- | debian/changelog | 7 | ||||
| -rw-r--r-- | src/Propellor/Property/LightDM.hs | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index c313a2c6..cce3338c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +propellor (4.3.4) UNRELEASED; urgency=medium + + * LightDM.autoLogin: Use [Seat:*] rather than the old [SeatDefaults]. + The new name has been supported since lightdm 1.15. + + -- Joey Hess <id@joeyh.name> Thu, 13 Jul 2017 15:52:24 -0400 + propellor (4.3.3) unstable; urgency=medium * Hosts can be configured to build propellor using stack, by adding diff --git a/src/Propellor/Property/LightDM.hs b/src/Propellor/Property/LightDM.hs index 69538d89..44f0e9f0 100644 --- a/src/Propellor/Property/LightDM.hs +++ b/src/Propellor/Property/LightDM.hs @@ -12,6 +12,6 @@ installed = Apt.installed ["lightdm"] -- | Configures LightDM to skip the login screen and autologin as a user. autoLogin :: User -> Property DebianLike autoLogin (User u) = "/etc/lightdm/lightdm.conf" `ConfFile.containsIniSetting` - ("SeatDefaults", "autologin-user", u) + ("Seat:*", "autologin-user", u) `describe` "lightdm autologin" `requires` installed |
