mirror of
https://git.freebsd.org/ports.git
synced 2025-05-04 23:47:37 -04:00
Update to 14.11.8 Upstream is standardizing on "slurm-wlm", so we are renaming the port accordingly. PR: 200381 Approved by: maintainer
43 lines
797 B
Bash
43 lines
797 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: slurmctld
|
|
# REQUIRE: DAEMON munge
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
|
|
# to enable this service:
|
|
#
|
|
# slurmctld_enable (bool): Set to NO by default.
|
|
# Set it to YES to enable slurmctld.
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="slurmctld"
|
|
rcvar=slurmctld_enable
|
|
|
|
pidfile=/var/run/$name.pid
|
|
|
|
load_rc_config $name
|
|
|
|
: ${slurmctld_enable="NO"}
|
|
|
|
start_cmd=slurmctld_start
|
|
stop_cmd=slurmctld_stop
|
|
|
|
slurmctld_start() {
|
|
checkyesno slurmctld_enable && echo "Starting $name." && \
|
|
%%PREFIX%%/sbin/$name $slurmctld_flags
|
|
}
|
|
|
|
slurmctld_stop() {
|
|
if [ -e $pidfile ]; then
|
|
checkyesno slurmctld_enable && echo "Stopping $name." && \
|
|
kill `cat $pidfile`
|
|
else
|
|
killall $name
|
|
fi
|
|
}
|
|
|
|
run_rc_command "$1"
|