summarylogtreecommitdiffstats
path: root/colord.install
diff options
context:
space:
mode:
authorVincent Grande2019-08-07 23:24:50 -0400
committerVincent Grande2019-08-07 23:24:50 -0400
commit3a6d80b4e7fe586252297f4ed4e6c90f7c7ad7de (patch)
tree9d193319ded35e9c3b02de7346adeea4689141ca /colord.install
parentcb0115dede6034cc1f57ffa5598639c722d1fbb0 (diff)
downloadaur-3a6d80b4e7fe586252297f4ed4e6c90f7c7ad7de.tar.gz
things
Diffstat (limited to 'colord.install')
-rw-r--r--colord.install17
1 files changed, 0 insertions, 17 deletions
diff --git a/colord.install b/colord.install
deleted file mode 100644
index 2b20f5edde58..000000000000
--- a/colord.install
+++ /dev/null
@@ -1,17 +0,0 @@
-post_install() {
- glib-compile-schemas /usr/share/glib-2.0/schemas
- getent group colord >/dev/null || groupadd -g 124 colord
- getent passwd colord >/dev/null || useradd -d /var/lib/colord -u 124 -g colord -s /bin/false colord
- chown colord:colord /var/lib/colord
- chown colord:colord /var/lib/colord/*.db 2>/dev/null || return 0
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- glib-compile-schemas /usr/share/glib-2.0/schemas
- getent passwd colord >/dev/null && userdel colord
- getent group colord >/dev/null && groupdel colord
-}