summaryrefslogtreecommitdiff
path: root/community-staging/lxdm/lxdm.install
diff options
context:
space:
mode:
Diffstat (limited to 'community-staging/lxdm/lxdm.install')
-rw-r--r--community-staging/lxdm/lxdm.install24
1 files changed, 0 insertions, 24 deletions
diff --git a/community-staging/lxdm/lxdm.install b/community-staging/lxdm/lxdm.install
deleted file mode 100644
index eaf2339cd..000000000
--- a/community-staging/lxdm/lxdm.install
+++ /dev/null
@@ -1,24 +0,0 @@
-pkgname=lxdm
-
-post_install() {
- if [ -z "`getent group "lxdm" 2> /dev/null`" ]; then
- groupadd lxdm
- chown root:lxdm /etc/lxdm/lxdm.conf
- fi
- chown -R root:lxdm /var/lib/lxdm > /dev/null
- chmod +r /etc/lxdm/lxdm.conf
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- getent group "lxdm" &>/dev/null && groupdel lxdm #1>/dev/null
- return 0
-}
-
-op=$1
-shift
-
-$op "$@"