summarylogtreecommitdiffstats
path: root/lightdm.install
diff options
context:
space:
mode:
Diffstat (limited to 'lightdm.install')
-rw-r--r--lightdm.install17
1 files changed, 17 insertions, 0 deletions
diff --git a/lightdm.install b/lightdm.install
new file mode 100644
index 000000000000..5b9b01b96342
--- /dev/null
+++ b/lightdm.install
@@ -0,0 +1,17 @@
+post_install() {
+ getent group lightdm > /dev/null 2>&1 || groupadd -g 620 lightdm
+ getent passwd lightdm > /dev/null 2>&1 || useradd -c 'Light Display Manager' -u 620 -g lightdm -d /var/lib/lightdm -s /usr/bin/nologin lightdm
+ passwd -l lightdm > /dev/null
+ systemd-tmpfiles --create /usr/lib/tmpfiles.d/lightdm.conf
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ getent passwd lightdm > /dev/null 2>&1 && userdel lightdm
+ getent group lightdm > /dev/null 2>&1 && groupdel lightdm
+}
+
+# vim: ts=2 sw=2 et: