12 lines
137 B
Bash
Executable File
12 lines
137 B
Bash
Executable File
#!/bin/sh -
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ -f /etc/weekly.local ]; then
|
|
echo ""
|
|
echo "Running weekly.local:"
|
|
|
|
sh /etc/weekly.local
|
|
fi
|