chiark / gitweb /
service: read special startup dirs only on the respective distros
authorLennart Poettering <lennart@poettering.net>
Thu, 5 Aug 2010 18:28:51 +0000 (20:28 +0200)
committerLennart Poettering <lennart@poettering.net>
Thu, 5 Aug 2010 18:28:51 +0000 (20:28 +0200)
src/service.c

index b2e0f86ae8d6ac83b8f9e3fd6b2875b34b51964d..ee1da2a7b32bcb1d746e3e36a28f0eedd69815ea 100644 (file)
@@ -56,11 +56,15 @@ static const struct {
         { "rc4.d",  SPECIAL_RUNLEVEL4_TARGET, RUNLEVEL_UP },
         { "rc5.d",  SPECIAL_RUNLEVEL5_TARGET, RUNLEVEL_UP },
 
+#ifdef TARGET_SUSE
         /* SUSE style boot.d */
         { "boot.d", SPECIAL_SYSINIT_TARGET,   RUNLEVEL_SYSINIT },
+#endif
 
+#ifdef TARGET_DEBIAN
         /* Debian style rcS.d */
         { "rcS.d",  SPECIAL_SYSINIT_TARGET,   RUNLEVEL_SYSINIT },
+#endif
 
         /* Standard SysV runlevels for shutdown */
         { "rc0.d",  SPECIAL_POWEROFF_TARGET,  RUNLEVEL_DOWN },