summary refs log tree commit diff
path: root/doc/faq.html
diff options
context:
space:
mode:
authorGerrit Pape <pape@smarden.org>2008-04-20 20:47:39 +0000
committerGerrit Pape <pape@smarden.org>2008-04-20 20:48:13 +0000
commit29c4521100d47a589c89ef3145db61f9e4a00cf9 (patch)
treeb507e644dbeb58afa4eecec9874d24e02e4fc43e /doc/faq.html
parented673f8f525aead9418d34faea94b83c71b4eaa7 (diff)
downloadrunit-29c4521100d47a589c89ef3145db61f9e4a00cf9.tar.gz
runit-29c4521100d47a589c89ef3145db61f9e4a00cf9.tar.xz
runit-29c4521100d47a589c89ef3145db61f9e4a00cf9.zip
* change default directory for services from /var/service/ to /service/.
Diffstat (limited to 'doc/faq.html')
-rw-r--r--doc/faq.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/faq.html b/doc/faq.html
index 7fdf734..a2eae27 100644
--- a/doc/faq.html
+++ b/doc/faq.html
@@ -216,12 +216,12 @@ How do I tell runit about the new service directory, so that it picks
 up and runs the service by default?
 <p>
 Answer:
-Create a symbolic link in <tt>/var/service/</tt> pointing to the service
+Create a symbolic link in <tt>/service/</tt> pointing to the service
 directory, runit will pick up the service within the next five seconds,
 and automatically start it on system boot.
 E.g.:
 <pre>
- # ln -s /etc/sv/getty-2 /var/service/
+ # ln -s /etc/sv/getty-2 /service/
 </pre>
 
 <hr>
@@ -283,13 +283,13 @@ supervision.
 How do I tell runit?
 <p>
 Answer:
-Remove the symbolic link in <tt>/var/service/</tt> pointing to the service
+Remove the symbolic link in <tt>/service/</tt> pointing to the service
 directory, runit recognizes the removed service within the next five
 seconds, then stops the service, the optional log service, and finally the
 supervisor process.
 E.g.:
 <pre>
- # rm /var/service/getty-2
+ # rm /service/getty-2
 </pre>
 
 <hr>