mirror of
https://github.com/unraid/webgui.git
synced 2026-01-06 09:39:58 -06:00
14 lines
246 B
Bash
Executable File
14 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# script: rc.4.local
|
|
#
|
|
# This file is executed by rc.4
|
|
#
|
|
# LimeTech - modified for Unraid OS
|
|
# Bergware - modified for Unraid OS, October 2023
|
|
|
|
# Try to use SLiM login manager
|
|
if [[ -x /usr/bin/slim ]]; then
|
|
exec /usr/bin/slim
|
|
fi
|