commit b79b13ae49bb4aa457d589eb49784a06c2d2b631
parent ea9800ae04811b7cca9364861131fb7a4ce71e2e
Author: Gerrit Pape <pape@smarden.org>
Date: Sun, 4 May 2003 09:37:01 +0000
* Makefile: actually build runsvstat, runsvctrl before installing them,
fixes build failure (thx Lukas Beeler).
0.9.3.
Diffstat:
7 files changed, 18 insertions(+), 13 deletions(-)
diff --git a/Makefile b/Makefile
@@ -1,6 +1,6 @@
DESTDIR=
-PACKAGE=runit-0.9.2
+PACKAGE=runit-0.9.3
DIRS=doc man etc package src
MANPAGES=runit.8 runit-init.8 runsvdir.8 runsv.8 svwaitdown.8 svwaitup.8 \
utmpset.8 runsvchdir.8 runsvstat.8 runsvctrl.8 svlogd.8
diff --git a/doc/install.html b/doc/install.html
@@ -17,14 +17,14 @@ If you don't have a <tt>/package</tt> directory, create it now:
# chmod 1755 /package
</pre>
Download
-<a href="runit-0.9.2.tar.gz">runit-0.9.2.tar.gz</a> into <tt>/package</tt>
+<a href="runit-0.9.3.tar.gz">runit-0.9.3.tar.gz</a> into <tt>/package</tt>
and unpack the archive
<pre>
# cd /package
- # gunzip runit-0.9.2.tar
- # tar -xpf runit-0.9.2.tar
- # rm runit-0.9.2.tar
- # cd admin/runit-0.9.2
+ # gunzip runit-0.9.3.tar
+ # tar -xpf runit-0.9.3.tar
+ # rm runit-0.9.3.tar
+ # cd admin/runit-0.9.3
</pre>
Compile and install the <i>runit</i> programs
<pre>
diff --git a/doc/replaceinit.html b/doc/replaceinit.html
@@ -106,7 +106,7 @@ default Unix process no 1 <i>runit</i>.
</pre>
To report success:
<pre>
- # ( uname -a ; cat /etc/runit/[123] ) | mail pape-runit-0.9.2@smarden.org
+ # ( uname -a ; cat /etc/runit/[123] ) | mail pape-runit-0.9.3@smarden.org
</pre>
<hr>
@@ -187,7 +187,7 @@ Use <b>init 6</b> to reboot and <b>init 0</b> to halt a system that runs
<p>
To report success:
<pre>
- # ( uname -a ; cat /etc/runit/[123] ) | mail pape-runit-0.9.2@smarden.org
+ # ( uname -a ; cat /etc/runit/[123] ) | mail pape-runit-0.9.3@smarden.org
</pre>
<h3>Step 5: Service migration</h3>
The goal is to migrate all services from <i>/etc/rc.*</i> scheme to the
diff --git a/doc/upgrade.html b/doc/upgrade.html
@@ -10,7 +10,7 @@
<h1>runit - upgrading from previous versions</h1>
<hr>
-<h3>0.8.0 or 0.8.1 to 0.9.1 or 0.9.2</h3>
+<h3>0.8.0 or 0.8.1 to 0.9.1 or 0.9.3</h3>
The <a href="svlogd.8.html">svlogd</a> program is new.
<i>svlogd</i> is a service logging daemon designed to be run from
<tt>log/run</tt> files, similar to
diff --git a/package/CHANGES b/package/CHANGES
@@ -1,3 +1,8 @@
+runit 0.9.3
+Sun, 04 May 2003 11:30:58 +0200
+ * Makefile: actually build runsvstat, runsvctrl before installing them,
+ fixes build failure (thx Lukas Beeler).
+
runit 0.9.2
Sat, 03 May 2003 17:40:23 +0200
* doc/runscripts.html: changes from Jesse Cablek.
diff --git a/package/upgrade b/package/upgrade
@@ -7,9 +7,9 @@ test -d src || ( echo 'Wrong working directory.'; exit 1 )
here=`env - PATH=$PATH pwd`
parent=`dirname $here`
-echo 'Creating symlink runit -> runit-0.9.2...'
+echo 'Creating symlink runit -> runit-0.9.3...'
rm -f runit
-ln -s runit-0.9.2 runit
+ln -s runit-0.9.3 runit
mv -f runit ..
echo 'Making command links in /command...'
diff --git a/src/Makefile b/src/Makefile
@@ -1,5 +1,5 @@
-IT=sysdeps runit runit-init runsv runsvdir runsvchdir svwaitup svwaitdown \
-utmpset svlogd
+IT=sysdeps runit runit-init runsv runsvctrl runsvstat runsvdir runsvchdir \
+svwaitup svwaitdown utmpset svlogd
default: $(IT)