diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2015-04-26 13:31:49 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2015-04-27 11:21:29 -0500 |
commit | 8b9349208696e5caed1a8b34f066cec4ee642194 (patch) | |
tree | 0ee1fce0de32aecfcd5c314322067879fc0e73cd /sh | |
parent | 4b1b457cd15cc1609c101b99a49a5e4c67b62567 (diff) |
convert all references from runscript to openrc-run
Diffstat (limited to 'sh')
-rw-r--r-- | sh/.gitignore | 2 | ||||
-rw-r--r-- | sh/Makefile | 4 | ||||
-rw-r--r-- | sh/openrc-run.sh.in (renamed from sh/runscript.sh.in) | 2 | ||||
-rw-r--r-- | sh/rc-functions.sh.in | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/sh/.gitignore b/sh/.gitignore index c83b730b..f814f4a0 100644 --- a/sh/.gitignore +++ b/sh/.gitignore @@ -1,7 +1,7 @@ functions.sh gendepends.sh rc-functions.sh -runscript.sh +openrc-run.sh cgroup-release-agent.sh init.sh init-early.sh diff --git a/sh/Makefile b/sh/Makefile index 8f742dc8..ee9d74de 100644 --- a/sh/Makefile +++ b/sh/Makefile @@ -1,8 +1,8 @@ DIR= ${LIBEXECDIR}/sh SRCS= init.sh.in functions.sh.in gendepends.sh.in \ - rc-functions.sh.in runscript.sh.in tmpfiles.sh.in ${SRCS-${OS}} + openrc-run.sh.in rc-functions.sh.in tmpfiles.sh.in ${SRCS-${OS}} INC= rc-mount.sh functions.sh rc-functions.sh -BIN= gendepends.sh init.sh runscript.sh tmpfiles.sh ${BIN-${OS}} +BIN= gendepends.sh init.sh openrc-run.sh tmpfiles.sh ${BIN-${OS}} INSTALLAFTER= _installafter diff --git a/sh/runscript.sh.in b/sh/openrc-run.sh.in index 4c472603..a6d2c0b8 100644 --- a/sh/runscript.sh.in +++ b/sh/openrc-run.sh.in @@ -1,5 +1,5 @@ #!@SHELL@ -# Shell wrapper for runscript +# Shell wrapper for openrc-run # Copyright (c) 2007-2009 Roy Marples <roy@marples.name> # Released under the 2-clause BSD license. diff --git a/sh/rc-functions.sh.in b/sh/rc-functions.sh.in index d52b82e1..911d65ac 100644 --- a/sh/rc-functions.sh.in +++ b/sh/rc-functions.sh.in @@ -85,7 +85,7 @@ get_bootparam() return 1 } -# Called from runscript.sh or gendepends.sh +# Called from openrc-run.sh or gendepends.sh _depend() { depend local _rc_svcname=$(shell_var "$RC_SVCNAME") _deptype= _depends= |