mirror of
https://github.com/unraid/webgui.git
synced 2026-01-04 16:40:21 -06:00
263 lines
9.2 KiB
Bash
Executable File
263 lines
9.2 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# script: rc.local
|
|
#
|
|
# Local system initialization script.
|
|
# Put any local startup commands in here. Also, if you have
|
|
# anything that needs to be run at shutdown time you can
|
|
# make an /etc/rc.d/rc.local_shutdown script and put those
|
|
# commands in there.
|
|
#
|
|
# LimeTech - modified for Unraid OS
|
|
# Bergware - modified for Unraid OS, October 2023
|
|
|
|
# run & log functions
|
|
. /etc/rc.d/rc.runlog
|
|
|
|
# import CA proxy
|
|
UNPROXY=/boot/config/plugins/dynamix/outgoingproxy.cfg
|
|
CAPROXY=/boot/config/plugins/community.applications/proxy.cfg
|
|
if [[ -f $CAPROXY && ! -f $UNPROXY ]]; then
|
|
. $CAPROXY
|
|
# proxy and port were set by the previous command
|
|
if [[ -n $proxy && -n $port ]]; then
|
|
cat << EOF > $UNPROXY
|
|
proxy_active="1"
|
|
proxy_url_1="$proxy:$port"
|
|
proxy_name_1="Imported from CA"
|
|
EOF
|
|
fi
|
|
mv "$CAPROXY" "$CAPROXY~"
|
|
fi
|
|
|
|
# load proxy environment vars so it is used for plugin updates and the go script
|
|
/usr/local/emhttp/plugins/dynamix/scripts/set_proxy
|
|
[[ -x /etc/profile.d/proxy.sh ]] && . /etc/profile.d/proxy.sh
|
|
|
|
# irqbalance daemon distributes interrupts over processors and cores
|
|
# if [[ -x /usr/sbin/irqbalance ]]; then
|
|
# /usr/sbin/irqbalance
|
|
# fi
|
|
|
|
# reclaim 1.6M of microcode files that are no longer needed
|
|
rm -rf /kernel
|
|
|
|
# For Docker: mark submounts under /mnt "shared"
|
|
/sbin/mount --bind --make-rshared /mnt /mnt
|
|
# and grant access to graphics device nodes
|
|
[[ -d /dev/dri ]] && chmod -R 777 /dev/dri
|
|
|
|
# Ensure required config directories exist
|
|
# these will all have permissions 0700
|
|
CONFIG="/boot/config"
|
|
mkdir -p $CONFIG/default
|
|
mkdir -p $CONFIG/modprobe.d
|
|
mkdir -p $CONFIG/plugins/dockerMan
|
|
mkdir -p $CONFIG/plugins/dynamix/users
|
|
mkdir -p $CONFIG/plugins-error/
|
|
mkdir -p $CONFIG/pools
|
|
mkdir -p $CONFIG/shares
|
|
mkdir -p $CONFIG/ssh/root
|
|
mkdir -p $CONFIG/ssl/certs
|
|
|
|
# Set default Docker backingfs type to native for existing installations
|
|
if [[ -f "/boot/config/docker.cfg" ]]; then
|
|
grep -q "DOCKER_BACKINGFS=" /boot/config/docker.cfg || echo "DOCKER_BACKINGFS=\"native\"" >> /boot/config/docker.cfg
|
|
fi
|
|
|
|
# upgrade network configuration (if needed) and (re)generates our welcome text
|
|
if [[ -x /usr/local/sbin/create_network_ini ]]; then
|
|
/usr/local/sbin/create_network_ini init &
|
|
fi
|
|
|
|
# Needed by dynamix
|
|
# copy monitor.ini file
|
|
if [[ -s $CONFIG/plugins/dynamix/monitor.ini ]]; then
|
|
cp $CONFIG/plugins/dynamix/monitor.ini /var/local/emhttp
|
|
chmod -x /var/local/emhttp/monitor.ini
|
|
fi
|
|
# initialize notifications
|
|
/usr/local/emhttp/webGui/scripts/notify smtp-init
|
|
/usr/local/emhttp/webGui/scripts/notify cron-init
|
|
|
|
# start interface state monitoring
|
|
if [[ -x /usr/local/sbin/monitor_interface ]]; then
|
|
/usr/local/sbin/monitor_interface &>/dev/null
|
|
fi
|
|
|
|
# start nchan monitoring -> stop all running nchan processes when no subscribers are connected
|
|
if [[ -x /usr/local/sbin/monitor_nchan ]]; then
|
|
/usr/local/sbin/monitor_nchan &>/dev/null
|
|
fi
|
|
|
|
# First boot following Unraid Server OS update: delete plugin file
|
|
rm -f /boot/plugins/unRAIDServer.plg
|
|
rm -f $CONFIG/plugins/unRAIDServer.plg
|
|
|
|
# These plugins are now integrated in the OS or obsolete and may interfere
|
|
OBSOLETE="flash.remount vfio.pci dynamix.wireguard dynamix.ssd.trim dynamix.file.manager gui.search unlimited-width proxy.editor unraid.patch AAA-UnraidPatch-BootLoader-DO_NOT_DELETE theme.engine dark.theme"
|
|
QUIET="unraid.patch AAA-UnraidPatch-BootLoader-DO_NOT_DELETE"
|
|
|
|
for PLUGIN in $OBSOLETE; do
|
|
if [[ -e "$CONFIG/plugins/$PLUGIN.plg" ]]; then
|
|
# preserve ssd-trim config
|
|
if [[ $PLUGIN == dynamix.ssd.trim ]]; then
|
|
if [[ -e "$CONFIG/plugins/$PLUGIN/$PLUGIN.cfg" ]]; then
|
|
echo "[ssd]" >> "$CONFIG/plugins/dynamix/dynamix.cfg"
|
|
cat "$CONFIG/plugins/$PLUGIN/$PLUGIN.cfg" >> "$CONFIG/plugins/dynamix/dynamix.cfg"
|
|
fi
|
|
if [[ -e "$CONFIG/plugins/$PLUGIN/ssd-trim.cron" ]]; then
|
|
mv "$CONFIG/plugins/$PLUGIN/ssd-trim.cron" "$CONFIG/plugins/dynamix/ssd-trim.cron"
|
|
fi
|
|
fi
|
|
|
|
if [[ " $QUIET " == *" $PLUGIN "* ]]; then
|
|
rm "$CONFIG/plugins/$PLUGIN.plg"
|
|
else
|
|
log "moving obsolete plugin $PLUGIN.plg to $CONFIG/plugins-error"
|
|
mv "$CONFIG/plugins/$PLUGIN.plg" "$CONFIG/plugins-error/"
|
|
fi
|
|
|
|
# also remove $PLUGIN configuration directory
|
|
rm -rf "$CONFIG/plugins/$PLUGIN"
|
|
fi
|
|
done
|
|
|
|
# Clean up any quiet plugin plg files from previous runs
|
|
for PLUGIN in $QUIET; do
|
|
if [[ -e "$CONFIG/plugins-error/$PLUGIN.plg" ]]; then
|
|
rm "$CONFIG/plugins-error/$PLUGIN.plg"
|
|
fi
|
|
done
|
|
|
|
# uninstall obsolete plugins
|
|
#
|
|
# these plugins with these versions or older are incompatible with this version of Unraid
|
|
# if found, they will be moved from $CONFIG/plugins to $CONFIG/plugins-error
|
|
# in theory, newer versions will be ok
|
|
#
|
|
obsolete(){
|
|
local PLUGIN=$1
|
|
local BADVER=$2
|
|
if [[ -e "$CONFIG/plugins/$PLUGIN.plg" ]]; then
|
|
local VERSION=$(/usr/local/sbin/plugin version "$CONFIG/plugins/$PLUGIN.plg")
|
|
# assumes all version strings are of form YYYY.MM.DD[.letter]
|
|
if [[ $VERSION < $BADVER || $VERSION == $BADVER ]]; then
|
|
log "moving obsolete plugin $PLUGIN.plg version $VERSION to $CONFIG/plugins-error"
|
|
/usr/local/emhttp/webGui/scripts/notify -e "Plugin Removed" -s "$PLUGIN" -d "Plugin '$PLUGIN' version '$VERSION' was removed as it is incompatible with this version of Unraid OS" -m "A replacement *may* be available in Community Apps" -i "alert" -l "/Plugins"
|
|
mv "$CONFIG/plugins/$PLUGIN.plg" "$CONFIG/plugins-error/"
|
|
# notify needs a delay between notifications
|
|
sleep 1
|
|
fi
|
|
fi
|
|
}
|
|
|
|
# Disk Location by olehj, breaks the dashboard
|
|
obsolete "disklocation-master" "2022.06.18"
|
|
# Plex Streams by dorgan, breaks the dashboard
|
|
obsolete "plexstreams" "2022.08.31"
|
|
# Corsair PSU Statistics by Fma965, breaks the dashboard
|
|
obsolete "corsairpsu" "2021.10.05"
|
|
# GPU Statistics by b3rs3rk, breaks the dashboard
|
|
obsolete "gpustat" "2022.11.30a"
|
|
# IPMI Tools by dmacias72, breaks the dashboard
|
|
obsolete "ipmi" "2021.01.08"
|
|
# NUT - Network UPS Tools by dmacias72, breaks the dashboard
|
|
obsolete "nut" "2022.03.20"
|
|
# Nerd Tools by dmacias72
|
|
obsolete "NerdPack" "2021.08.11"
|
|
# UPnP Monitor by ljm42, not PHP 8 compatible
|
|
obsolete "upnp-monitor" "2020.01.04c"
|
|
# ZFS-Companion Monitor by campusantu, breaks the dashboard
|
|
obsolete "ZFS-companion" "2021.08.24"
|
|
# Folder View - Latest versions are only compatible with 7.x Older versions have issues
|
|
obsolete "folder.view" "2024.10.02"
|
|
# Unraid Connect - requires version "2025.07.15.1837" or higher
|
|
obsolete "dynamix.unraid.net" "2025.07.15.1836"
|
|
# Dynamix Date & Time - Removes options from Settings - Date Time settings block everything older than 2025.08.01 (current 2023.10.28)
|
|
obsolete "dynamix.date.time" "2025.08.01"
|
|
|
|
# If "unraidsafemode" indicated, skip installing extra packages and plugins
|
|
if [[ -f /boot/unraidsafemode ]] || grep -wq unraidsafemode /proc/cmdline; then
|
|
log "Unraid Safe Mode (unraidsafemode) has been set"
|
|
else
|
|
# Install any extra packages
|
|
if [[ -d /boot/extra ]]; then
|
|
log "Installing /boot/extra packages"
|
|
( export -f log; find /boot/extra -maxdepth 1 -type f -exec sh -c 'upgradepkg --terse --install-new "$1" | log' -- "{}" \; )
|
|
fi
|
|
PRIORITY_PLUGINS=("dynamix.unraid.net.plg")
|
|
# Install priority plugins first
|
|
for PRIORITY_PLUGIN in "${PRIORITY_PLUGINS[@]}"; do
|
|
PRIORITY_PLUGIN_PATH="$CONFIG/plugins/$PRIORITY_PLUGIN"
|
|
if [[ -f "$PRIORITY_PLUGIN_PATH" ]]; then
|
|
/usr/local/sbin/plugin install "$PRIORITY_PLUGIN_PATH" | log
|
|
fi
|
|
done
|
|
# Install remaining plugins
|
|
shopt -s nullglob
|
|
for PLUGIN in $CONFIG/plugins/*.plg; do
|
|
PLUGIN_NAME=$(basename "$PLUGIN")
|
|
# Skip already installed priority plugins
|
|
if [[ " ${PRIORITY_PLUGINS[*]} " == *" $PLUGIN_NAME "* ]]; then
|
|
continue
|
|
fi
|
|
/usr/local/sbin/plugin install "$PLUGIN" | log
|
|
done
|
|
shopt -u nullglob
|
|
fi
|
|
|
|
# Install languages
|
|
log "Installing language packs"
|
|
shopt -s nullglob
|
|
for LANGUAGE in $CONFIG/plugins/lang-*.xml; do
|
|
/usr/local/sbin/language install $LANGUAGE | log
|
|
done
|
|
shopt -u nullglob
|
|
|
|
# restore favorites
|
|
if [[ -x /usr/local/emhttp/webGui/scripts/restore_favorites ]]; then
|
|
/usr/local/emhttp/webGui/scripts/restore_favorites
|
|
fi
|
|
|
|
# Enable persistent bash history
|
|
PERSISTENT_BASH_HISTORY=$(grep "persist_bash_history" /boot/config/plugins/dynamix/dynamix.cfg 2>/dev/null | cut -d'=' -f2 | sed 's/"//g')
|
|
if [[ $PERSISTENT_BASH_HISTORY == 1 ]]; then
|
|
if [[ ! -d /boot/config/history ]]; then
|
|
mkdir -p /boot/config/history
|
|
fi
|
|
rm -f /root/.bash_history
|
|
touch /boot/config/history/bash_history
|
|
ln -s /boot/config/history/bash_history /root/.bash_history
|
|
fi
|
|
|
|
# cleanup the 'go' script
|
|
# delete non-commented line with emhttp and trailing & (could also have leading env vars)
|
|
# add new line with call to emhttp (preserve any params to emhttp and CRLF line endings)
|
|
GOTEST1='^[^#]*/usr/local/sbin/emhttp(.*)&(.*)$'
|
|
if grep -q -E "$GOTEST1" $CONFIG/go; then
|
|
cp $CONFIG/go $CONFIG/go~
|
|
sed -i -E "s@$GOTEST1@/usr/local/sbin/emhttp\1\2@g" $CONFIG/go
|
|
fi
|
|
# delete lines added by ProxyEditor
|
|
GOTEST2='# Added by ProxyEditor'
|
|
if grep -q "$GOTEST2" $CONFIG/go; then
|
|
[[ ! -f $CONFIG/go~ ]] && cp $CONFIG/go $CONFIG/go~
|
|
sed -i "/$GOTEST2/d" $CONFIG/go
|
|
fi
|
|
|
|
# Invoke the 'go' script
|
|
GO=go
|
|
if [[ -f /boot/unraidsafemode ]] || grep -wq unraidsafemode /proc/cmdline; then
|
|
GO=go.safemode
|
|
fi
|
|
if [[ -f $CONFIG/$GO ]]; then
|
|
log "Starting $GO script"
|
|
fromdos <$CONFIG/$GO >/var/tmp/$GO
|
|
chmod +x /var/tmp/$GO
|
|
/var/tmp/$GO
|
|
else
|
|
log "Starting emhttp"
|
|
/usr/local/sbin/emhttp
|
|
fi
|