comparison core/rc/rc.sh @ 585:75c8521c9b7a

core/rc: add initial documentation
author David Demelier <markand@malikania.fr>
date Mon, 08 Jul 2019 20:30:00 +0200
parents ddb052f876cd
children b8fa19b6a221
comparison
equal deleted inserted replaced
584:82e07854bdd6 585:75c8521c9b7a
14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 # 16 #
17 17
18 PKGNAME=rc 18 PKGNAME=rc
19 PKGVERSION=0.1 19 PKGVERSION=0.2
20 PKGREVISION=1 20 PKGREVISION=1
21 PKGLICENSE="ISC" 21 PKGLICENSE="ISC"
22 PKGSUMMARY="vanilla init scripts" 22 PKGSUMMARY="vanilla init scripts"
23 PKGPROTECT="etc/rc.conf 23 PKGPROTECT="etc/rc.conf
24 etc/rc.init 24 etc/rc.init
29 { 29 {
30 install -Dm0755 rc.conf $DESTDIR/etc/rc.conf 30 install -Dm0755 rc.conf $DESTDIR/etc/rc.conf
31 install -Dm0755 rc.init $DESTDIR/etc/rc.init 31 install -Dm0755 rc.init $DESTDIR/etc/rc.init
32 install -Dm0755 rc.shutdown $DESTDIR/etc/rc.shutdown 32 install -Dm0755 rc.shutdown $DESTDIR/etc/rc.shutdown
33 install -Dm0755 rc.start $DESTDIR/etc/rc.start 33 install -Dm0755 rc.start $DESTDIR/etc/rc.start
34 install -Dm0755 rc.conf.5 $DESTDIR/share/man/man5/rc.conf.5
35 install -Dm0755 rc.7 $DESTDIR/share/man/man7/rc.7
34 } 36 }