summaryrefslogtreecommitdiff
path: root/pcr/mosquitto/mosquitto.install
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2016-08-23 11:43:58 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2016-08-23 11:43:58 -0500
commita77a551daa6f26572780ac14b944eb9901c2a178 (patch)
treedd28b097024e63e41bc4a39508503d564ecfb80c /pcr/mosquitto/mosquitto.install
parent8c9d16dca525b75bd33b368ff24e1f469db6157a (diff)
downloadabslibre-a77a551daa6f26572780ac14b944eb9901c2a178.tar.gz
abslibre-a77a551daa6f26572780ac14b944eb9901c2a178.tar.bz2
abslibre-a77a551daa6f26572780ac14b944eb9901c2a178.zip
Removing mosquitto: This package is in [community] repo
Diffstat (limited to 'pcr/mosquitto/mosquitto.install')
-rw-r--r--pcr/mosquitto/mosquitto.install17
1 files changed, 0 insertions, 17 deletions
diff --git a/pcr/mosquitto/mosquitto.install b/pcr/mosquitto/mosquitto.install
deleted file mode 100644
index ab99d1d0f..000000000
--- a/pcr/mosquitto/mosquitto.install
+++ /dev/null
@@ -1,17 +0,0 @@
-post_install() {
- getent group mosquitto > /dev/null || groupadd -g 567 mosquitto
- getent passwd mosquitto > /dev/null || useradd -c 'Mosquitto MQTT Broker daemon' -d /etc/mosquitto -s /bin/false -g mosquitto -u 567 -g 567 mosquitto
-}
-
-post_upgrade() {
- post_install $1
- usermod -u 567 mosquitto
- groupmod -g 567 mosquitto
-}
-
-post_remove() {
- post_install $1
- echo "You may want to remove mosquitto user and group"
-}
-
-# vim:set ts=2 sw=2 et: