mirror of https://github.com/tteck/Proxmox.git
Compare commits
3 Commits
563c9f41e8
...
2fbac0383a
Author | SHA1 | Date |
---|---|---|
|
2fbac0383a | |
|
4133d38062 | |
|
0cbc4751a0 |
|
@ -23,7 +23,7 @@ msg_ok "Installed Dependencies"
|
|||
|
||||
msg_info "Installing Sonarr"
|
||||
$STD apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 2009837CBFFD68F45BC180471F4F90DE2A9B4BF8
|
||||
sh -c 'echo "deb https://apt.sonarr.tv/debian testing-main main" > /etc/apt/sources.list.d/sonarr.list'
|
||||
echo "deb https://apt.sonarr.tv/debian testing-main main" >/etc/apt/sources.list.d/sonarr.list
|
||||
$STD apt-get update
|
||||
DEBIAN_FRONTEND=noninteractive apt-get -o Dpkg::Options::="--force-confold" install -qqy sonarr &>/dev/null
|
||||
msg_ok "Installed Sonarr"
|
||||
|
|
|
@ -155,6 +155,24 @@ EOF
|
|||
esac
|
||||
fi
|
||||
|
||||
if ! systemctl is-active --quiet pve-ha-lrm; then
|
||||
CHOICE=$(whiptail --title "HIGH AVAILABILITY" --menu "Enable high availability?" 10 58 2 \
|
||||
"yes" " " \
|
||||
"no" " " 3>&2 2>&1 1>&3)
|
||||
case $CHOICE in
|
||||
yes)
|
||||
msg_info "Enabling high availability"
|
||||
systemctl enable -q --now pve-ha-lrm
|
||||
systemctl enable -q --now pve-ha-crm
|
||||
systemctl enable -q --now corosync
|
||||
msg_ok "Enabled high availability"
|
||||
;;
|
||||
no)
|
||||
msg_error "Selected no to Enabling high availability"
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
if systemctl is-active --quiet pve-ha-lrm; then
|
||||
CHOICE=$(whiptail --title "HIGH AVAILABILITY" --menu "If you plan to utilize a single node instead of a clustered environment, you can disable unnecessary high availability (HA) services, thus reclaiming system resources.\n\nIf HA becomes necessary at a later stage, the services can be re-enabled.\n\nDisable high availability?" 18 58 2 \
|
||||
"yes" " " \
|
||||
|
@ -162,12 +180,9 @@ EOF
|
|||
case $CHOICE in
|
||||
yes)
|
||||
msg_info "Disabling high availability"
|
||||
systemctl stop pve-ha-lrm
|
||||
systemctl disable pve-ha-lrm &>/dev/null
|
||||
systemctl stop pve-ha-crm
|
||||
systemctl disable pve-ha-crm &>/dev/null
|
||||
systemctl stop corosync
|
||||
systemctl disable corosync &>/dev/null
|
||||
systemctl disable -q --now pve-ha-lrm
|
||||
systemctl disable -q --now pve-ha-crm
|
||||
systemctl disable -q --now corosync
|
||||
msg_ok "Disabled high availability"
|
||||
;;
|
||||
no)
|
||||
|
@ -175,7 +190,7 @@ EOF
|
|||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
|
||||
CHOICE=$(whiptail --title "UPDATE" --menu "\nUpdate Proxmox VE now?" 11 58 2 \
|
||||
"yes" " " \
|
||||
"no" " " 3>&2 2>&1 1>&3)
|
||||
|
|
Loading…
Reference in New Issue