mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-07 22:58:11 +00:00
cad6c0c117
configurable limits on jobs on a per queue basis as well as for the total queue system. It is based on the de facto NQS standards and is interoperable with commercial NQS products. PR: 6699 Submitted by: Tony Maher <tonym@angis.org.au>
11 lines
176 B
Bash
11 lines
176 B
Bash
#!/bin/sh
|
|
|
|
if grep -q nqs /etc/syslog.conf
|
|
then :
|
|
else
|
|
echo "local0.* /var/log/nqs" >> /etc/syslog.conf
|
|
echo ""
|
|
echo "/etc/syslog modified to support nqs"
|
|
echo ""
|
|
fi
|