Update lldap-install.sh

Refactor
This commit is contained in:
tteckster 2024-08-05 06:03:44 -04:00 committed by GitHub
parent 20fb0ce808
commit ddb6551565
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 9 deletions

View File

@ -22,17 +22,15 @@ $STD apt-get install -y gpg
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Installing lldap" msg_info "Installing lldap"
DISTRO="Debian" source /etc/os-release
os=$(less /etc/os-release | grep "^ID=") os=$ID
os="${os:3}"
if [ "$os" == "ubuntu" ]; then if [ "$os" == "ubuntu" ]; then
DISTRO="Ubuntu" DISTRO="xUbuntu"
else
DISTRO="${os^}"
fi fi
DISTRO_VER=$(less /etc/os-release | grep "^VERSION_ID=") echo "deb http://download.opensuse.org/repositories/home:/Masgalor:/LLDAP/${DISTRO}_${VERSION_ID}/ /" >/etc/apt/sources.list.d/home:Masgalor:LLDAP.list
DISTRO_VER="${DISTRO_VER:12}" curl -fsSL https://download.opensuse.org/repositories/home:Masgalor:LLDAP/${DISTRO}_${VERSION_ID}/Release.key | gpg --dearmor >/etc/apt/trusted.gpg.d/home_Masgalor_LLDAP.gpg
DISTRO_VER="${DISTRO_VER%%\"}"
echo "deb http://download.opensuse.org/repositories/home:/Masgalor:/LLDAP/${DISTRO}_${DISTRO_VER}/ /" > /etc/apt/sources.list.d/home:Masgalor:LLDAP.list
curl -fsSL https://download.opensuse.org/repositories/home:Masgalor:LLDAP/${DISTRO}_${DISTRO_VER}/Release.key | gpg --dearmor -o /etc/apt/trusted.gpg.d/home_Masgalor_LLDAP.gpg
$STD apt update $STD apt update
$STD apt install -y lldap $STD apt install -y lldap
systemctl enable -q --now lldap systemctl enable -q --now lldap