freebsd-ports/sysutils/slurm-hpc/files/slurmd.in
Boris Samorodov 3110f294ef SLURM is an open-source resource manager designed for *nix clusters of all
sizes. It provides three key functions. First it allocates exclusive and/or
non-exclusive access to resources (computer nodes) to users for some duration
of time so they can perform work. Second, it provides a framework for starting,
executing, and monitoring work (typically a parallel job) on a set of allocated
nodes. Finally, it arbitrates contention for resources by managing a queue of
pending work.

WWW: https://computing.llnl.gov/linux/slurm/

PR:		ports/184215
Submitted by:	Jason Bacon <jwbacon@tds.net>
2013-11-24 20:23:02 +00:00

43 lines
765 B
Bash

#!/bin/sh
# PROVIDE: slurmd
# REQUIRE: DAEMON munge
# BEFORE: LOGIN
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# slurmd_enable (bool): Set to NO by default.
# Set it to YES to enable slurmd.
#
. /etc/rc.subr
name="slurmd"
rcvar=slurmd_enable
pidfile=/var/run/$name.pid
load_rc_config $name
: ${slurmd_enable="NO"}
start_cmd=slurmd_start
stop_cmd=slurmd_stop
slurmd_start() {
checkyesno slurmd_enable && echo "Starting $name." && \
%%PREFIX%%/sbin/$name $slurmd_flags
}
slurmd_stop() {
if [ -e $pidfile ]; then
checkyesno slurmd_enable && echo "Stopping $name." && \
kill `cat $pidfile`
else
killall $name
fi
}
run_rc_command "$1"