diff options
author | Satoshi Asami <asami@FreeBSD.org> | 2000-09-27 01:41:44 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 2000-09-27 01:41:44 +0000 |
commit | 0d088a094b07daede9a3f93d896a2e57d86d53e8 (patch) | |
tree | ebfe1866dabef906e379af446c5ad690c78c9e66 /Tools/portbuild/scripts/reportload.sh | |
parent | A configuration file where all options reside. (diff) |
Pull in configuration variables from /var/portbuild/portbuild.conf.
/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.
Notes
Notes:
svn path=/head/; revision=33172
Diffstat (limited to 'Tools/portbuild/scripts/reportload.sh')
-rwxr-xr-x | Tools/portbuild/scripts/reportload.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/portbuild/scripts/reportload.sh b/Tools/portbuild/scripts/reportload.sh index b08a85ab31fa..a0e6cd27419f 100755 --- a/Tools/portbuild/scripts/reportload.sh +++ b/Tools/portbuild/scripts/reportload.sh @@ -2,11 +2,11 @@ if [ "$1" != "start" ]; then exit; fi -b=/a/asami/portbuild -s=$b/scripts/reportload +pb=/var/portbuild +s=$pb/scripts/reportload echo -n ' chroot' -rm -rf $b/*/chroot/* +rm -rf $pb/*/chroot/* if [ -x $s ]; then $s & |