Magellan Linux

Annotation of /mcore-src/trunk/mcore-tools/dracut/run-mcored.sh.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2298 - (hide annotations) (download)
Mon Jan 20 10:12:32 2014 UTC (10 years, 3 months ago) by niro
File size: 652 byte(s)
-only run mcored in the initrd if network was provided
1 niro 2042 #!/bin/sh
2    
3 niro 2297 if [ -x @@SBINDIR@@/sslsvd -a -x @@SBINDIR@@/mcored -a -f @@CONFDDIR@@/mcored ]
4 niro 2042 then
5 niro 2298 if getargbool 1 rd.mcored && getargbool 0 rd.neednet && NEEDNET=1
6 niro 2071 then
7 niro 2297 # print ip config
8     info "Current ip settings:"
9     info "$(ip addr)"
10     # remont /sysroot writeable
11     info "Remount /sysroot writeable"
12     mount -oremount,rw /sysroot
13     # start mcored
14     info "Starting mcore daemon"
15     export MROOT=/sysroot
16     . @@CONFDDIR@@/mcored
17     @@SBINDIR@@/sslsvd -U ${SSL_USER} -/ ${CHROOT_DIR} \
18     -Z ${SSL_CERT} -K ${SSL_KEY} \
19     0 6666 @@SBINDIR@@/mcored
20     # remount sysroot read-only
21     info "Remount /sysroot read-only"
22     mount -oremount,ro /sysroot
23 niro 2071 fi
24 niro 2042 fi