summaryrefslogtreecommitdiff
path: root/src/includes
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-03-05 12:27:11 +0000
committerRoy Marples <roy@marples.name>2008-03-05 12:27:11 +0000
commita689b66023ad7b3da179b02c9e473cbc49f295e6 (patch)
treec1e6baad98bdfde3c36f1105b8fe6f15534b30c4 /src/includes
parent7aa231de2e784b00267cb618b728cf0f754c9573 (diff)
downloadopenrc-a689b66023ad7b3da179b02c9e473cbc49f295e6.tar.gz
openrc-a689b66023ad7b3da179b02c9e473cbc49f295e6.tar.bz2
openrc-a689b66023ad7b3da179b02c9e473cbc49f295e6.tar.xz
Add tunable SYSCONFDIR
Diffstat (limited to 'src/includes')
-rw-r--r--src/includes/rc-misc.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/includes/rc-misc.h b/src/includes/rc-misc.h
index 56cfcfe..fafbc49 100644
--- a/src/includes/rc-misc.h
+++ b/src/includes/rc-misc.h
@@ -41,6 +41,10 @@
# define LIB "lib"
#endif
+#ifndef SYSCONFDIR
+# define SYSCONFDIR "/etc"
+#endif
+
#ifdef PREFIX
# define RC_PREFIX PREFIX
#else
@@ -53,23 +57,23 @@
#define RC_LIBDIR RC_PREFIX "/" LIB "/rc"
#define RC_SVCDIR RC_LIBDIR "/init.d"
#define RC_DEPTREE RC_SVCDIR "/deptree"
-#define RC_RUNLEVELDIR RC_PREFIX "/etc/runlevels"
-#define RC_INITDIR RC_PREFIX "/etc/init.d"
-#define RC_CONFDIR RC_PREFIX "/etc/conf.d"
+#define RC_RUNLEVELDIR RC_PREFIX SYSCONFDIR "/runlevels"
+#define RC_INITDIR RC_PREFIX SYSCONFDIR "/init.d"
+#define RC_CONFDIR RC_PREFIX SYSCONFDIR "/conf.d"
/* PKG_PREFIX is where packages are installed if different from the base OS
* On Gentoo this is normally unset, on FreeBSD /usr/local and on NetBSD
* /usr/pkg. */
#ifdef PKG_PREFIX
-# define RC_PKG_INITDIR PKG_PREFIX "/etc/init.d"
-# define RC_PKG_CONFDIR PKG_PREFIX "/etc/conf.d"
+# define RC_PKG_INITDIR PKG_PREFIX SYSCONFDIR "/init.d"
+# define RC_PKG_CONFDIR PKG_PREFIX SYSCONFDIR "/conf.d"
#endif
/* LOCAL_PREFIX is for user written stuff, which the base OS and package
* manger don't touch. */
#ifdef LOCAL_PREFIX
-# define RC_LOCAL_INITDIR LOCAL_PREFIX "/etc/init.d"
-# define RC_LOCAL_CONFDIR LOCAL_PREFIX "/etc/conf.d"
+# define RC_LOCAL_INITDIR LOCAL_PREFIX SYSCONFDIR "/init.d"
+# define RC_LOCAL_CONFDIR LOCAL_PREFIX SYSCONFDIR "/conf.d"
#endif
#define RC_KSOFTLEVEL RC_SVCDIR "/ksoftlevel"