diff --git a/daemons/ganeti-noded b/daemons/ganeti-noded index 620f8809b9e6a2e2c61d1fd8c3ee5950abefc78c..c6ab69c047c71dac58c2beeb47da760ef326da53 100755 --- a/daemons/ganeti-noded +++ b/daemons/ganeti-noded @@ -30,6 +30,7 @@ import resource import traceback import BaseHTTPServer import simplejson +import errno from optparse import OptionParser @@ -536,6 +537,21 @@ def main(): print "Cluster configuration incomplete: '%s'" % str(err) sys.exit(5) + # create /var/run/ganeti if not existing, in order to take care of + # tmpfs /var/run + if not os.path.exists(constants.BDEV_CACHE_DIR): + try: + os.mkdir(constants.BDEV_CACHE_DIR, 0755) + except EnvironmentError, err: + if err.errno != errno.EEXIST: + print ("Node setup wrong, cannot create directory %s: %s" % + (constants.BDEV_CACHE_DIR, err)) + sys.exit(5) + if not os.path.isdir(constants.BDEV_CACHE_DIR): + print ("Node setup wrong, %s is not a directory" % + constants.BDEV_CACHE_DIR) + sys.exit(5) + # become a daemon if options.fork: createDaemon() diff --git a/doc/examples/ganeti.initd.in b/doc/examples/ganeti.initd.in index 99079fc4873c0ffb1ce54d2a240083817885b441..2d5219f742b28e2c229aa8d136e0efda1ae9e1e9 100644 --- a/doc/examples/ganeti.initd.in +++ b/doc/examples/ganeti.initd.in @@ -17,7 +17,6 @@ NAME=ganeti-noded NODED=@PREFIX@/sbin/ganeti-noded MASTER=@PREFIX@/sbin/ganeti-master SCRIPTNAME=@SYSCONFDIR@/init.d/ganeti -RUNDIR="@LOCALSTATEDIR@/run/ganeti" test -f $NODED || exit 0 @@ -56,7 +55,6 @@ case "$1" in start) log_daemon_msg "Starting $DESC" "$NAME" check_config - test -e "$RUNDIR" || mkdir -p "$RUNDIR" if start-stop-daemon --start --quiet --exec $NODED; then log_end_msg 0 else @@ -90,5 +88,3 @@ case "$1" in esac exit 0 - -# vim: set sw=4 sts=4 et foldmethod=marker :