summarylogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorBrian Bidulock2019-08-08 08:08:38 -0600
committerBrian Bidulock2019-08-08 08:08:38 -0600
commit8e82e428b3a061168e987aa25f8ae0abdea2153e (patch)
treeea61963b2679c46aa421fc6d563ecf9454b09b6d /install
parent5b5a6d44254a839327bdb6388b59386c1e222794 (diff)
downloadaur-8e82e428b3a061168e987aa25f8ae0abdea2153e.tar.gz
uppkg
Diffstat (limited to 'install')
-rw-r--r--install22
1 files changed, 0 insertions, 22 deletions
diff --git a/install b/install
deleted file mode 100644
index 1db4754e33b5..000000000000
--- a/install
+++ /dev/null
@@ -1,22 +0,0 @@
-post_install() {
- getent group avahi &>/dev/null || groupadd -r -g 84 avahi >/dev/null
- getent passwd avahi &>/dev/null || useradd -r -u 84 -g avahi -d / -s /bin/false -c avahi avahi >/dev/null
-
- cat <<EOF
-==> The following daemons may be added to DAEMONS in /etc/rc.conf:
-==> avahi-daemon: the mdns responder, you probably want this.
-==> dbus needs to be running when you start it.
-==> avahi-dnsconfd: daemon used for peer-to-peer automatic dns
-==> configuration on dhcp-less networks.
-
-==> To use some of the client applications you will have to install python.
-==> In addition, pygtk is required for the graphical ones and
-==> twisted for avahi-bookmarks.
-EOF
-}
-
-post_remove() {
- getent passwd avahi &>/dev/null && userdel avahi >/dev/null
- getent group avahi &>/dev/null && groupdel avahi >/dev/null
- true
-}