mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-03 12:35:02 +00:00
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
|