azure/files/usr/libexec/azure-optfix
Bastien Riviere 5e0648947d
Some checks are pending
build-ublue-custom / Build and push image (push) Waiting to run
chore: add optfix
2025-03-16 20:38:50 +01:00

27 lines
644 B
Bash
Executable file

#!/usr/bin/env bash
set -euo pipefail
SOURCE_DIR="/usr/lib/opt/"
TARGET_DIR="/var/opt/"
# Ensure the target directory exists
mkdir -p "$TARGET_DIR"
# Loop through directories in the source directory
for dir in "$SOURCE_DIR"*/; do
if [ -d "$dir" ]; then
# Get the base name of the directory
dir_name=$(basename "$dir")
# Check if the symlink already exists in the target directory
if [ -L "$TARGET_DIR/$dir_name" ]; then
echo "Symlink already exists for $dir_name, skipping."
continue
fi
# Create the symlink
ln -s "$dir" "$TARGET_DIR/$dir_name"
echo "Created symlink for $dir_name"
fi
done