From 8bc37d93b7636ea408a1ae7653f023d3eadfe0c5 Mon Sep 17 00:00:00 2001 From: tteckster Date: Sun, 8 Oct 2023 19:44:36 -0400 Subject: [PATCH] Delete misc/bluetooth.sh outdated --- misc/bluetooth.sh | 58 ----------------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 misc/bluetooth.sh diff --git a/misc/bluetooth.sh b/misc/bluetooth.sh deleted file mode 100644 index d3a3ca60..00000000 --- a/misc/bluetooth.sh +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2021-2023 tteck -# Author: tteck (tteckster) -# License: MIT -# https://github.com/tteck/Proxmox/raw/main/LICENSE - -if command -v pveversion >/dev/null 2>&1; then echo -e "⚠️ Can't Run from the Proxmox Shell"; exit; fi -set -e -clear - -while true; do - read -p "Start the Bluetooth Integration Preparation (y/n)?" yn - case $yn in - [Yy]*) break ;; - [Nn]*) exit ;; - *) echo "Please answer yes or no." ;; - esac -done - -clear - cat <<"EOF" - __ __ ___ _ __ __ - / / / /___ ____ ___ ___ / | __________(_)____/ /_____ _____ / /_ - / /_/ / __ \/ __ `__ \/ _ \ / /| | / ___/ ___/ / ___/ __/ __ `/ __ \/ __/ - / __ / /_/ / / / / / / __/ / ___ |(__ |__ ) (__ ) /_/ /_/ / / / / /_ -/_/ /_/\____/_/ /_/ /_/\___/ /_/ |_/____/____/_/____/\__/\__,_/_/ /_/\__/ - / __ )/ /_ _____ / /_____ ____ / /_/ /_ - / __ / / / / / _ \/ __/ __ \/ __ \/ __/ __ \ - / /_/ / / /_/ / __/ /_/ /_/ / /_/ / /_/ / / / - /_____/_/\__,_/\___/\__/\____/\____/\__/_/_/_/_ - / _/___ / /____ ____ __________ _/ /_(_)___ ____ - / // __ \/ __/ _ \/ __ `/ ___/ __ `/ __/ / __ \/ __ \ - _/ // / / / /_/ __/ /_/ / / / /_/ / /_/ / /_/ / / / / - /___/_/_/_/\__/\___/\__, /_/ \__,_/\__/_/\____/_/ /_/ - / __ \________/____/ ____ __________ _/ /_(_)___ ____ - / /_/ / ___/ _ \/ __ \/ __ `/ ___/ __ `/ __/ / __ \/ __ \ - / ____/ / / __/ /_/ / /_/ / / / /_/ / /_/ / /_/ / / / / - /_/ /_/ \___/ .___/\__,_/_/ \__,_/\__/_/\____/_/ /_/ - /_/ - -EOF -read -r -p "Switch from dbus-daemon to dbus-broker? " prompt -if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then -cat <>/etc/apt/sources.list -deb http://deb.debian.org/debian bullseye-backports main contrib non-free - -deb-src http://deb.debian.org/debian bullseye-backports main contrib non-free -EOF -apt-get update &>/dev/null -apt-get -t bullseye-backports install -y dbus-broker &>/dev/null -systemctl enable dbus-broker.service &>/dev/null -fi -read -r -p "Install BlueZ? " prompt -if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then -apt-get -t bullseye-backports install -y bluez* &>/dev/null -fi -echo -e "Finished, reboot for changes to take affect"