fiss-minit

A standalone service supervisor based on minit
Log | Files | Refs | README | LICENSE

commit 7d1795f86844ed99814b39a3830149ff147fe9e3
parent e544d3f1d3cb03165c40b0f4135cae1ea68a782b
Author: leitner <leitner>
Date:   Fri, 31 Dec 2004 01:14:46 +0000

add serdo and man page

Diffstat:
MMakefile | 4++--
Aserdo.8 | 28++++++++++++++++++++++++++++
Mserdo.c | 11++++++++++-
3 files changed, 40 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -77,10 +77,10 @@ install-files: install -d $(DESTDIR)/etc/minit $(DESTDIR)/sbin $(DESTDIR)/bin $(DESTDIR)$(MANDIR)/man8 install minit pidfilehack $(DESTDIR)/sbin install write_proc hard-reboot minit-update $(DESTDIR)/sbin - install msvc $(DESTDIR)/bin + install msvc serdo $(DESTDIR)/bin install -m 4750 shutdown $(DESTDIR)/sbin test -f $(DESTDIR)/sbin/init || ln $(DESTDIR)/sbin/minit $(DESTDIR)/sbin/init - install -m 644 hard-reboot.8 minit-list.8 minit-shutdown.8 minit-update.8 minit.8 msvc.8 pidfilehack.8 $(DESTDIR)$(MANDIR)/man8 + install -m 644 hard-reboot.8 minit-list.8 minit-shutdown.8 minit-update.8 minit.8 msvc.8 pidfilehack.8 serdo.8 $(DESTDIR)$(MANDIR)/man8 install-fifos: -mkfifo -m 600 $(DESTDIR)/etc/minit/in $(DESTDIR)/etc/minit/out diff --git a/serdo.8 b/serdo.8 @@ -0,0 +1,28 @@ +.TH serdo 1 +.SH NAME +serdo \- run commands serially +.SH SYNOPSIS +.B serdo +.I [-c] +.I filename + +.SH DESCRIPTION +.B serdo +will open the file given by the command line argument and serially +execute all the commands in it. If a command fails, the whole batch job +is aborted (unless -c is given as first paramter on the serdo command +line). + +serdo understands the \fBcd\fR and \fBexport\fR sh(1) built-ins (no +loops, no ~user expansion, no $FOO expansion, no backticks). + +serdo is very limited by design, but it is nice to have if you just want +to run a few ifconfig, ip, route commands in sequence. serdo will +return the exit code of the last command it ran, 0 if none were given. + +.SH AUTHOR +minit was written by Felix von Leitner and can be downloaded from +.I http://www.fefe.de/minit/ + +.SH "SEE ALSO" +msvc(8), sh(1) diff --git a/serdo.c b/serdo.c @@ -11,6 +11,8 @@ char* envp[MAXENV+2]; int envc; +int continueonerror; + int envset(char* s) { int i,l; if (s[l=str_chr(s,'=')]!='=') return -1; @@ -121,6 +123,8 @@ int execute(char* s) { } else last=1; r=run(start,last); + if (r!=0 && !continueonerror) + break; } return r; } @@ -146,8 +150,13 @@ int main(int argc,char* argv[],char* env[]) { errmsg_iam("serdo"); for (envc=0; envc<MAXENV && env[envc]; ++envc) envp[envc]=env[envc]; envp[envc]=0; - while (*++argv) + if (str_equal(argv[1],"-c")) { + continueonerror=1; + ++argv; + } + while (*++argv) { if ((r=batch(*argv))) return r; + } return 0; }