--- mcore-src/trunk/mcore-tools/dracut/run-mcored.sh.in 2014/07/11 13:15:12 2327 +++ mcore-src/trunk/mcore-tools/dracut/mcored/run-mcored.sh.in 2014/07/11 13:58:30 2330 @@ -8,18 +8,23 @@ then # print ip config echo "Current ip settings:" + info "Current ip settings:" echo "$(ip addr)" + info "$(ip addr)" [ -w / ] || need_remount=1 if [[ ${need_remount} = 1 ]] then # remount /sysroot writeable echo "Remount /sysroot writeable" + info "Remount /sysroot writeable" mount -oremount,rw /sysroot else echo "Already a rw filesystem, remount not required" + info "Already a rw filesystem, remount not required" fi # start mcored echo "Starting mcore daemon" + info "Starting mcore daemon" export MROOT=/sysroot . @@CONFDDIR@@/mcored @@SBINDIR@@/sslsvd -U ${SSL_USER} -/ ${CHROOT_DIR} \ @@ -29,6 +34,7 @@ then # remount sysroot read-only echo "Remount /sysroot read-only" + info "Remount /sysroot read-only" mount -oremount,ro /sysroot fi fi