diff options
-rw-r--r-- | README | 5 | ||||
-rwxr-xr-x | xmksv | 18 | ||||
-rw-r--r-- | xtools.1 | 8 |
3 files changed, 26 insertions, 5 deletions
diff --git a/README b/README index 0d7c826..ae78e4a 100644 --- a/README +++ b/README @@ -91,8 +91,9 @@ COMMANDS xmandoc manpage – read manpage of possibly not installed package - xmksv [newsvdir] - – create new runit service templates + xmksv [-l] [newsvdir ...] + – create new runit service templates. Also creates log service if -l + is passed. xmypkgs [email] – list all pkgs maintained by you diff --git a/xmksv b/xmksv index 619ba26..8c0a5d6 100755 --- a/xmksv +++ b/xmksv @@ -1,5 +1,10 @@ #!/bin/sh -e -# xmksv [NEWSVDIR...] - create new runit service templates +# xmksv [-l] [NEWSVDIR...] - create new runit service templates + +if [ "$1" = "-l" ]; then + MKLOG=1 + shift +fi cd ${SVDIR:-/etc/sv} @@ -11,4 +16,15 @@ for SRV; do ln -s /run/runit/supervise."$(printf %s "$SRV" | tr / -)" \ "$SRV/supervise" fi + if [ -n "$MKLOG" ]; then + mkdir "$SRV/log" + cat <<EOF | install -m755 /dev/stdin "$SRV/log/run" +#!/bin/sh +exec vlogger -t $SRV -f daemon +EOF + if [ -w /run/runit ]; then + ln -s /run/runit/supervise."$(printf %s "$SRV/log" | tr / -)" \ + "$SRV/log/supervise" + fi + fi done diff --git a/xtools.1 b/xtools.1 index 185c073..7a2fb90 100644 --- a/xtools.1 +++ b/xtools.1 @@ -112,8 +112,12 @@ Sync with the official git based xlocate database, which is recommended before u .Nd list files contained in pkg (including binpkgs) .It Nm xmandoc Ar manpage .Nd read manpage of possibly not installed package -.It Nm xmksv Op Ar newsvdir -.Nd create new runit service templates +.It Nm xmksv Oo Fl l Oc \ +Op Ar newsvdir ... +.Nd create new runit service templates. +Also creates log service if +.Fl l +is passed. .It Nm xmypkgs Op Ar email .Nd list all pkgs maintained by you .It Nm xnew \ |