Update 93-openvpn.sh

This commit is contained in:
Alexandre
2023-12-29 13:32:53 +01:00
committed by GitHub
parent d4b2aafffa
commit 0a23fcd2c0

View File

@@ -23,6 +23,14 @@ if bashio::config.true 'openvpn_enabled'; then
# Get variable
file="$1"
# Double check exists
if [ !-f "$file" ]; then
bashio::warning "$file not found"
return 1
fi
cp "$file" "$file2"
# Loop through each line of the input file
while read line
do
@@ -33,19 +41,21 @@ if bashio::config.true 'openvpn_enabled'; then
# Check if the txt file exists
if [ ! -f "$file_name" ]; then
# Check if the txt file exists in the /config/openvpn/ directory
if [ -f "/config/openvpn/${file_name##*/}" ]; then
if [ -f "/etc/openvpn/custom/${file_name##*/}" ]; then
# Append /config/openvpn/ in front of the original txt file in the ovpn file
sed -i "s|$file_name|/config/openvpn/${file_name##*/}|g" "$file"
sed -i "s|$file_name|/etc/openvpn/custom/${file_name##*/}|g" "$file"
# Print a success message
bashio::log.warning "Appended /config/openvpn/ to ${file_name##*/} in $file"
bashio::log.warning "Appended /etc/openvpn/custom/ to ${file_name##*/} in $file"
else
# Print an error message
bashio::log.warning "$file_name is referenced in your ovpn file but does not exist, and can't be found either in the /config/openvpn/ directory"
bashio::log.warning "$file_name is referenced in your ovpn file but does not exist in the $TRANSMISSION_HOME/openvpn folder"
sleep 5
fi
fi
fi
done < "$file"
done < "$file2"
rm "$file2"
# Standardize lf
dos2unix "$file"