forked from Lainports/freebsd-ports
16 lines
354 B
Bash
Executable file
16 lines
354 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# This is run on the clients to report their loads to the server.
|
|
|
|
# configurable variables
|
|
pb=/var/portbuild
|
|
arch=$1
|
|
|
|
. ${pb}/${arch}/portbuild.conf
|
|
if [ -f ${pb}/${arch}/portbuild.$(hostname) ]; then
|
|
. ${pb}/${arch}/portbuild.$(hostname)
|
|
fi
|
|
|
|
num=$(echo $(ls -1d ${scratchdir}/*/chroot/*/used 2>/dev/null| wc -l))
|
|
echo -n "$num "
|
|
uptime
|