forked from Lainports/freebsd-ports
/var/portbuild is the new designated home of the portbuild setup, and is expected to be a symlink to wherever you choose to put the stuff. Also, change reportload to use /var/portbuild to store temporary files. Seems there are some bugs in the null mount code that make the files inaccessible if you are using an NFS root.
14 lines
188 B
Bash
Executable file
14 lines
188 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ "$1" != "start" ]; then exit; fi
|
|
|
|
pb=/var/portbuild
|
|
s=$pb/scripts/reportload
|
|
|
|
echo -n ' chroot'
|
|
rm -rf $pb/*/chroot/*
|
|
|
|
if [ -x $s ]; then
|
|
$s &
|
|
echo -n ' reportload'
|
|
fi
|