mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 07:00:31 -04:00
10 lines
180 B
Bash
Executable file
10 lines
180 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Start the checkmachines script in the background, at system startup.
|
|
|
|
s=/var/portbuild/scripts/checkmachines
|
|
|
|
if [ -x $s ]; then
|
|
$s &
|
|
echo -n ' checkmachines'
|
|
fi
|