Package: slurmd Version: 14.03.9-5 Severity: normal Dear Maintainer,
While debugging the slurmd daemon, we were unable to start it using the "startclean" option of the init.d script. We find this be due to a trivial typo on line 240, where "start" is mispelled as "star". Please correct. Thank you, Mirto Musci -- System Information: Debian Release: 8.1 Architecture: amd64 (x86_64) Kernel: Linux 3.16.0-4-amd64 (SMP w/32 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Init: systemd (via /run/systemd/system) -- Configuration Files: /etc/init.d/slurmd changed: [...] case "$1" in start) start slurmd "$SLURMD_OPTIONS" ;; startclean) SLURMD_OPTIONS="-c $SLURMD_OPTIONS" ---> start slurmd "$SLURMD_OPTIONS" ;; stop) slurmstop ;; status) for prog in $DAEMONLIST ; do slurmstatus $prog done ;; restart) $0 stop $0 start ;; force-reload) $0 stop $0 start ;; condrestart) if [ -f /var/lock/subsys/slurm ]; then for prog in $DAEMONLIST ; do stop $prog start $prog done fi ;; reconfig) for prog in $DAEMONLIST ; do PIDFILE=$(getpidfile $prog) start-stop-daemon --stop --signal HUP --pidfile \ "$PIDFILE" --quiet $prog done ;; test) for prog in $DAEMONLIST ; do echo "$prog runs here" done ;; *) echo "Usage: $0 {start|startclean|stop|status|restart|reconfig|condrestart|test}" exit 1 ;; esac