Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@akerl
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akerl/51e1d6b8882fba04b24d to your computer and use it in GitHub Desktop.
Save akerl/51e1d6b8882fba04b24d to your computer and use it in GitHub Desktop.
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..270f8fc
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,13 @@
+src/chpst.c ident
+src/runit-init.c ident
+src/runit.c ident
+src/runsv.c ident
+src/runsvchdir.c ident
+src/runsvctrl.c ident
+src/runsvdir.c ident
+src/runsvstat.c ident
+src/sv.c ident
+src/svlogd.c ident
+src/svwaitdown.c ident
+src/svwaitup.c ident
+src/utmpset.c ident
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index eaf313f..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-command
-compile
diff --git a/.manpages b/.manpages
new file mode 100644
index 0000000..e69de29
diff --git a/LICENSE b/LICENSE
deleted file mode 120000
index 5895320..0000000
--- a/LICENSE
+++ /dev/null
@@ -1 +0,0 @@
-package/COPYING
\ No newline at end of file
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..7cb9607
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,49 @@
+DESTDIR=
+
+PACKAGE=runit-2.1.1
+DIRS=doc man etc package src
+MANPAGES=runit.8 runit-init.8 runsvdir.8 runsv.8 sv.8 utmpset.8 \
+ runsvchdir.8 svlogd.8 chpst.8
+
+all: clean .manpages $(PACKAGE).tar.gz
+
+.manpages:
+ for i in $(MANPAGES); do \
+ rman -S -f html -r '' < man/$$i | \
+ sed -e "s}name='sect\([0-9]*\)' href='#toc[0-9]*'>\(.*\)}name='sect\1'>\2}g ; \
+ s}<a href='#toc'>Table of Contents</a>}<a href='http://smarden.org/pape/'>G. Pape</a><br><a href='index.html'>runit</A><hr>}g ; \
+ s}<!--.*-->}}g" \
+ > doc/$$i.html ; \
+ done ; \
+ echo 'fix up html manually...'
+ echo 'patch -p0 <manpagehtml.diff && exit'
+ sh
+ find . -name '*.orig' -exec rm -f {} \;
+ touch .manpages
+
+$(PACKAGE).tar.gz:
+ rm -rf TEMP
+ mkdir -p TEMP/admin/$(PACKAGE)
+ make -C src clean
+ cp -a $(DIRS) TEMP/admin/$(PACKAGE)/
+ ln -sf ../etc/debian TEMP/admin/$(PACKAGE)/doc/
+ for i in TEMP/admin/$(PACKAGE)/etc/*; do \
+ test -d $$i && ln -s ../2 $$i/2; \
+ done
+ chmod -R g-ws TEMP/admin
+ chmod +t TEMP/admin
+ find TEMP -exec touch {} \;
+ su -c '\
+ chown -R root:root TEMP/admin ; \
+ (cd TEMP && tar --exclude CVS -cpzf ../$(PACKAGE).tar.gz admin); \
+ rm -rf TEMP'
+
+clean:
+ find . -name \*~ -exec rm -f {} \;
+ find . -name .??*~ -exec rm -f {} \;
+ find . -name \#?* -exec rm -f {} \;
+
+cleaner: clean
+ rm -f $(PACKAGE).tar.gz
+ for i in $(MANPAGES); do rm -f doc/`basename $$i`.html; done
+ rm -f .manpages
diff --git a/README.md b/README.md
deleted file mode 100644
index c898b3b..0000000
--- a/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-runit
-=========
-
-[![BSD Licensed](https://img.shields.io/badge/license-BSD-green.svg)](https://tldrlegal.com/license/bsd-3-clause-license-(revised))
-
-This is my mirror of [runit](http://smarden.org/runit/), an init/supervisor system written by [Gerrit Pape](http://smarden.org/pape/).
-
diff --git a/doc/debian b/doc/debian
deleted file mode 120000
index 8784129..0000000
--- a/doc/debian
+++ /dev/null
@@ -1 +0,0 @@
-../etc/debian
\ No newline at end of file
diff --git a/doc/index.html b/doc/index.html
index 2982fff..ba2a4b9 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -151,6 +151,12 @@ T2</a>
Zinux Linux</a> (as default init scheme)
<li><a href="http://www.gobolinux.org/">
GoboLinux</a>
+<li><a href="http://deepofix.org/">
+deepOfix Mail Server</a> (as default init scheme)
+<li><a href="http://www.dragora.org/">
+Dragora GNU/Linux</a> (as default init scheme)
+<li><a href="https://wiki.archlinux.org/index.php/Runit">
+ArchLinux</a>
</ul>
If you know of more distributions, please
<a href="mailto:supervision@list.skarnet.org">let me know</a>.
diff --git a/doc/useinit.html b/doc/useinit.html
index 58adec2..a5c2853 100644
--- a/doc/useinit.html
+++ b/doc/useinit.html
@@ -48,21 +48,22 @@ and tell <i>init</i> to re-read its configuration, e.g.:
<a name="upstart"><h2>Using with sysvinit and upstart</h2></a>
If your system uses a sysvinit alike init scheme that utilizes upstart
instead of inittab, and which has start and stop scripts located in
-<tt>/etc/event.d</tt>, do:
+<tt>/etc/init/</tt>, do:
<pre>
- # cat >/etc/event.d/SV <<\EOT
- # for runit - manage /sbin/runsvdir-start
- start on runlevel-2
- start on runlevel-3
- start on runlevel-4
- start on runlevel-5
+ # cat >/etc/init/runsvdir.conf <<\EOT
+ # for runit - manage /usr/sbin/runsvdir-start
+ start on runlevel 2
+ start on runlevel 3
+ start on runlevel 4
+ start on runlevel 5
stop on shutdown
- respawn /sbin/runsvdir-start
+ respawn
+ exec /usr/sbin/runsvdir-start
EOT
</pre>
-and tell init to re-read its configuration, e.g.:
+and tell init to start the new service, e.g.:
<pre>
- # init q
+ # start runsvdir
</pre>
<hr>
<a name="bsd"><h2>Using with *BSD init</h2></a>
diff --git a/etc/debian/2 b/etc/debian/2
deleted file mode 120000
index 5fae01f..0000000
--- a/etc/debian/2
+++ /dev/null
@@ -1 +0,0 @@
-../2
\ No newline at end of file
diff --git a/etc/freebsd/2 b/etc/freebsd/2
deleted file mode 120000
index 5fae01f..0000000
--- a/etc/freebsd/2
+++ /dev/null
@@ -1 +0,0 @@
-../2
\ No newline at end of file
diff --git a/etc/macosx/2 b/etc/macosx/2
deleted file mode 120000
index 5fae01f..0000000
--- a/etc/macosx/2
+++ /dev/null
@@ -1 +0,0 @@
-../2
\ No newline at end of file
diff --git a/etc/openbsd/2 b/etc/openbsd/2
deleted file mode 120000
index 5fae01f..0000000
--- a/etc/openbsd/2
+++ /dev/null
@@ -1 +0,0 @@
-../2
\ No newline at end of file
diff --git a/package/CHANGES b/package/CHANGES
index 23ae04d..03cac02 100644
--- a/package/CHANGES
+++ b/package/CHANGES
@@ -1,3 +1,14 @@
+2.1.2
+
+ * doc/index.html: add deepOfix Mail Server to list of distributions
+ that include runit (thx Debayan Banerjee).
+ * doc/useinit.html: update description on how to use with upstart
+ (thx Gabriel de Perthuis).
+ * doc/index.html: add Dragora GNU/Linux to list of distributions that
+ use runit as default init scheme (thx Matias A. Fonzo).
+ * doc/index.html: add ArchLinux to list of distributions that include
+ runit (thx Kevin Berry).
+
2.1.1
Sun, 04 Oct 2009 20:28:38 +0000
* doc/upgrade.html: fix typo.
diff --git a/runit-0.10.0.tar.gz b/runit-0.10.0.tar.gz
new file mode 100644
index 0000000..fbeaf43
Binary files /dev/null and b/runit-0.10.0.tar.gz differ
diff --git a/runit-0.11.0.tar.gz b/runit-0.11.0.tar.gz
new file mode 100644
index 0000000..f9b7e10
Binary files /dev/null and b/runit-0.11.0.tar.gz differ
diff --git a/runit-0.11.1.tar.gz b/runit-0.11.1.tar.gz
new file mode 100644
index 0000000..8527679
Binary files /dev/null and b/runit-0.11.1.tar.gz differ
diff --git a/runit-0.11.2.tar.gz b/runit-0.11.2.tar.gz
new file mode 100644
index 0000000..40c123d
Binary files /dev/null and b/runit-0.11.2.tar.gz differ
diff --git a/runit-0.12.0.tar.gz b/runit-0.12.0.tar.gz
new file mode 100644
index 0000000..08152ae
Binary files /dev/null and b/runit-0.12.0.tar.gz differ
diff --git a/runit-0.12.1.tar.gz b/runit-0.12.1.tar.gz
new file mode 100644
index 0000000..62831a8
Binary files /dev/null and b/runit-0.12.1.tar.gz differ
diff --git a/runit-0.13.0.tar.gz b/runit-0.13.0.tar.gz
new file mode 100644
index 0000000..e3ed6b4
Binary files /dev/null and b/runit-0.13.0.tar.gz differ
diff --git a/runit-0.13.1.tar.gz b/runit-0.13.1.tar.gz
new file mode 100644
index 0000000..7797ddb
Binary files /dev/null and b/runit-0.13.1.tar.gz differ
diff --git a/runit-0.3.2.tar.gz b/runit-0.3.2.tar.gz
new file mode 100644
index 0000000..8537964
Binary files /dev/null and b/runit-0.3.2.tar.gz differ
diff --git a/runit-0.3.3.tar.gz b/runit-0.3.3.tar.gz
new file mode 100644
index 0000000..d1647a8
Binary files /dev/null and b/runit-0.3.3.tar.gz differ
diff --git a/runit-0.4.0.tar.gz b/runit-0.4.0.tar.gz
new file mode 100644
index 0000000..fd19fa6
Binary files /dev/null and b/runit-0.4.0.tar.gz differ
diff --git a/runit-0.4.1.tar.gz b/runit-0.4.1.tar.gz
new file mode 100644
index 0000000..18ddd3e
Binary files /dev/null and b/runit-0.4.1.tar.gz differ
diff --git a/runit-0.5.0.tar.gz b/runit-0.5.0.tar.gz
new file mode 100644
index 0000000..86445e9
Binary files /dev/null and b/runit-0.5.0.tar.gz differ
diff --git a/runit-0.5.2.tar.gz b/runit-0.5.2.tar.gz
new file mode 100644
index 0000000..d4fe35c
Binary files /dev/null and b/runit-0.5.2.tar.gz differ
diff --git a/runit-0.5.3.tar.gz b/runit-0.5.3.tar.gz
new file mode 100644
index 0000000..61ab40b
Binary files /dev/null and b/runit-0.5.3.tar.gz differ
diff --git a/runit-0.5.4.tar.gz b/runit-0.5.4.tar.gz
new file mode 100644
index 0000000..0a46033
Binary files /dev/null and b/runit-0.5.4.tar.gz differ
diff --git a/runit-0.6.0.tar.gz b/runit-0.6.0.tar.gz
new file mode 100644
index 0000000..54c5101
Binary files /dev/null and b/runit-0.6.0.tar.gz differ
diff --git a/runit-0.6.3.tar.gz b/runit-0.6.3.tar.gz
new file mode 100644
index 0000000..1223fa9
Binary files /dev/null and b/runit-0.6.3.tar.gz differ
diff --git a/runit-0.6.4.tar.gz b/runit-0.6.4.tar.gz
new file mode 100644
index 0000000..d7e6f92
Binary files /dev/null and b/runit-0.6.4.tar.gz differ
diff --git a/runit-0.7.0.tar.gz b/runit-0.7.0.tar.gz
new file mode 100644
index 0000000..569ceb7
Binary files /dev/null and b/runit-0.7.0.tar.gz differ
diff --git a/runit-0.7.1.tar.gz b/runit-0.7.1.tar.gz
new file mode 100644
index 0000000..800efd2
Binary files /dev/null and b/runit-0.7.1.tar.gz differ
diff --git a/runit-0.7.2.tar.gz b/runit-0.7.2.tar.gz
new file mode 100644
index 0000000..d62bb1f
Binary files /dev/null and b/runit-0.7.2.tar.gz differ
diff --git a/runit-0.8.0.tar.gz b/runit-0.8.0.tar.gz
new file mode 100644
index 0000000..7f99736
Binary files /dev/null and b/runit-0.8.0.tar.gz differ
diff --git a/runit-0.8.1.tar.gz b/runit-0.8.1.tar.gz
new file mode 100644
index 0000000..f4fb6ca
Binary files /dev/null and b/runit-0.8.1.tar.gz differ
diff --git a/runit-0.8.4.tar.gz b/runit-0.8.4.tar.gz
new file mode 100644
index 0000000..d9c3306
Binary files /dev/null and b/runit-0.8.4.tar.gz differ
diff --git a/runit-0.9.0.tar.gz b/runit-0.9.0.tar.gz
new file mode 100644
index 0000000..ad2f8a6
Binary files /dev/null and b/runit-0.9.0.tar.gz differ
diff --git a/runit-0.9.1.tar.gz b/runit-0.9.1.tar.gz
new file mode 100644
index 0000000..4e6d70e
Binary files /dev/null and b/runit-0.9.1.tar.gz differ
diff --git a/runit-0.9.2.tar.gz b/runit-0.9.2.tar.gz
new file mode 100644
index 0000000..9652980
Binary files /dev/null and b/runit-0.9.2.tar.gz differ
diff --git a/runit-0.9.3.tar.gz b/runit-0.9.3.tar.gz
new file mode 100644
index 0000000..1a01ab1
Binary files /dev/null and b/runit-0.9.3.tar.gz differ
diff --git a/runit-0.9.4.tar.gz b/runit-0.9.4.tar.gz
new file mode 100644
index 0000000..9eab091
Binary files /dev/null and b/runit-0.9.4.tar.gz differ
diff --git a/runit-0.9.5.tar.gz b/runit-0.9.5.tar.gz
new file mode 100644
index 0000000..133d539
Binary files /dev/null and b/runit-0.9.5.tar.gz differ
diff --git a/runit-1.0.0.tar.gz b/runit-1.0.0.tar.gz
new file mode 100644
index 0000000..a448ed6
Binary files /dev/null and b/runit-1.0.0.tar.gz differ
diff --git a/runit-1.0.1.tar.gz b/runit-1.0.1.tar.gz
new file mode 100644
index 0000000..4892813
Binary files /dev/null and b/runit-1.0.1.tar.gz differ
diff --git a/runit-1.0.2.tar.gz b/runit-1.0.2.tar.gz
new file mode 100644
index 0000000..7b711d5
Binary files /dev/null and b/runit-1.0.2.tar.gz differ
diff --git a/runit-1.0.3.tar.gz b/runit-1.0.3.tar.gz
new file mode 100644
index 0000000..63c3485
Binary files /dev/null and b/runit-1.0.3.tar.gz differ
diff --git a/runit-1.0.4.tar.gz b/runit-1.0.4.tar.gz
new file mode 100644
index 0000000..bb8c774
Binary files /dev/null and b/runit-1.0.4.tar.gz differ
diff --git a/runit-1.0.5.tar.gz b/runit-1.0.5.tar.gz
new file mode 100644
index 0000000..64b46ce
Binary files /dev/null and b/runit-1.0.5.tar.gz differ
diff --git a/runit-1.1.0.tar.gz b/runit-1.1.0.tar.gz
new file mode 100644
index 0000000..bbadfa5
Binary files /dev/null and b/runit-1.1.0.tar.gz differ
diff --git a/runit-1.2.0.tar.gz b/runit-1.2.0.tar.gz
new file mode 100644
index 0000000..0e098ff
Binary files /dev/null and b/runit-1.2.0.tar.gz differ
diff --git a/runit-1.2.1.tar.gz b/runit-1.2.1.tar.gz
new file mode 100644
index 0000000..641c629
Binary files /dev/null and b/runit-1.2.1.tar.gz differ
diff --git a/runit-1.2.2.tar.gz b/runit-1.2.2.tar.gz
new file mode 100644
index 0000000..6031f29
Binary files /dev/null and b/runit-1.2.2.tar.gz differ
diff --git a/runit-1.2.3.tar.gz b/runit-1.2.3.tar.gz
new file mode 100644
index 0000000..702e9ca
Binary files /dev/null and b/runit-1.2.3.tar.gz differ
diff --git a/runit-1.3.0.tar.gz b/runit-1.3.0.tar.gz
new file mode 100644
index 0000000..38f20be
Binary files /dev/null and b/runit-1.3.0.tar.gz differ
diff --git a/runit-1.3.1.tar.gz b/runit-1.3.1.tar.gz
new file mode 100644
index 0000000..6b51419
Binary files /dev/null and b/runit-1.3.1.tar.gz differ
diff --git a/runit-1.3.2.tar.gz b/runit-1.3.2.tar.gz
new file mode 100644
index 0000000..62d9f11
Binary files /dev/null and b/runit-1.3.2.tar.gz differ
diff --git a/runit-1.3.3.tar.gz b/runit-1.3.3.tar.gz
new file mode 100644
index 0000000..0a33959
Binary files /dev/null and b/runit-1.3.3.tar.gz differ
diff --git a/runit-1.4.0.tar.gz b/runit-1.4.0.tar.gz
new file mode 100644
index 0000000..84019f0
Binary files /dev/null and b/runit-1.4.0.tar.gz differ
diff --git a/runit-1.4.1.tar.gz b/runit-1.4.1.tar.gz
new file mode 100644
index 0000000..46645dc
Binary files /dev/null and b/runit-1.4.1.tar.gz differ
diff --git a/runit-1.5.0.tar.gz b/runit-1.5.0.tar.gz
new file mode 100644
index 0000000..9435786
Binary files /dev/null and b/runit-1.5.0.tar.gz differ
diff --git a/runit-1.5.1.tar.gz b/runit-1.5.1.tar.gz
new file mode 100644
index 0000000..23fb685
Binary files /dev/null and b/runit-1.5.1.tar.gz differ
diff --git a/runit-1.6.0.tar.gz b/runit-1.6.0.tar.gz
new file mode 100644
index 0000000..b0cd369
Binary files /dev/null and b/runit-1.6.0.tar.gz differ
diff --git a/runit-1.7.0.tar.gz b/runit-1.7.0.tar.gz
new file mode 100644
index 0000000..bd1f446
Binary files /dev/null and b/runit-1.7.0.tar.gz differ
diff --git a/runit-1.7.1.tar.gz b/runit-1.7.1.tar.gz
new file mode 100644
index 0000000..9d0599d
Binary files /dev/null and b/runit-1.7.1.tar.gz differ
diff --git a/runit-1.7.2.tar.gz b/runit-1.7.2.tar.gz
new file mode 100644
index 0000000..484529d
Binary files /dev/null and b/runit-1.7.2.tar.gz differ
diff --git a/runit-1.8.0.tar.gz b/runit-1.8.0.tar.gz
new file mode 100644
index 0000000..815ee7c
Binary files /dev/null and b/runit-1.8.0.tar.gz differ
diff --git a/runit-1.9.0.tar.gz b/runit-1.9.0.tar.gz
new file mode 100644
index 0000000..48abb23
Binary files /dev/null and b/runit-1.9.0.tar.gz differ
diff --git a/runit-2.0.0.tar.gz b/runit-2.0.0.tar.gz
new file mode 100644
index 0000000..c8e406d
Binary files /dev/null and b/runit-2.0.0.tar.gz differ
diff --git a/runit-2.1.0.tar.gz b/runit-2.1.0.tar.gz
new file mode 100644
index 0000000..90c1203
Binary files /dev/null and b/runit-2.1.0.tar.gz differ
diff --git a/runit-2.1.1.tar.gz b/runit-2.1.1.tar.gz
new file mode 100644
index 0000000..7aa0c66
Binary files /dev/null and b/runit-2.1.1.tar.gz differ
diff --git a/src/chpst.c b/src/chpst.c
index f1b8ed9..f279d44 100644
--- a/src/chpst.c
+++ b/src/chpst.c
@@ -324,7 +324,7 @@ int main(int argc, const char **argv) {
case '0': nostdin =1; break;
case '1': nostdout =1; break;
case '2': nostderr =1; break;
- case 'V': strerr_warn1("$Id: f279d44141c981dd7535a12260efcf1ef7beed26 $", 0);
+ case 'V': strerr_warn1("$Id$", 0);
case '?': usage();
}
argv +=optind;
diff --git a/src/runit.c b/src/runit.c
index 48620b3..25da3b8 100644
--- a/src/runit.c
+++ b/src/runit.c
@@ -90,7 +90,7 @@ int main (int argc, const char * const *argv, char * const *envp) {
if (RB_DISABLE_CAD == 0) reboot_system(0);
#endif
- strerr_warn3(INFO, "$Id: 25da3b86f7bed4038b8a039d2f8e8c9bbcf0822b $",
+ strerr_warn3(INFO, "$Id$",
": booting.", 0);
/* runit */
diff --git a/src/runsv.c b/src/runsv.c
index 0de2803..ecf4677 100644
--- a/src/runsv.c
+++ b/src/runsv.c
@@ -22,7 +22,7 @@
#define USAGE " dir"
-#define VERSION "$Id: ecf467746d7b97ff0fddb88b9d44cca201c74160 $"
+#define VERSION "$Id$"
char *progname;
int selfpipe[2];
diff --git a/src/runsvchdir.c b/src/runsvchdir.c
index fe7e987..9bf17f7 100644
--- a/src/runsvchdir.c
+++ b/src/runsvchdir.c
@@ -9,7 +9,7 @@
#define USAGE " dir"
#define SVDIR "/etc/runit/runsvdir"
-#define VERSION "$Id: 9bf17f77e33c6b961e060aacffa3c8abd38fc64a $"
+#define VERSION "$Id$"
char *progname;
char *new;
diff --git a/src/runsvctrl.c b/src/runsvctrl.c
index d8eb2c4..ccf8fc8 100644
--- a/src/runsvctrl.c
+++ b/src/runsvctrl.c
@@ -5,7 +5,7 @@
#define USAGE " u|d|o|p|c|h|a|i|q|1|2|t|k|x|e service ..."
-#define VERSION "$Id: ccf8fc8ee3c340d8de97b5ddd9270b55e0f437cb $"
+#define VERSION "$Id$"
#define FATAL "runsvctrl: fatal: "
#define WARNING "runsvctrl: warning: "
diff --git a/src/runsvdir.c b/src/runsvdir.c
index 07c1d8e..ecebd0a 100644
--- a/src/runsvdir.c
+++ b/src/runsvdir.c
@@ -17,7 +17,7 @@
#include "ndelay.h"
#define USAGE " [-P] dir"
-#define VERSION "$Id: ecebd0a50510e91639c6a45dda8b0947aa8eb885 $"
+#define VERSION "$Id$"
#define MAXSERVICES 1000
diff --git a/src/runsvstat.c b/src/runsvstat.c
index c0c0233..c17bbd3 100644
--- a/src/runsvstat.c
+++ b/src/runsvstat.c
@@ -11,7 +11,7 @@
#define USAGE " [ -l ] service ..."
-#define VERSION "$Id: c17bbd3eda6f3c57027dfb47ff676bdd3fefff9f $"
+#define VERSION "$Id$"
#define FATAL "runsvstat: fatal: "
#define WARNING "runsvstat: warning: "
diff --git a/src/sv.c b/src/sv.c
index e27ccb2..d126cee 100644
--- a/src/sv.c
+++ b/src/sv.c
@@ -17,7 +17,7 @@
#define USAGE " [-v] [-w sec] command service ..."
#define USAGELSB " [-w sec] command"
-#define VERSION "$Id: d126cee39d1887d523c122ffb033d1ea098c9f24 $"
+#define VERSION "$Id$"
#define FATAL "fatal: "
#define FAIL "fail: "
diff --git a/src/svlogd.c b/src/svlogd.c
index 90a3321..5e55a90 100644
--- a/src/svlogd.c
+++ b/src/svlogd.c
@@ -34,7 +34,7 @@
#include "iopause.h"
#define USAGE " [-ttv] [-r c] [-R abc] [-l len] [-b buflen] dir ..."
-#define VERSION "$Id: 5e55a90e0a1b35ec47fed3021453c50675ea1117 $"
+#define VERSION "$Id$"
#define FATAL "svlogd: fatal: "
#define WARNING "svlogd: warning: "
diff --git a/src/svwaitdown.c b/src/svwaitdown.c
index 21a2c2c..6cd3efc 100644
--- a/src/svwaitdown.c
+++ b/src/svwaitdown.c
@@ -12,7 +12,7 @@
#define INFO "svwaitdown: "
#define USAGE " [-v] [-t 1..6000] service ..."
-#define VERSION "$Id: 6cd3efc2e15e5e3d2fa60cd0c028e60958676ec7 $"
+#define VERSION "$Id$"
const char *progname;
const char * const *dir;
diff --git a/src/svwaitup.c b/src/svwaitup.c
index e682bbe..e2d6c57 100644
--- a/src/svwaitup.c
+++ b/src/svwaitup.c
@@ -50,7 +50,7 @@ int main(int argc, const char * const *argv) {
verbose =1;
break;
case 'V':
- strerr_warn1("$Id: e2d6c574c5e56f9931323fbc0e539c7f9b829b73 $", 0);
+ strerr_warn1("$Id$", 0);
case '?':
usage();
}
diff --git a/src/utmpset.c b/src/utmpset.c
index eea41a5..cb39909 100644
--- a/src/utmpset.c
+++ b/src/utmpset.c
@@ -93,7 +93,7 @@ int main (int argc, const char * const *argv, const char * const *envp) {
wtmp =1;
break;
case 'V':
- strerr_warn1("$Id: cb399098f794012a7f5e6a3a7090b2d53b86c08c $", 0);
+ strerr_warn1("$Id$", 0);
case '?':
usage();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment