summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2011-03-04 19:08:08 -0600
committerWilliam Hubbs <williamh@gentoo.org>2011-03-05 00:04:06 -0600
commit3fca6bd0278bc2a21fdd72c3bf20220e81b2eab5 (patch)
tree875b63c5d1c7500e8f3ecc389e86caa5827c97b9 /etc
parent202fa20cbca2895f29f533e7b908544bcc0248f3 (diff)
downloadopenrc-3fca6bd0278bc2a21fdd72c3bf20220e81b2eab5.tar.gz
openrc-3fca6bd0278bc2a21fdd72c3bf20220e81b2eab5.tar.bz2
openrc-3fca6bd0278bc2a21fdd72c3bf20220e81b2eab5.tar.xz
allow default rc_sys value to be set at build time
This allows the default value of rc_sys to be set when openrc is compiled. This will allow openrc to be installed, e.g. on vserver guests and will allow them to be rebooted without the need to edit rc.conf. This patch is a combined effort between myself and Robin Johnson. X-Gentoo-Bug: 357247 X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=357247
Diffstat (limited to 'etc')
-rw-r--r--etc/rc.conf.FreeBSD2
-rw-r--r--etc/rc.conf.Linux2
-rw-r--r--etc/rc.conf.NetBSD2
3 files changed, 3 insertions, 3 deletions
diff --git a/etc/rc.conf.FreeBSD b/etc/rc.conf.FreeBSD
index 800c6cf..139a825 100644
--- a/etc/rc.conf.FreeBSD
+++ b/etc/rc.conf.FreeBSD
@@ -8,5 +8,5 @@
# This should be set to the value representing what environment this file is
# PRESENTLY in, not what virtualization the environment is capable of.
# See the OpenRC migration guide for more details.
-rc_sys=""
+rc_sys="@RC_SYS_DEFAULT@"
diff --git a/etc/rc.conf.Linux b/etc/rc.conf.Linux
index b110a81..1400af5 100644
--- a/etc/rc.conf.Linux
+++ b/etc/rc.conf.Linux
@@ -13,7 +13,7 @@
# This should be set to the value representing what environment this file is
# PRESENTLY in, not what virtualization the environment is capable of.
# See the OpenRC migration guide for more details.
-rc_sys=""
+rc_sys="@RC_SYS_DEFAULT@"
##############################################################################
# LINUX SPECIFIC OPTIONS
diff --git a/etc/rc.conf.NetBSD b/etc/rc.conf.NetBSD
index b29000b..3528a00 100644
--- a/etc/rc.conf.NetBSD
+++ b/etc/rc.conf.NetBSD
@@ -9,5 +9,5 @@
# This should be set to the value representing what environment this file is
# PRESENTLY in, not what virtualization the environment is capable of.
# See the OpenRC migration guide for more details.
-rc_sys=""
+rc_sys="@RC_SYS_DEFAULT@"