Add mirror-file-generator tool

This commit is contained in:
GRMrGecko 2024-02-17 00:58:14 -06:00
parent bddefc4778
commit 05e9ea2653
8 changed files with 785 additions and 3 deletions

151
README.md
View File

@ -434,3 +434,154 @@ apt install bash zsh sendmail git awscli s3cmd lftp wget curl rsync
```bash
yay -S bash zsh sendmail git aws-cli-git s3cmd lftp wget curl rsync
```
# mirror-file-generator
A tool to generate common mirror info files at the mirror document root.
## Configuration of modules
This tool utilizes the same config file as mirror-sync, and shares the following configurations.
* repo - Used to verify a module is the same repo under the mirror.
* sync_method - Used to determine if qfm mirror.
* timestamp - Used for sync time.
* dusum - Used for disk usage summary.
The tool also adds the following repo
### section
What section to associate the repo with.
### repo_title
A title for the repo to show instead of the directory name.
### repo_icon
The repo icon, will default to tux if not defined. The icon can be defined as an http(s) link, file path, a file stored in the template directory, or png image name from [Dashboard Icons](https://github.com/walkxcode/dashboard-icons/tree/main/png). The script will automatically make a copy or download the icon to the image folder.
### repo_descriotion
A description to show at the bottom of the repo card.
### disable_size_calc
Should be set to a 1 if you do not want a size to be calculated.
### timestamp_file_stat
If you do not have a timestamp file with the UNIX timestamp of the last sync, but there is a file or folder that is updated when changes are made. You can specify the path to that file or folder here and the script will stat it to determine the last sync time.
## Configuration of custom modules
If you have a repo that is not synced via the mirror-sync, but want to customize its look on the generated index.html. You can define a list of custom modules with the `CUSTOM_MODULES` variable, then define any of the following configurations.
* repo
* section
* repo_title
* repo_icon
* repo_description
* disable_size_calc
* timestamp_file_stat
All of the above configurations behave the same way a regular module behaves.
### Example
```bash
CUSTOM_MODULES="example example2"
example_repo='/home/mirror/http/'
example_section="official"
example_repo_title="Test repo"
example_repo_icon="terminal.png"
example_repo_descriont="Test, this is a test."
example2_repo='/home/mirror/windows/'
example2_repo_icon="windows.png"
```
## Mirrors
You can define multiple mirrors for this tool to generate files for. Each mirror can have their own templates and repos, and are configured similar to how modules are configured. As such, it is worth maybe pre-pending `mirror_` to your mirror name.
### path
The path to the mirror under which repos are stored.
### title
A title for the mirror, defaults to the name if unset.
### logo
The logo, will default to tux if not defined. The logo can be defined as an http(s) link, file path, a file stored in the template directory, or png image name from [Dashboard Icons](https://github.com/walkxcode/dashboard-icons/tree/main/png). The script will automatically make a copy or download the icon to the image folder.
### description
A description to place below the logo that can be HTML formatted.
### provider_site
A site for the global footer generation.
### provider_name
A name for the global footer generation.
### Example
```bash
MIRRORS="mirror_example"
mirror_example_path="/home/mirror/mirror_docroot"
mirror_example_name="My company"
mirror_example_logo="http://example.com/logo.png"
mirror_example_description="A public mirror provided by this cool company."
mirror_example_provider_site="http://www.example.com/"
mirror_example_provider_name="Company"
```
## Sections
You can define multiple sections for the index.html with `SECTIONS` variable, it defaults to `official unofficial`. You can then set a default section with `section_default`, which defaults to `unofficial`. A title is auto generated as `{SECTION} Mirrors`, which you can customize with a variable named `section_{SECTION}_title`.
## Templates
Where templates are stored is configured by `template_dir` which defaults to `/usr/local/share/file-generator-templates`. Default files should be stored under the `default` sub directory, and any customizations to individual mirrors should be saved under a sub directory with that mirror's name. You can add icons/logos into these template directories as well.
Default templates:
* header.html - The main index header.
* secion.thml - Template for a secion.
* repo.html - The repo card template.
* footer.html - The footer of the index.
* footer.txt - Template for the global footer file.
## Configurations of general defaults.
### index_generate
Rather or not to generate the index.html file.
1. Enabled
0. Disabled
### index_file_name
If your index file name is different, you can adjust here.
### footer_generate
Rather or not to generate a footer file that can be configured as the mirror's global footer.
1. Enabled
0. Disbaled
### footer_file_name
Alternative file name for the footer file.
### dir_sizes_generate
Rather or not to generate directory sizes file.
1. Enabled
0. Disbaled
### dir_sizes_file_name
Alternative file name for directory sizes file.
### dir_sizes_unknown_path
Path to store directory size summaries for unknown repos.
### dir_sizes_human_readable
Should make human readable or output in kbytes.
1. Human readable
0. Kbytes
### icons_dir_name
Where to store logos and icons.
### icons_default_source
The default URL to pull icons from, defaults to [Dashboard Icons](https://github.com/walkxcode/dashboard-icons/tree/main/png).
### icons_default_img
A default file to use if icon or logo defined either isn't defined or isn't accessible.

View File

@ -0,0 +1,2 @@
</div>
</body>

View File

@ -0,0 +1 @@
Provided by: <a href="${provider_site}">${provider_name}</a>

View File

@ -0,0 +1,99 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>${title}</title>
<style type="text/css">
#header {
width: 100%;
}
#logo {
max-width: 500px;
width: 100%;
margin: 0 auto;
display: block;
}
.mirror-description {
max-width: 900px;
width: 100%;
margin: 0 auto;
padding-top: 20px;
padding-bottom: 20px;
}
.repo-list {
max-width: 1050px;
width: 100%;
margin: 0 auto;
padding-bottom: 40px;
text-align: center;
}
.repo-list a:link {
color: #000;
text-decoration: none;
}
.repo {
padding: 10px 10px;
width: 500px;
min-height: 96px;
height: auto;
box-sizing: border-box;
margin: 5px 5px;
background-color: #F0F0F0;
border-radius: 15px;
display: inline-block;
cursor: pointer;
color: #000;
text-decoration: none;
}
.repo-icon {
width: 15%;
min-width: 56px;
height: auto;
float: left;
padding: 5px;
padding-right: 15px;
}
.repo-body {
display: block;
text-align: left;
}
.repo-title {
font-weight: bold;
}
.repo-size {
font-size: 11pt;
}
.repo-sync {
font-size: 11pt;
}
.repo-desc {
font-style: italic;
}
.repo-section {
font-weight: bold;
text-align: left;
width: 100%;
display: block;
padding-top: 5px;
padding-bottom: 5px;
}
@media (max-width: 540px) {
.repo {
max-width: 500px;
width: auto;
}
}
</style>
</head>
<body>
<div class="header">
<img id="logo" src="${logo_relative}" alt="${title}" />
<div class="mirror-description">
${description}
</div>
</div>
<div class="repo-list">

View File

@ -0,0 +1,13 @@
<a href="${repo_path}">
<div class="repo">
<img class="repo-icon" src="${repo_icon}" alt="${repo_title}" />
<div class="repo-body">
<div class="repo-title">${repo_title}</div>
<div class="repo-size">Size: ${repo_size}</div>
<div class="repo-sync">Last Sync: ${repo_sync_time}</div>
<div class="repo-desc">
${repo_description}
</div>
</div>
</div>
</a>

View File

@ -0,0 +1 @@
<div class="repo-section">${section_title}</div>

515
mirror-file-generator.sh Normal file
View File

@ -0,0 +1,515 @@
#!/bin/bash
# This script is designed to generate some files at the top level of every mirror.
#
# The files generated are:
# index.html
# footer.txt
# DIRECTORY_SIZES.TXT
#
PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:$HOME/.local/bin:$HOME/bin"
# Variables about this program.
PROGRAM="mirror-file-generator"
VERSION="20240217"
PIDFILE="/tmp/$PROGRAM.pid"
LOGFILE="/var/log/mirror-sync/$PROGRAM.log"
# Default variables
SECTIONS="official unofficial"
section_default="unofficial"
template_dir="/usr/local/share/file-generator-templates"
index_generate=1
index_file_name="index.html"
footer_generate=1
footer_file_name="footer.txt"
dir_sizes_generate=1
dir_sizes_file_name="DIRECTORY_SIZES.TXT"
dir_sizes_unknown_path="/home/mirror/dusum/unknown_dirs"
dir_sizes_human_readable=1
icons_dir_name="img"
icons_default_source="https://raw.githubusercontent.com/walkxcode/dashboard-icons/main/png"
icons_default_img="tux.png"
# Prevent run as root.
if (( EUID == 0 )); then
echo "Do not mirror as root."
exit 1
fi
# Load the required configuration file or quit.
if [[ -f /etc/mirror-sync.conf ]]; then
# shellcheck source=/dev/null
source /etc/mirror-sync.conf
else
echo "No configuration file defined, please setup a proper configuration file."
exit 1
fi
# Print the help for this command.
print_help() {
echo "Mirror File Generator (${VERSION})"
echo
echo "Usage:"
echo "$0 [--help|--version|--update-unknown-dir-size] [{mirror}]"
echo
echo "Available mirrors:"
for MIRROR in ${MIRRORS:?}; do
echo "$MIRROR"
done
echo
echo "Note: Defaults to generating files for all mirrors."
exit
}
# Output message in log format and to logger.
log() {
msg="$1"
echo "$(date --rfc-3339=seconds) $(hostname -s) ${PROGRAM}[$$]: $msg"
}
# Escape characters that are not HTML safe to ensure
html_encode() {
local s
s=${1//&/\&amp;}
s=${s//</\&lt;}
s=${s//>/\&gt;}
s=${s//'"'/\&quot;}
printf -- %s "$s"
}
# Find the template file path.
template_file() {
local file=$1
# If the mirror has an override, provide it. Otherwise, provide default path.
if [[ -e "$template_dir/$mirror/$file" ]]; then
echo "$template_dir/$mirror/$file"
else
echo "$template_dir/default/$file"
fi
}
# Copy an image and return the path to the copied image.
image_copy() {
# Get the requested file.
local file=$1
if [[ -z $file ]]; then
return
fi
# Get the file name in which to save the file as. Would typically be logo or the directory name of the repo.
local file_name=$2
if [[ -z $file_name ]]; then
return
fi
## Extract the extension to make a proper save path with the file name and extension.
local extension="${file##*.}"
extension="${extension%\?*}"
local save_path="$path/$icons_dir_name/$file_name.$extension"
local http_code
# If the file isn't already saved, attempt to grab it.
if [[ ! -e "$save_path" ]]; then
# If http, use curl to grab the image.
if [[ "$file" =~ ^http(s|)\:\/\/ ]]; then
http_code=$(curl -s --write-out "%{http_code}" -o "$save_path" "$file")
# If failure, and is not the default image, attempt to grab the default file.
if [[ $? -ne 0 ]] || ((http_code!=200)) && [[ "$file" != "$icons_default_img" ]]; then
image_copy "$icons_default_img" "$file_name"
return
fi
# If the file exists, copy it.
elif [[ -f $file ]]; then
cp "$file" "$save_path"
else
# Check to see if a template file exists with the file name.
local t_file
t_file=$(template_file "$file")
# If the file exists, copy it.
if [[ -f $t_file ]]; then
cp "$t_file" "$save_path"
elif [[ "$file" != "$icons_default_source/$file" ]]; then
# If nothing else exists, try grabbing from the default source.
image_copy "$icons_default_source/$file" "$file_name"
return
fi
fi
fi
# Return the save relative path.
echo "$icons_dir_name/$file_name.$extension"
}
# Cli options.
update_unknown_dir_size=0
selected_mirrors=()
# Parse arguments.
while (( $# > 0 )); do
case "$1" in
# If we should update directory size summaries for unknown repos.
-u|--update-unknown-dir-size)
update_unknown_dir_size=1
shift
;;
# If help is requested, print it.
-h|h|help|--help)
print_help "$@"
;;
# Print version.
-v|--version)
echo "Mirror File Generator (${VERSION})"
exit 0
;;
# Check what mirror is requested.
*)
mirror="$1"
shift
# Verify that the mirror exists.
foundMirror=""
for MIRROR in ${MIRRORS:?}; do
if [[ "$mirror" == "$MIRROR" ]]; then
# Verify the path is configured for this mirror.
eval path="\${${MIRROR}_path:-}"
if [[ -z $path ]] || [[ ! -e $path ]]; then
echo "The mirror $MIRROR is missing the path"
exit 1
fi
foundMirror="$MIRROR"
fi
done
# If the mirror wasn't found, quit.
if [[ -z $foundMirror ]]; then
echo "Unknown mirror '$1'"
echo
print_help "$@"
fi
# Add mirror to list.
# We are purposely adding quotes to match the space.
# shellcheck disable=SC2076
if [[ ! " ${selected_mirrors[*]} " =~ " ${foundMirror} " ]]; then
selected_mirrors+=("$foundMirror")
fi
;;
esac
done
# Redirect stdout to both stdout and log file.
exec 1> >(tee -a "$LOGFILE")
# Redirect errors to stdout so they also are logged.
exec 2>&1
# Check existing pid file.
if [[ -f $PIDFILE ]]; then
PID=$(cat "$PIDFILE")
# Prevent double locks.
if [[ $PID == "$BASHPID" ]]; then
log "Double lock detected."
exit 1
fi
# Check if PID is active.
if ps -p "$PID" >/dev/null; then
log "A sync is already in progress for ${MODULE} with pid ${PID}."
exit 1
fi
fi
# Create a new pid file for this process.
echo $BASHPID >"$PIDFILE"
# On exit, remove pid file.
trap 'rm -f "$PIDFILE"' EXIT
# If no mirrors were selected, default to all.
if (( ${#selected_mirrors[@]} == 0 )); then
for MIRROR in ${MIRRORS:?}; do
# Verify the path is configured for this mirror.
eval path="\${${MIRROR}_path:-}"
if [[ -z $path ]] || [[ ! -e $path ]]; then
log "The mirror $MIRROR is missing the path"
exit 1
fi
# Add mirror to the list.
# We are purposely adding quotes to match the space.
# shellcheck disable=SC2076
if [[ ! " ${selected_mirrors[*]} " =~ " ${MIRROR} " ]]; then
selected_mirrors+=("$MIRROR")
fi
done
fi
# Scan each mirror and build files.
for ((i=0; i<${#selected_mirrors[@]}; i++)); do
mirror=${selected_mirrors[i]}
# Read all mirror configs.
eval path="\${${mirror}_path:-}"
eval title="\${${mirror}_title:-$mirror}"
title=$(html_encode "$title")
export title
eval logo="\${${mirror}_logo:-}"
eval description="\${${mirror}_description:-}"
export description
eval provider_site="\${${mirror}_provider_site:-}"
provider_site=$(html_encode "$provider_site")
export provider_site
eval provider_name="\${${mirror}_provider_name:-}"
provider_name=$(html_encode "$provider_name")
export provider_name
# If the image directory isn't there, make it.
if [[ ! -d "$path/$icons_dir_name" ]]; then
mkdir -p "$path/$icons_dir_name"
fi
# Grab the image and export the relative path for templates.
logo_relative=$(html_encode "$(image_copy "${logo:-$icons_default_img}" logo)")
export logo_relative
# Default index file path.
index_file_path="$path/$index_file_name"
index_file_temp="$index_file_path.build"
# If the index file should be generated, add the header and start sections.
if ((index_generate)); then
# Make temp file with the header templated filled out with exported variables.
log "Generating index for $mirror at $index_file_path"
envsubst < "$(template_file header.html)" > "$index_file_temp"
# With each section, make a new section temporary file to build section lists.
for SECTION in $SECTIONS; do
eval section_title="\${section_${SECTION}_title:-${SECTION^} Mirrors}"
section_title=$(html_encode "$section_title")
export section_title
envsubst < "$(template_file section.html)" > "$index_file_temp.$SECTION"
done
fi
# If directory sizes should generate, start the file with current date.
dir_sizes_file_path="$path/$dir_sizes_file_name"
if ((dir_sizes_generate)); then
log "Generating directory sizes file for $mirror at $dir_sizes_file_path"
date > "$dir_sizes_file_path"
fi
# Keep record of total kbytes of repo sizes.
totalKBytes=0
# For each directory under the mirror, generate repo data.
for dir in "$path"/*; do
# Some repos may be built with symbolic links, so get the real path.
real_dir=$(realpath "$dir")
# If the real path isn't a directory, ignore this path.
if ! [[ -d $real_dir ]]; then
continue
fi
# Get the directory name.
dir_name=$(basename "$dir")
# If this directory is the images directory, we should ignore it.
if [[ "$dir_name" == "$icons_dir_name" ]]; then
continue
fi
log "Checking repo $dir_name"
# Check each module to see if this directory is a module's repo.
for MODULE in ${MODULES:?}; do
# Get the repo with the trailing slash removed.
eval repo="\${${MODULE}_repo%/}"
# Get the sync method for QFM detection.
eval sync_method="\${${MODULE}_sync_method:-rsync}"
# Deterimine if this module is this repo.
this_repo=0
if [[ "${repo:?}" == "$real_dir" ]]; then
this_repo=1
# If QFM module, we need to determine sub path using QFM logic.
elif [[ "${sync_method:?}" == "qfm" ]]; then
# We need a mapping so we can know the final directory name.
MODULEMAPPING=(
fedora-alt alt
fedora-archive archive
fedora-enchilada fedora
fedora-epel epel
fedora-secondary fedora-secondary
)
# Helper function to map to dir name.
module_dir() {
for ((M=0; M<${#MODULEMAPPING[@]}; M++)); do
N=$((M+1))
if [[ "${MODULEMAPPING[$M]}" == "$1" ]]; then
echo "${MODULEMAPPING[$N]}"
break
fi
M=$N
done
}
# Get what modules this module defines to get with QFM.
eval modules="\$${MODULE}_modules"
# Determine if any of the modules match this repo directory.
docroot=$repo
for module in ${modules:?}; do
if [[ "$docroot/$(module_dir "$module")" == "$real_dir" ]]; then
this_repo=1
break
fi
done
fi
# If this module was identified as this repo, grab configs.
if ((this_repo)); then
log "Found repo configurations"
eval timestamp="\${${MODULE}_timestamp:-}"
eval dusum="\${${MODULE}_dusum:-}"
eval section="\${${MODULE}_section:-}"
eval repo_title="\${${MODULE}_repo_title:-}"
eval icon="\${${MODULE}_repo_icon:-}"
eval repo_description="\${${MODULE}_repo_description:-}"
eval disable_size_calc="\${${CUSTOM_MODULE}_disable_size_calc:-0}"
eval timestamp_file_stat="\${${CUSTOM_MODULE}_timestamp_file_stat:-}"
# If a timestamp file exists, grab and format the date.
if [[ -f ${timestamp:?} ]]; then
repo_sync_time=$(date -d "@$(cat "${timestamp:?}")" '+%c')
fi
# If a directory usage summary exists, parse the size.
if [[ -f ${dusum:?} ]]; then
repo_size_kb=$(grep "$real_dir" "${dusum:?}" | awk '{print $1}')
if [[ -n $repo_size_kb ]]; then
totalKBytes=$((totalKBytes+repo_size_kb))
repo_size=$(echo "$repo_size_kb*1024" | bc | numfmt --to=iec)
fi
fi
break
fi
done
# To allow customization of non synced modules, check each module.
for CUSTOM_MODULE in ${CUSTOM_MODULES:?}; do
# Get the repo with trailing slash removed.
eval repo="\${${CUSTOM_MODULE}_repo%/}"
# Confirm if this custom module is this repo, and parse configs if it is.
if [[ "${repo:?}" == "$real_dir" ]]; then
log "Found custom configurations"
eval section="\${${CUSTOM_MODULE}_section:-}"
eval repo_title="\${${CUSTOM_MODULE}_repo_title:-}"
eval icon="\${${CUSTOM_MODULE}_repo_icon:-}"
eval repo_description="\${${CUSTOM_MODULE}_repo_description:-}"
eval disable_size_calc="\${${CUSTOM_MODULE}_disable_size_calc:-0}"
eval timestamp_file_stat="\${${CUSTOM_MODULE}_timestamp_file_stat:-}"
fi
done
# If a timstamp file stat is configured and the path exists, get the timestamp via stat.
if [[ -e ${timestamp_file_stat:-} ]]; then
# Get all timestamps, sort, and get the latest entry.
latest_unix_stat=$(stat --format='%W %X %Y %Z' "$timestamp_file_stat" | tr ' ' '\n' | sort -nr | head -n1)
# Format the timestamp.
repo_sync_time=$(date -d "@$(cat "$latest_unix_stat")" '+%c')
fi
# HTML encode and export variables for subsitution.
repo_path="$dir_name/"
export repo_path
repo_title=$(html_encode "${repo_title:-$dir_name}")
export repo_title
repo_description=$(html_encode "${repo_description:-}")
export repo_description
repo_sync_time=$(html_encode "${repo_sync_time:-Unknown}")
export repo_sync_time
# Grab the icon and get its relative path.
repo_icon=$(html_encode "$(image_copy "${icon:-$icons_default_img}" "$dir_name")")
export repo_icon
# If repo size is undefined, check if an unknown repo directory size exists.
if [[ -z ${repo_size:-} ]]; then
unknown_path="$dir_sizes_unknown_path/$mirror/$dir_name"
# If we should update the directory usage sizes, do so.
if ((update_unknown_dir_size)) && ((${disable_size_calc:-0} == 0)); then
log "Generating sum file for $dir_name"
# If the mirror dir under the unknown repo path doesn't exist, create it.
if [[ ! -e "$dir_sizes_unknown_path/$mirror" ]]; then
mkdir -p "$dir_sizes_unknown_path/$mirror"
fi
# Get a sum, store to variable first to avoid having an empty file when another cron finishes.
SUM=$({
du -s "$real_dir"
} 2>/dev/null)
# Save sum to file.
echo "$SUM" > "$unknown_path"
fi
# If the unknown repo size path exists, grab it.
if [[ -f $unknown_path ]]; then
repo_size_kb=$(grep "$real_dir" "$unknown_path" | awk '{print $1}')
if [[ -n $repo_size_kb ]]; then
totalKBytes=$((totalKBytes+repo_size_kb))
repo_size=$(echo "$repo_size_kb*1024" | bc | numfmt --to=iec)
fi
fi
fi
# Export the repo size.
repo_size=$(html_encode "${repo_size:-Unknown}")
export repo_size
# If we're generating the index.html, do so.
if ((index_generate)); then
section=${section:-$section_default}
envsubst < "$(template_file repo.html)" >> "$index_file_temp.$section"
fi
# If we're generating the repo size file, add to it.
if ((dir_sizes_generate)); then
if ((dir_sizes_human_readable)); then
printf "%-5s %s\n" "$repo_size" "$dir_name" >> "$dir_sizes_file_path"
else
printf "%-12s %s\n" "$repo_size_kb" "$dir_name" >> "$dir_sizes_file_path"
fi
fi
# Unset all vars for next repo.
unset repo_path repo_icon repo_title repo_size repo_size_kb repo_sync_time repo_description timestamp dusum section icon
done
# If the index should be generated, add each section and footer.
if ((index_generate)); then
# Add all sections and remove teh temp file.
for SECTION in $SECTIONS; do
cat "$index_file_temp.$SECTION" >> "$index_file_temp"
rm -f "$index_file_temp.$SECTION"
done
# Add footer subsituting environment variables.
envsubst < "$(template_file footer.html)" >> "$index_file_temp"
# Verify the index temp contains a repo before moving into place.
if grep -q "Last Sync:" "$index_file_temp"; then
[[ -f $index_file_path ]] && rm -f "$index_file_path"
mv "$index_file_temp" "$index_file_path"
fi
fi
# If we are generating the directory sizes file, add the total.
if ((dir_sizes_generate)); then
if ((dir_sizes_human_readable)); then
printf "%-5s %s\n" "$(echo "$totalKBytes*1024" | bc | numfmt --to=iec)" "total" >> "$dir_sizes_file_path"
else
printf "%-12s %s\n" "$totalKBytes" "total" >> "$dir_sizes_file_path"
fi
fi
# If we should generate the gloabl footer, do so.
if ((footer_generate)); then
log "Generating footer for $mirror at $path/$footer_file_name"
envsubst < "$(template_file footer.txt)" > "$path/$footer_file_name"
fi
done

View File

@ -1,11 +1,11 @@
#!/bin/bash
# This script is designed to handle mirror syncing tasks from external mirrors.
# Each mirror is handled within a module which can be configured via the configuration file /etc/mirror-sync.conf.
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/home/mirror/.local/bin:/home/mirror/bin
PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:$HOME/.local/bin:$HOME/bin"
# Variables for trace generation.
PROGRAM="mirror-sync"
VERSION="20240124"
VERSION="20240217"
TRACEHOST=$(hostname -f)
mirror_hostname=$(hostname -f)
DATE_STARTED=$(LC_ALL=POSIX LANG=POSIX date -u -R)
@ -66,7 +66,7 @@ print_help() {
echo "Mirror Sync (${VERSION})"
echo
echo "Usage:"
echo "$0 [--help|--update-support-utilities] {module} [--force]"
echo "$0 [--help|--update-support-utilities|--version] {module} [--force]"
echo
echo "Available modules:"
for MODULE in ${MODULES:?}; do