Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
Index: radix-system/etc/group
===================================================================
--- radix-system/etc/group	(revision 330)
+++ radix-system/etc/group	(revision 331)
@@ -62,5 +62,4 @@
 nginx:x:243:
 rabbitmq:x:264:
 avahi:x:272:
-avahi-autoipd:x:273:
 opendkim:x:305:postfix
Index: radix-system/etc/passwd
===================================================================
--- radix-system/etc/passwd	(revision 330)
+++ radix-system/etc/passwd	(revision 331)
@@ -41,6 +41,5 @@
 postgres:x:209:209:PostgreSQL:/var/lib/pgsql:/bin/bash
 nginx:x:243:243:Nginx:/srv/nginx:/bin/false
 rabbitmq:x:264:264:RabbitMQ:/var/lib/rabbitmq:/bin/false
-avahi:x:272:272:avahi:/etc/avahi:/bin/false
-avahi-autoipd:x:273:273:avahi-autoipd:/etc/avahi:/bin/false
+avahi:x:272:272:avahi:/dev/null:/bin/false
 opendkim:x:305:305:OpenDKIM Milter:/var/run/opendkim/:/sbin/nologin
Index: radix-system/etc/rc.d/rc.local
===================================================================
--- radix-system/etc/rc.d/rc.local	(revision 330)
+++ radix-system/etc/rc.d/rc.local	(revision 331)
@@ -5,3 +5,12 @@
 # Put any local startup commands in here.
 #
 
+# Start avahidaemon
+if [ -x /etc/rc.d/rc.avahidaemon ] ; then
+  /etc/rc.d/rc.avahidaemon start
+fi
+# Start avahidnsconfd
+if [ -x /etc/rc.d/rc.avahidnsconfd ] ; then
+  /etc/rc.d/rc.avahidnsconfd start
+fi
+
Index: radix-system/etc/rc.d/rc.local_shutdown
===================================================================
--- radix-system/etc/rc.d/rc.local_shutdown	(revision 330)
+++ radix-system/etc/rc.d/rc.local_shutdown	(revision 331)
@@ -6,3 +6,12 @@
 # you can put those commands in here.
 #
 
+# Stop avahidnsconfd
+if [ -x /etc/rc.d/rc.avahidnsconfd ]; then
+  /etc/rc.d/rc.avahidnsconfd stop
+fi
+# Stop avahidaemon
+if [ -x /etc/rc.d/rc.avahidaemon ]; then
+  /etc/rc.d/rc.avahidaemon stop
+fi
+