3c7673bc00
- Mark MAKE_JOBS_UNSAFE due to reported failures on systems with many cores - Mark BROKEN on 8.x - Avoid running pkg-install and displaying pkg-message in post-install target - Remove dirrms from plist - Canonicalize patch file names PR: 196344 Submitted by: jwbacon at tds.net (maintainer)
22 lines
422 B
Bash
22 lines
422 B
Bash
#!/bin/sh -e
|
|
|
|
if [ -z $EDITOR ]; then
|
|
EDITOR=vi
|
|
export EDITOR
|
|
fi
|
|
|
|
$EDITOR %%PREFIX%%/etc/condor_config.local
|
|
|
|
printf "Restart HTCondor? (y/[n]) "
|
|
read restart
|
|
|
|
if [ 0$restart = 0y ]; then
|
|
service condor stop
|
|
printf "\nCondor processes running after stop:\n\n"
|
|
ps ax | grep condor
|
|
|
|
service condor start
|
|
sleep 5
|
|
printf "\nCondor processes running after start:\n\n"
|
|
ps ax | grep condor
|
|
fi
|