mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
15d5069eb1
script so that a rebooting machine doesn't join the cluster in an unclean state.
13 lines
150 B
Bash
Executable File
13 lines
150 B
Bash
Executable File
#!/bin/sh
|
|
|
|
b=/a/asami/portbuild
|
|
s=$b/scripts/reportload
|
|
|
|
echo -n ' chroot'
|
|
rm -rf $b/*/chroot/*
|
|
|
|
if [ -x $s ]; then
|
|
$s &
|
|
echo -n ' reportload'
|
|
fi
|