mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-08-03 11:50:32 +02:00
Github bot : script beautyshied
This commit is contained in:
@@ -9,50 +9,50 @@ set -e
|
|||||||
|
|
||||||
test_mount () {
|
test_mount () {
|
||||||
|
|
||||||
# Set initial test
|
# Set initial test
|
||||||
MOUNTED=false
|
MOUNTED=false
|
||||||
ERROR_MOUNT=false
|
ERROR_MOUNT=false
|
||||||
|
|
||||||
# Exit if not mounted
|
# Exit if not mounted
|
||||||
if ! mountpoint -q /mnt/"$diskname"; then
|
if ! mountpoint -q /mnt/"$diskname"; then
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Exit if can't write
|
|
||||||
# shellcheck disable=SC2015
|
|
||||||
mkdir "/mnt/$diskname/testaze" && touch "/mnt/$diskname/testaze/testaze" && rm -r "/mnt/$diskname/testaze" || ERROR_MOUNT=true
|
|
||||||
if [[ "$ERROR_MOUNT" == "true" ]]; then
|
|
||||||
# Test write permissions
|
|
||||||
if [[ "$MOUNTOPTIONS" == *"noserverino"* ]]; then
|
|
||||||
bashio::log.fatal "Disk is mounted, however unable to write in the shared disk. Please check UID/GID for permissions, and if the share is rw"
|
|
||||||
else
|
|
||||||
MOUNTOPTIONS="$MOUNTOPTIONS,noserverino"
|
|
||||||
echo "... testing with noserverino"
|
|
||||||
mount_drive "$MOUNTOPTIONS"
|
|
||||||
fi
|
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Set correctly mounted bit
|
# Exit if can't write
|
||||||
MOUNTED=true
|
# shellcheck disable=SC2015
|
||||||
|
mkdir "/mnt/$diskname/testaze" && touch "/mnt/$diskname/testaze/testaze" && rm -r "/mnt/$diskname/testaze" || ERROR_MOUNT=true
|
||||||
|
if [[ "$ERROR_MOUNT" == "true" ]]; then
|
||||||
|
# Test write permissions
|
||||||
|
if [[ "$MOUNTOPTIONS" == *"noserverino"* ]]; then
|
||||||
|
bashio::log.fatal "Disk is mounted, however unable to write in the shared disk. Please check UID/GID for permissions, and if the share is rw"
|
||||||
|
else
|
||||||
|
MOUNTOPTIONS="$MOUNTOPTIONS,noserverino"
|
||||||
|
echo "... testing with noserverino"
|
||||||
|
mount_drive "$MOUNTOPTIONS"
|
||||||
|
fi
|
||||||
return 0
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Set correctly mounted bit
|
||||||
|
MOUNTED=true
|
||||||
|
return 0
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mount_drive () {
|
mount_drive () {
|
||||||
|
|
||||||
# Define options
|
# Define options
|
||||||
MOUNTED=true
|
MOUNTED=true
|
||||||
MOUNTOPTIONS="$1"
|
MOUNTOPTIONS="$1"
|
||||||
|
|
||||||
# Try mounting
|
# Try mounting
|
||||||
mount -t cifs -o "$MOUNTOPTIONS" "$disk" /mnt/"$diskname" 2>ERRORCODE || MOUNTED=false
|
mount -t cifs -o "$MOUNTOPTIONS" "$disk" /mnt/"$diskname" 2>ERRORCODE || MOUNTED=false
|
||||||
|
|
||||||
# Test if succesful
|
# Test if succesful
|
||||||
if [[ "$MOUNTED" == "true" ]]; then
|
if [[ "$MOUNTED" == "true" ]]; then
|
||||||
# shellcheck disable=SC2015
|
# shellcheck disable=SC2015
|
||||||
test_mount
|
test_mount
|
||||||
fi
|
fi
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -189,18 +189,18 @@ if bashio::config.has_value 'networkdisks'; then
|
|||||||
# Manage output
|
# Manage output
|
||||||
if [ -n "$SMBVERS" ]; then
|
if [ -n "$SMBVERS" ]; then
|
||||||
case $SMBVERS in
|
case $SMBVERS in
|
||||||
202)
|
202)
|
||||||
SMBVERS="2.0"
|
SMBVERS="2.0"
|
||||||
;;
|
;;
|
||||||
21)
|
21)
|
||||||
SMBVERS="2.1"
|
SMBVERS="2.1"
|
||||||
;;
|
;;
|
||||||
302)
|
302)
|
||||||
SMBVERS="3.02"
|
SMBVERS="3.02"
|
||||||
;;
|
;;
|
||||||
311)
|
311)
|
||||||
SMBVERS="3.1.1"
|
SMBVERS="3.1.1"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
echo "...... SMB version detected : $SMBVERS"
|
echo "...... SMB version detected : $SMBVERS"
|
||||||
SMBVERS=",vers=$SMBVERS"
|
SMBVERS=",vers=$SMBVERS"
|
||||||
@@ -217,7 +217,7 @@ if bashio::config.has_value 'networkdisks'; then
|
|||||||
#######################################
|
#######################################
|
||||||
for SECVERS in "$SECVERS" ",sec=ntlmv2" ",sec=ntlmssp" ",sec=ntlmsspi" ",sec=krb5i" ",sec=krb5" ",sec=ntlm" ",sec=ntlmv2i"; do
|
for SECVERS in "$SECVERS" ",sec=ntlmv2" ",sec=ntlmssp" ",sec=ntlmsspi" ",sec=krb5i" ",sec=krb5" ",sec=ntlm" ",sec=ntlmv2i"; do
|
||||||
if [ "$MOUNTED" = false ]; then
|
if [ "$MOUNTED" = false ]; then
|
||||||
mount_drive "rw,file_mode=0775,dir_mode=0775,username=${USERNAME},password=${PASSWORD},nobrl${SMBVERS}${SECVERS}${PUID}${PGID}${CHARSET}${DOMAIN}"
|
mount_drive "rw,file_mode=0775,dir_mode=0775,username=${USERNAME},password=${PASSWORD},nobrl${SMBVERS}${SECVERS}${PUID}${PGID}${CHARSET}${DOMAIN}"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|||||||
@@ -83,9 +83,9 @@ fi
|
|||||||
echo ""
|
echo ""
|
||||||
bashio::log.green "Load environment variables from $CONFIGSOURCE if existing"
|
bashio::log.green "Load environment variables from $CONFIGSOURCE if existing"
|
||||||
if [[ "$CONFIGSOURCE" == "/config"* ]]; then
|
if [[ "$CONFIGSOURCE" == "/config"* ]]; then
|
||||||
bashio::log.green "If accessing the file with filebrowser it should be mapped to $CONFIGFILEBROWSER"
|
bashio::log.green "If accessing the file with filebrowser it should be mapped to $CONFIGFILEBROWSER"
|
||||||
else
|
else
|
||||||
bashio::log.green "If accessing the file with filebrowser it should be mapped to $CONFIGSOURCE"
|
bashio::log.green "If accessing the file with filebrowser it should be mapped to $CONFIGSOURCE"
|
||||||
fi
|
fi
|
||||||
bashio::log.green "---------------------------------------------------------"
|
bashio::log.green "---------------------------------------------------------"
|
||||||
bashio::log.green "Wiki here on how to use : github.com/alexbelgium/hassio-addons/wiki/Add‐ons-feature-:-add-env-variables"
|
bashio::log.green "Wiki here on how to use : github.com/alexbelgium/hassio-addons/wiki/Add‐ons-feature-:-add-env-variables"
|
||||||
|
|||||||
@@ -22,12 +22,12 @@ find /homeassistant/addons_config -maxdepth 1 -type l -delete
|
|||||||
|
|
||||||
# Remove erroneous folders
|
# Remove erroneous folders
|
||||||
if [ -d /homeassistant ]; then
|
if [ -d /homeassistant ]; then
|
||||||
if [ -d /config/addons_config ]; then
|
if [ -d /config/addons_config ]; then
|
||||||
rm -r /config/addons_config
|
rm -r /config/addons_config
|
||||||
fi
|
fi
|
||||||
if [ -d /config/addons_autoscripts ]; then
|
if [ -d /config/addons_autoscripts ]; then
|
||||||
rm -r /config/addons_autoscripts
|
rm -r /config/addons_autoscripts
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Create symlinks
|
# Create symlinks
|
||||||
|
|||||||
@@ -22,12 +22,12 @@ find /homeassistant/addons_config -maxdepth 1 -type l -delete
|
|||||||
|
|
||||||
# Remove erroneous folders
|
# Remove erroneous folders
|
||||||
if [ -d /homeassistant ]; then
|
if [ -d /homeassistant ]; then
|
||||||
if [ -d /config/addons_config ]; then
|
if [ -d /config/addons_config ]; then
|
||||||
rm -r /config/addons_config
|
rm -r /config/addons_config
|
||||||
fi
|
fi
|
||||||
if [ -d /config/addons_autoscripts ]; then
|
if [ -d /config/addons_autoscripts ]; then
|
||||||
rm -r /config/addons_autoscripts
|
rm -r /config/addons_autoscripts
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Create symlinks
|
# Create symlinks
|
||||||
|
|||||||
@@ -225,8 +225,8 @@ if bashio::config.has_value 'customUI' && [ ! "$CUSTOMUI" = default ] && [ ! "$C
|
|||||||
sed -i "$LINE i\WebUI\\\RootFolder=$CUSTOMUIDIR" "$CONFIG_LOCATION"/qBittorrent.conf
|
sed -i "$LINE i\WebUI\\\RootFolder=$CUSTOMUIDIR" "$CONFIG_LOCATION"/qBittorrent.conf
|
||||||
# Set ingress ui
|
# Set ingress ui
|
||||||
if [[ "$CUSTOMUI" != qbit-matUI ]]; then
|
if [[ "$CUSTOMUI" != qbit-matUI ]]; then
|
||||||
sed -i "s=/vuetorrent/public/=$CUSTOMUIDIR/public/=g" /etc/nginx/servers/ingress.conf || true
|
sed -i "s=/vuetorrent/public/=$CUSTOMUIDIR/public/=g" /etc/nginx/servers/ingress.conf || true
|
||||||
sed -i "s=vue.torrent=$CUSTOMUI.torrent=g" /etc/nginx/servers/ingress.conf || true
|
sed -i "s=vue.torrent=$CUSTOMUI.torrent=g" /etc/nginx/servers/ingress.conf || true
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
@@ -4,28 +4,28 @@ set -e
|
|||||||
|
|
||||||
if bashio::config.true "qbit_manage"; then
|
if bashio::config.true "qbit_manage"; then
|
||||||
|
|
||||||
bashio::log.info "qbit_manage activated, setting system"
|
bashio::log.info "qbit_manage activated, setting system"
|
||||||
|
|
||||||
# Set folder
|
# Set folder
|
||||||
echo "... setting folder"
|
echo "... setting folder"
|
||||||
mkdir -p /config/qbit_manage
|
mkdir -p /config/qbit_manage
|
||||||
chmod -R 777 /config/qbit_manage
|
chmod -R 777 /config/qbit_manage
|
||||||
|
|
||||||
# Create default file
|
# Create default file
|
||||||
if [ ! -f /config/qbit_manage/qbit_manage.yml ]; then
|
if [ ! -f /config/qbit_manage/qbit_manage.yml ]; then
|
||||||
echo "... create default file"
|
echo "... create default file"
|
||||||
cp /qbit_manage/config/config.yml.sample /config/qbit_manage/qbit_manage.yml
|
cp /qbit_manage/config/config.yml.sample /config/qbit_manage/qbit_manage.yml
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Set qBittorrent options
|
# Set qBittorrent options
|
||||||
echo "... align QBT username and password"
|
echo "... align QBT username and password"
|
||||||
sed -i "/host:/c\ host: \"localhost:8080\"" /config/qbit_manage/qbit_manage.yml
|
sed -i "/host:/c\ host: \"localhost:8080\"" /config/qbit_manage/qbit_manage.yml
|
||||||
sed -i "/user:/c\ user: \"$(bashio::config "QBT_USERNAME")\"" /config/qbit_manage/qbit_manage.yml
|
sed -i "/user:/c\ user: \"$(bashio::config "QBT_USERNAME")\"" /config/qbit_manage/qbit_manage.yml
|
||||||
sed -i "s=root_dir: \"/data/torrents/\"=$(bashio::config.has_value "SavePath")=g" /config/qbit_manage/qbit_manage.yml
|
sed -i "s=root_dir: \"/data/torrents/\"=$(bashio::config.has_value "SavePath")=g" /config/qbit_manage/qbit_manage.yml
|
||||||
sed -i "s=remote_dir: \"/mnt/user/data/torrents/\"=$(bashio::config.has_value "SavePath")=g" /config/qbit_manage/qbit_manage.yml
|
sed -i "s=remote_dir: \"/mnt/user/data/torrents/\"=$(bashio::config.has_value "SavePath")=g" /config/qbit_manage/qbit_manage.yml
|
||||||
|
|
||||||
# Startup delay 30s ; config file specific ; log file specific
|
# Startup delay 30s ; config file specific ; log file specific
|
||||||
python /qbit_manage/qbit_manage.py -sd 30 --config-file "/config/qbit_manage/qbit_manage.yml" --log-file "/config/qbit_manage/qbit_manage.log" --run & true
|
python /qbit_manage/qbit_manage.py -sd 30 --config-file "/config/qbit_manage/qbit_manage.yml" --log-file "/config/qbit_manage/qbit_manage.log" --run & true
|
||||||
bashio::log.info "qbit_manage started with config in /addon_configs/$HOSTNAME/qbit_manage/qbit_manage.yaml accessible with the Filebrowser addon"
|
bashio::log.info "qbit_manage started with config in /addon_configs/$HOSTNAME/qbit_manage/qbit_manage.yaml accessible with the Filebrowser addon"
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -25,38 +25,38 @@ if bashio::config.true 'openvpn_enabled'; then
|
|||||||
# Function to check for files path
|
# Function to check for files path
|
||||||
function check_path () {
|
function check_path () {
|
||||||
|
|
||||||
# Get variable
|
# Get variable
|
||||||
file="$1"
|
file="$1"
|
||||||
|
|
||||||
# Loop through each line of the input file
|
# Loop through each line of the input file
|
||||||
while read line
|
while read line
|
||||||
do
|
do
|
||||||
# Check if the line contains a txt file
|
# Check if the line contains a txt file
|
||||||
if [[ "$line" =~ \.txt ]] || [[ "$line" =~ \.crt ]]; then
|
if [[ "$line" =~ \.txt ]] || [[ "$line" =~ \.crt ]]; then
|
||||||
# Extract the txt file name from the line
|
# Extract the txt file name from the line
|
||||||
file_name="$(echo "$line" | awk -F' ' '{print $2}')"
|
file_name="$(echo "$line" | awk -F' ' '{print $2}')"
|
||||||
# Check if the txt file exists
|
# Check if the txt file exists
|
||||||
if [ ! -f "$file_name" ]; then
|
if [ ! -f "$file_name" ]; then
|
||||||
# Check if the txt file exists in the /config/openvpn/ directory
|
# Check if the txt file exists in the /config/openvpn/ directory
|
||||||
if [ -f "/config/openvpn/${file_name##*/}" ]; then
|
if [ -f "/config/openvpn/${file_name##*/}" ]; then
|
||||||
# Append /config/openvpn/ in front of the original txt file in the ovpn file
|
# 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/\/config\/openvpn\/${file_name##*/}/g" "$file"
|
||||||
# Print a success message
|
# Print a success message
|
||||||
bashio::log.warning "Appended /config/openvpn/ to ${file_name##*/} in $file"
|
bashio::log.warning "Appended /config/openvpn/ to ${file_name##*/} in $file"
|
||||||
else
|
else
|
||||||
# Print an error message
|
# 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, and can't be found either in the /config/openvpn/ directory"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
done < "$file"
|
done < "$file"
|
||||||
|
|
||||||
# Standardize lf
|
# Standardize lf
|
||||||
dos2unix "$file"
|
dos2unix "$file"
|
||||||
|
|
||||||
|
|
||||||
# Correct paths
|
# Correct paths
|
||||||
sed -i "s=/etc/openvpn=/config/openvpn=g" "$file"
|
sed -i "s=/etc/openvpn=/config/openvpn=g" "$file"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -76,30 +76,30 @@ dos2unix "$file"
|
|||||||
check_path /config/openvpn/"$openvpn_config"
|
check_path /config/openvpn/"$openvpn_config"
|
||||||
# Copy potential additional files
|
# Copy potential additional files
|
||||||
cp /config/openvpn/* /etc/openvpn/
|
cp /config/openvpn/* /etc/openvpn/
|
||||||
# Standardize file
|
# Standardize file
|
||||||
cp /config/openvpn/"${openvpn_config}" /etc/openvpn/config.ovpn
|
cp /config/openvpn/"${openvpn_config}" /etc/openvpn/config.ovpn
|
||||||
# Not correct type
|
# Not correct type
|
||||||
else
|
else
|
||||||
bashio::exit.nok "Configured ovpn file : $openvpn_config is set but does not end by .ovpn ; it can't be used!"
|
bashio::exit.nok "Configured ovpn file : $openvpn_config is set but does not end by .ovpn ; it can't be used!"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# If openvpn_config not set, but folder is not empty
|
# If openvpn_config not set, but folder is not empty
|
||||||
else
|
else
|
||||||
# Look for openvpn files
|
# Look for openvpn files
|
||||||
# Wildcard search for openvpn config files and store results in array
|
# Wildcard search for openvpn config files and store results in array
|
||||||
mapfile -t VPN_CONFIGS < <( find /config/openvpn -maxdepth 1 -name "*.ovpn" -print )
|
mapfile -t VPN_CONFIGS < <( find /config/openvpn -maxdepth 1 -name "*.ovpn" -print )
|
||||||
# Choose random config
|
# Choose random config
|
||||||
VPN_CONFIG="${VPN_CONFIGS[$RANDOM % ${#VPN_CONFIGS[@]}]}"
|
VPN_CONFIG="${VPN_CONFIGS[$RANDOM % ${#VPN_CONFIGS[@]}]}"
|
||||||
# Get the VPN_CONFIG name without the path and extension
|
# Get the VPN_CONFIG name without the path and extension
|
||||||
openvpn_config="${VPN_CONFIG##*/}"
|
openvpn_config="${VPN_CONFIG##*/}"
|
||||||
echo "... Openvpn enabled, but openvpn_config option empty. Selecting a random ovpn file : ${openvpn_config}"
|
echo "... Openvpn enabled, but openvpn_config option empty. Selecting a random ovpn file : ${openvpn_config}"
|
||||||
# Check path
|
# Check path
|
||||||
check_path /config/openvpn/"${openvpn_config}"
|
check_path /config/openvpn/"${openvpn_config}"
|
||||||
# Copy potential additional files
|
# Copy potential additional files
|
||||||
cp /config/openvpn/* /etc/openvpn/
|
cp /config/openvpn/* /etc/openvpn/
|
||||||
# Standardize file
|
# Standardize file
|
||||||
cp /config/openvpn/"${openvpn_config}" /etc/openvpn/config.ovpn
|
cp /config/openvpn/"${openvpn_config}" /etc/openvpn/config.ovpn
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Set credentials
|
# Set credentials
|
||||||
|
|||||||
@@ -24,25 +24,25 @@ slug=radarr
|
|||||||
CONFIG_LOCATION=/config/addons_config/"$slug"/config.xml
|
CONFIG_LOCATION=/config/addons_config/"$slug"/config.xml
|
||||||
|
|
||||||
if [ -f "$CONFIG_LOCATION" ]; then
|
if [ -f "$CONFIG_LOCATION" ]; then
|
||||||
# Set UrlBase
|
# Set UrlBase
|
||||||
if ! bashio::config.true "ingress_disabled"; then
|
if ! bashio::config.true "ingress_disabled"; then
|
||||||
bashio::log.warning "---------------------------"
|
bashio::log.warning "---------------------------"
|
||||||
bashio::log.warning "Ingress is enabled, authentification will be disabled and should be managed through HA itself. If you need authentification, please disable ingress in addon options"
|
bashio::log.warning "Ingress is enabled, authentification will be disabled and should be managed through HA itself. If you need authentification, please disable ingress in addon options"
|
||||||
bashio::log.warning "---------------------------"
|
bashio::log.warning "---------------------------"
|
||||||
# Define UrlBase
|
# Define UrlBase
|
||||||
sed -i "/UrlBase/d" "$CONFIG_LOCATION"
|
sed -i "/UrlBase/d" "$CONFIG_LOCATION"
|
||||||
sed -i "2a <UrlBase>$slug<\/UrlBase>" "$CONFIG_LOCATION"
|
sed -i "2a <UrlBase>$slug<\/UrlBase>" "$CONFIG_LOCATION"
|
||||||
# Disable local auth
|
# Disable local auth
|
||||||
sed -i "/AuthenticationType/d" "$CONFIG_LOCATION"
|
sed -i "/AuthenticationType/d" "$CONFIG_LOCATION"
|
||||||
sed -i "2a <AuthenticationType>DisabledForLocalAddresses</AuthenticationType>" "$CONFIG_LOCATION"
|
sed -i "2a <AuthenticationType>DisabledForLocalAddresses</AuthenticationType>" "$CONFIG_LOCATION"
|
||||||
# Disable local auth
|
# Disable local auth
|
||||||
sed -i "/AuthenticationMethod/d" "$CONFIG_LOCATION"
|
sed -i "/AuthenticationMethod/d" "$CONFIG_LOCATION"
|
||||||
sed -i "2a <AuthenticationMethod>external</AuthenticationMethod>" "$CONFIG_LOCATION"
|
sed -i "2a <AuthenticationMethod>external</AuthenticationMethod>" "$CONFIG_LOCATION"
|
||||||
else
|
else
|
||||||
bashio::log.warning "---------------------------"
|
bashio::log.warning "---------------------------"
|
||||||
bashio::log.info "Disabling ingress and enabling authentification"
|
bashio::log.info "Disabling ingress and enabling authentification"
|
||||||
bashio::log.warning "---------------------------"
|
bashio::log.warning "---------------------------"
|
||||||
sed -i "/UrlBase/d" "$CONFIG_LOCATION"
|
sed -i "/UrlBase/d" "$CONFIG_LOCATION"
|
||||||
sed -i "/<AuthenticationMethod>external/d" "$CONFIG_LOCATION"
|
sed -i "/<AuthenticationMethod>external/d" "$CONFIG_LOCATION"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -24,26 +24,26 @@ slug=readarr
|
|||||||
CONFIG_LOCATION=/config/addons_config/"$slug"/config.xml
|
CONFIG_LOCATION=/config/addons_config/"$slug"/config.xml
|
||||||
|
|
||||||
if [ -f "$CONFIG_LOCATION" ]; then
|
if [ -f "$CONFIG_LOCATION" ]; then
|
||||||
# Set UrlBase
|
# Set UrlBase
|
||||||
if ! bashio::config.true "ingress_disabled"; then
|
if ! bashio::config.true "ingress_disabled"; then
|
||||||
bashio::log.warning "---------------------------"
|
bashio::log.warning "---------------------------"
|
||||||
bashio::log.warning "Ingress is enabled, authentification will be disabled and should be managed through HA itself. If you need authentification, please disable ingress in addon options"
|
bashio::log.warning "Ingress is enabled, authentification will be disabled and should be managed through HA itself. If you need authentification, please disable ingress in addon options"
|
||||||
bashio::log.warning "---------------------------"
|
bashio::log.warning "---------------------------"
|
||||||
# Define UrlBase
|
# Define UrlBase
|
||||||
sed -i "/UrlBase/d" "$CONFIG_LOCATION"
|
sed -i "/UrlBase/d" "$CONFIG_LOCATION"
|
||||||
sed -i "2a <UrlBase>$slug<\/UrlBase>" "$CONFIG_LOCATION"
|
sed -i "2a <UrlBase>$slug<\/UrlBase>" "$CONFIG_LOCATION"
|
||||||
# Disable local auth
|
# Disable local auth
|
||||||
sed -i "/AuthenticationType/d" "$CONFIG_LOCATION"
|
sed -i "/AuthenticationType/d" "$CONFIG_LOCATION"
|
||||||
sed -i "2a <AuthenticationType>DisabledForLocalAddresses</AuthenticationType>" "$CONFIG_LOCATION"
|
sed -i "2a <AuthenticationType>DisabledForLocalAddresses</AuthenticationType>" "$CONFIG_LOCATION"
|
||||||
# Disable local auth
|
# Disable local auth
|
||||||
# sed -i "/AuthenticationMethod/d" "$CONFIG_LOCATION"
|
# sed -i "/AuthenticationMethod/d" "$CONFIG_LOCATION"
|
||||||
# sed -i "2a <AuthenticationMethod>external</AuthenticationMethod>" "$CONFIG_LOCATION"
|
# sed -i "2a <AuthenticationMethod>external</AuthenticationMethod>" "$CONFIG_LOCATION"
|
||||||
else
|
else
|
||||||
bashio::log.warning "---------------------------"
|
bashio::log.warning "---------------------------"
|
||||||
bashio::log.info "Disabling ingress and enabling authentification"
|
bashio::log.info "Disabling ingress and enabling authentification"
|
||||||
bashio::log.warning "---------------------------"
|
bashio::log.warning "---------------------------"
|
||||||
sed -i "/UrlBase/d" "$CONFIG_LOCATION"
|
sed -i "/UrlBase/d" "$CONFIG_LOCATION"
|
||||||
sed -i "/<AuthenticationMethod>external/d" "$CONFIG_LOCATION"
|
sed -i "/<AuthenticationMethod>external/d" "$CONFIG_LOCATION"
|
||||||
# sed -i "/<AuthenticationMethod>external/d" "$CONFIG_LOCATION"
|
# sed -i "/<AuthenticationMethod>external/d" "$CONFIG_LOCATION"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ set -e
|
|||||||
|
|
||||||
# Set configuration directory
|
# Set configuration directory
|
||||||
if [ -d /home/node/.signalk ]; then
|
if [ -d /home/node/.signalk ]; then
|
||||||
rm -r /home/node/.signalk
|
rm -r /home/node/.signalk
|
||||||
fi
|
fi
|
||||||
ln -sf /config /home/node/.signalk
|
ln -sf /config /home/node/.signalk
|
||||||
chown -R node:node /config
|
chown -R node:node /config
|
||||||
|
|||||||
@@ -24,25 +24,25 @@ slug=sonarr
|
|||||||
CONFIG_LOCATION=/config/addons_config/"$slug"/config.xml
|
CONFIG_LOCATION=/config/addons_config/"$slug"/config.xml
|
||||||
|
|
||||||
if [ -f "$CONFIG_LOCATION" ]; then
|
if [ -f "$CONFIG_LOCATION" ]; then
|
||||||
# Set UrlBase
|
# Set UrlBase
|
||||||
if ! bashio::config.true "ingress_disabled"; then
|
if ! bashio::config.true "ingress_disabled"; then
|
||||||
bashio::log.warning "---------------------------"
|
bashio::log.warning "---------------------------"
|
||||||
bashio::log.warning "Ingress is enabled, authentification will be disabled and should be managed through HA itself. If you need authentification, please disable ingress in addon options"
|
bashio::log.warning "Ingress is enabled, authentification will be disabled and should be managed through HA itself. If you need authentification, please disable ingress in addon options"
|
||||||
bashio::log.warning "---------------------------"
|
bashio::log.warning "---------------------------"
|
||||||
# Define UrlBase
|
# Define UrlBase
|
||||||
sed -i "/UrlBase/d" "$CONFIG_LOCATION"
|
sed -i "/UrlBase/d" "$CONFIG_LOCATION"
|
||||||
sed -i "2a <UrlBase>$slug<\/UrlBase>" "$CONFIG_LOCATION"
|
sed -i "2a <UrlBase>$slug<\/UrlBase>" "$CONFIG_LOCATION"
|
||||||
# Disable local auth
|
# Disable local auth
|
||||||
sed -i "/AuthenticationType/d" "$CONFIG_LOCATION"
|
sed -i "/AuthenticationType/d" "$CONFIG_LOCATION"
|
||||||
sed -i "2a <AuthenticationType>DisabledForLocalAddresses</AuthenticationType>" "$CONFIG_LOCATION"
|
sed -i "2a <AuthenticationType>DisabledForLocalAddresses</AuthenticationType>" "$CONFIG_LOCATION"
|
||||||
# Disable local auth
|
# Disable local auth
|
||||||
sed -i "/AuthenticationMethod/d" "$CONFIG_LOCATION"
|
sed -i "/AuthenticationMethod/d" "$CONFIG_LOCATION"
|
||||||
sed -i "2a <AuthenticationMethod>external</AuthenticationMethod>" "$CONFIG_LOCATION"
|
sed -i "2a <AuthenticationMethod>external</AuthenticationMethod>" "$CONFIG_LOCATION"
|
||||||
else
|
else
|
||||||
bashio::log.warning "---------------------------"
|
bashio::log.warning "---------------------------"
|
||||||
bashio::log.info "Disabling ingress and enabling authentification"
|
bashio::log.info "Disabling ingress and enabling authentification"
|
||||||
bashio::log.warning "---------------------------"
|
bashio::log.warning "---------------------------"
|
||||||
sed -i "/UrlBase/d" "$CONFIG_LOCATION"
|
sed -i "/UrlBase/d" "$CONFIG_LOCATION"
|
||||||
sed -i "/<AuthenticationMethod>external/d" "$CONFIG_LOCATION"
|
sed -i "/<AuthenticationMethod>external/d" "$CONFIG_LOCATION"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user