summaryrefslogtreecommitdiff
blob: 296afaf9421c29882918543ac77562d6728834ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

extra_commands="reload"

[[ -f /etc/conf.d/slurm ]] && . /etc/conf.d/slurm

depend() {
	local _need
	[[ ${SLURM_USE_MUNGE} -ne 0 ]] && _need="${_need} munged"
	[[ ${SLURM_USE_YPBIND} -ne 0 ]] && _need="${_need} ypbind"
	after logger
	need ${_need}
}

create_folder_and_set_permission() {
    folder=${1}
    # Fix permissions (/tmp is wiped at boot)
    if [[ "${folder}" == "/tmp" ]]; then
        eerror "SLURM: folder == ${folder} == /tmp"
        exit
    fi
    if [[ "${folder}" == "/var/tmp" ]]; then
        eerror "SLURM: folder == ${folder} == /var/tmp"
        exit
    fi
    checkpath -d -o slurm:slurm ${folder}
}

checkconfig() {
	if [ ! -e "/etc/slurm/slurmdbd.conf" ]; then
		eerror "Missing config /etc/slurm/slurmdbd.conf"
		return 1
	fi

	# Make sure folders exists
	. /etc/slurm/slurm.conf
	folders=(${SlurmdSpoolDir} `dirname ${SlurmctldLogFile}` `dirname ${SlurmctldPidFile}` `dirname ${SlurmdLogFile}` `dirname ${SlurmdPidFile}` ${SlurmdSpoolDir} ${StateSaveLocation})
	for folder in ${folders[*]}; do
		create_folder_and_set_permission ${folder}
	done
}

start() {
	ebegin "Starting slurmdb daemon"
	checkconfig
	start-stop-daemon --start --quiet --background \
		--pidfile /var/run/slurm/slurmdbd.pid \
		--user slurm \
		--group slurm \
		--exec /usr/sbin/slurmdbd -- ${SLURMD_OPTS}
	eend $?
}

stop() {
	ebegin "Stopping slurmdb daemon"
	start-stop-daemon --stop --pidfile /var/run/slurm/slurmdbd.pid
	eend $?
}

reload() {
	ebegin "Reloading slurmdb daemon configuration"
	start-stop-daemon --signal HUP --pidfile /var/run/slurm/slurmdbd.pid
	eend $?
}