fix: auto-fix linting issues

This commit is contained in:
alexbelgium
2025-09-28 00:32:27 +00:00
committed by github-actions[bot]
parent caba7e0ecc
commit de0e40c2ea
7 changed files with 18 additions and 18 deletions

View File

@@ -220,7 +220,7 @@ if bashio::config.has_value 'networkdisks'; then
echo "... using SMBv1" echo "... using SMBv1"
bashio::log.warning "...... share reachable only with legacy SMBv1 (NT1) negotiation. Forcing SMBv1 options." bashio::log.warning "...... share reachable only with legacy SMBv1 (NT1) negotiation. Forcing SMBv1 options."
SMBVERS_FORCE=",vers=1.0" SMBVERS_FORCE=",vers=1.0"
SECVERS_FORCE=",sec=ntlm" SECVERS_FORCE=",sec=ntlm"
elif ! echo "$OUTPUT" | grep -q "Disk"; then elif ! echo "$OUTPUT" | grep -q "Disk"; then
echo "... testing path" echo "... testing path"
bashio::log.fatal "...... no shares found. Invalid or inaccessible SMB path?" bashio::log.fatal "...... no shares found. Invalid or inaccessible SMB path?"

0
emby_beta/rootfs/etc/services.d/nginx/run Normal file → Executable file
View File

View File

@@ -107,11 +107,11 @@ case $(bashio::config 'DB_CONNECTION') in
bashio::log.info "Creating database for Firefly-iii if required" bashio::log.info "Creating database for Firefly-iii if required"
# Create database without SSL requirement # Create database without SSL requirement
mysql \ mysql \
--skip-ssl \ --skip-ssl \
-u "${DB_USERNAME}" -p"${DB_PASSWORD}" \ -u "${DB_USERNAME}" -p"${DB_PASSWORD}" \
-h "${DB_HOST}" -P "${DB_PORT}" \ -h "${DB_HOST}" -P "${DB_PORT}" \
-e "CREATE DATABASE IF NOT EXISTS \`firefly\`;" -e "CREATE DATABASE IF NOT EXISTS \`firefly\`;"
;; ;;
# Use remote # Use remote
*) *)

View File

@@ -6,7 +6,7 @@ fix_file="/etc/chromium.d/dev-shm"
if [ -f "${fix_file}" ]; then if [ -f "${fix_file}" ]; then
bashio::log.info "Patching Chromium shared memory helper for reliable startup" bashio::log.info "Patching Chromium shared memory helper for reliable startup"
cat <<'PATCH' > "${fix_file}" cat << 'PATCH' > "${fix_file}"
# shellcheck shell=sh # shellcheck shell=sh
# Patched by alexbelgium/hassio-addons to avoid arithmetic errors with large values on some shells. # Patched by alexbelgium/hassio-addons to avoid arithmetic errors with large values on some shells.
shm_avail=$(findmnt -bnr -o avail -T /dev/shm 2>/dev/null) shm_avail=$(findmnt -bnr -o avail -T /dev/shm 2>/dev/null)

View File

@@ -7,16 +7,16 @@ echo "Warning - minimum configuration recommended: 2 CPU cores and 4 GB of memor
chromium_wrapper="/usr/bin/chromium" chromium_wrapper="/usr/bin/chromium"
if [[ -f "${chromium_wrapper}" ]]; then if [[ -f "${chromium_wrapper}" ]]; then
if [[ ! -x /bin/bash ]]; then if [[ ! -x /bin/bash ]]; then
bashio::log.warning "Chromium wrapper patch skipped: /bin/bash is not available." bashio::log.warning "Chromium wrapper patch skipped: /bin/bash is not available."
else else
if grep -q '^#!/bin/sh' "${chromium_wrapper}"; then if grep -q '^#!/bin/sh' "${chromium_wrapper}"; then
if grep -q '==' "${chromium_wrapper}"; then if grep -q '==' "${chromium_wrapper}"; then
bashio::log.info "Adjusting Chromium wrapper to use bash for compatibility with Chromium 140." bashio::log.info "Adjusting Chromium wrapper to use bash for compatibility with Chromium 140."
sed -i '1s|/bin/sh|/bin/bash|' "${chromium_wrapper}" sed -i '1s|/bin/sh|/bin/bash|' "${chromium_wrapper}"
fi fi
fi
fi fi
fi
fi fi
############## ##############

View File

@@ -3,10 +3,10 @@
declare config declare config
config=$(\ config=$(
bashio::var.json \ bashio::var.json \
host "http://127.0.0.1" \ host "http://127.0.0.1" \
port "^$(bashio::addon.port 9001)" \ port "^$(bashio::addon.port 9001)"
) )
if bashio::discovery "mealie" "${config}" > /dev/null; then if bashio::discovery "mealie" "${config}" > /dev/null; then

0
nzbget/rootfs/etc/services.d/nginx/run Normal file → Executable file
View File