mirror of https://github.com/tteck/Proxmox.git
Compare commits
9 Commits
6e0f374285
...
4ea5186921
Author | SHA1 | Date |
---|---|---|
|
4ea5186921 | |
|
78bc2006bc | |
|
b58ae2b892 | |
|
f14b6f49d7 | |
|
a4a692f449 | |
|
02afb23aed | |
|
8b03579df9 | |
|
1edd9bfb39 | |
|
87cee4cd57 |
|
@ -10,6 +10,13 @@
|
||||||
- All LXC instances created using this repository come pre-installed with Midnight Commander, which is a command-line tool (`mc`) that offers a user-friendly file and directory management interface for the terminal environment.
|
- All LXC instances created using this repository come pre-installed with Midnight Commander, which is a command-line tool (`mc`) that offers a user-friendly file and directory management interface for the terminal environment.
|
||||||
- 🚨 **The scripts in the repository will no longer provide support for Proxmox VE 7 starting from July 2024 (scripts will not execute on PVE7). Subsequent <a href='https://forum.proxmox.com/threads/proxmox-ve-support-lifecycle.35755/' target='_blank' rel='noopener noreferrer'>Proxmox VE - Support Lifecycle</a>**
|
- 🚨 **The scripts in the repository will no longer provide support for Proxmox VE 7 starting from July 2024 (scripts will not execute on PVE7). Subsequent <a href='https://forum.proxmox.com/threads/proxmox-ve-support-lifecycle.35755/' target='_blank' rel='noopener noreferrer'>Proxmox VE - Support Lifecycle</a>**
|
||||||
|
|
||||||
|
## 2024-03-08
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- **Proxmox VE Post Install**
|
||||||
|
- Requires Proxmox Virtual Environment Version 8.1.1 or later.
|
||||||
|
|
||||||
## 2024-02-26
|
## 2024-02-26
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
@ -56,6 +56,10 @@ function update_script() {
|
||||||
header_info
|
header_info
|
||||||
if [[ ! -f /etc/systemd/system/changedetection.service ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
|
if [[ ! -f /etc/systemd/system/changedetection.service ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
|
||||||
msg_info "Updating ${APP} LXC"
|
msg_info "Updating ${APP} LXC"
|
||||||
|
if ! dpkg -s libjpeg-dev >/dev/null 2>&1; then
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y libjpeg-dev
|
||||||
|
fi
|
||||||
pip3 install changedetection.io --upgrade &>/dev/null
|
pip3 install changedetection.io --upgrade &>/dev/null
|
||||||
pip3 install playwright --upgrade &>/dev/null
|
pip3 install playwright --upgrade &>/dev/null
|
||||||
systemctl restart changedetection
|
systemctl restart changedetection
|
||||||
|
|
|
@ -22,6 +22,7 @@ $STD apt-get install -y \
|
||||||
build-essential \
|
build-essential \
|
||||||
dumb-init \
|
dumb-init \
|
||||||
gconf-service \
|
gconf-service \
|
||||||
|
libjpeg-dev \
|
||||||
libatk-bridge2.0-0 \
|
libatk-bridge2.0-0 \
|
||||||
libasound2 \
|
libasound2 \
|
||||||
libatk1.0-0 \
|
libatk1.0-0 \
|
||||||
|
|
|
@ -21,15 +21,6 @@ $STD apt-get install -y gpg
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
msg_info "Installing Mosquitto MQTT Broker"
|
msg_info "Installing Mosquitto MQTT Broker"
|
||||||
if [ "$PCT_OSTYPE" == "debian" ]; then
|
|
||||||
VERSION="$(awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release)"
|
|
||||||
# wget -qO- http://repo.mosquitto.org/debian/mosquitto-repo.gpg.key >/etc/apt/trusted.gpg.d/mosquitto-repo.asc
|
|
||||||
# wget -qO /etc/apt/sources.list.d/mosquitto-${VERSION}.list http://repo.mosquitto.org/debian/mosquitto-${VERSION}.list
|
|
||||||
gpg --keyserver keyserver.ubuntu.com --recv-keys 779B22DFB3E717B7 >/dev/null 2>&1
|
|
||||||
gpg --export 779B22DFB3E717B7 | tee /etc/apt/trusted.gpg.d/mosquitto.gpg >/dev/null 2>&1
|
|
||||||
echo "deb [arch=amd64 signed-by=/etc/apt/trusted.gpg.d/mosquitto.gpg] https://repo.mosquitto.org/debian ${VERSION} main" >/etc/apt/sources.list.d/mosquitto-${VERSION}.list
|
|
||||||
$STD apt-get update
|
|
||||||
fi
|
|
||||||
$STD apt-get -y install mosquitto
|
$STD apt-get -y install mosquitto
|
||||||
$STD apt-get -y install mosquitto-clients
|
$STD apt-get -y install mosquitto-clients
|
||||||
cat <<EOF >/etc/mosquitto/conf.d/default.conf
|
cat <<EOF >/etc/mosquitto/conf.d/default.conf
|
||||||
|
|
|
@ -127,7 +127,6 @@ server {
|
||||||
location / {
|
location / {
|
||||||
proxy_set_header Host $http_host;
|
proxy_set_header Host $http_host;
|
||||||
proxy_pass http://unix:/opt/tandoor/tandoor.sock;
|
proxy_pass http://unix:/opt/tandoor/tandoor.sock;
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
|
@ -46,7 +46,6 @@ msg_error() {
|
||||||
|
|
||||||
start_routines() {
|
start_routines() {
|
||||||
header_info
|
header_info
|
||||||
VERSION="$(awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release)"
|
|
||||||
|
|
||||||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "SOURCES" --menu "The package manager will use the correct sources to update and install packages on your Proxmox VE server.\n \nCorrect Proxmox VE sources?" 14 58 2 \
|
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "SOURCES" --menu "The package manager will use the correct sources to update and install packages on your Proxmox VE server.\n \nCorrect Proxmox VE sources?" 14 58 2 \
|
||||||
"yes" " " \
|
"yes" " " \
|
||||||
|
@ -55,10 +54,11 @@ start_routines() {
|
||||||
yes)
|
yes)
|
||||||
msg_info "Correcting Proxmox VE Sources"
|
msg_info "Correcting Proxmox VE Sources"
|
||||||
cat <<EOF >/etc/apt/sources.list
|
cat <<EOF >/etc/apt/sources.list
|
||||||
deb http://ftp.debian.org/debian ${VERSION} main contrib
|
deb http://deb.debian.org/debian bookworm main contrib
|
||||||
deb http://ftp.debian.org/debian ${VERSION}-updates main contrib
|
deb http://deb.debian.org/debian bookworm-updates main contrib
|
||||||
deb http://security.debian.org/debian-security ${VERSION}-security main contrib
|
deb http://security.debian.org/debian-security bookworm-security main contrib
|
||||||
EOF
|
EOF
|
||||||
|
echo 'APT::Get::Update::SourceListWarnings::NonFreeFirmware "false";' >/etc/apt/apt.conf.d/no-bookworm-firmware.conf
|
||||||
msg_ok "Corrected Proxmox VE Sources"
|
msg_ok "Corrected Proxmox VE Sources"
|
||||||
;;
|
;;
|
||||||
no)
|
no)
|
||||||
|
@ -73,7 +73,7 @@ EOF
|
||||||
yes)
|
yes)
|
||||||
msg_info "Disabling 'pve-enterprise' repository"
|
msg_info "Disabling 'pve-enterprise' repository"
|
||||||
cat <<EOF >/etc/apt/sources.list.d/pve-enterprise.list
|
cat <<EOF >/etc/apt/sources.list.d/pve-enterprise.list
|
||||||
# deb https://enterprise.proxmox.com/debian/pve ${VERSION} pve-enterprise
|
# deb https://enterprise.proxmox.com/debian/pve bookworm pve-enterprise
|
||||||
EOF
|
EOF
|
||||||
msg_ok "Disabled 'pve-enterprise' repository"
|
msg_ok "Disabled 'pve-enterprise' repository"
|
||||||
;;
|
;;
|
||||||
|
@ -89,7 +89,7 @@ EOF
|
||||||
yes)
|
yes)
|
||||||
msg_info "Enabling 'pve-no-subscription' repository"
|
msg_info "Enabling 'pve-no-subscription' repository"
|
||||||
cat <<EOF >/etc/apt/sources.list.d/pve-install-repo.list
|
cat <<EOF >/etc/apt/sources.list.d/pve-install-repo.list
|
||||||
deb http://download.proxmox.com/debian/pve ${VERSION} pve-no-subscription
|
deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription
|
||||||
EOF
|
EOF
|
||||||
msg_ok "Enabled 'pve-no-subscription' repository"
|
msg_ok "Enabled 'pve-no-subscription' repository"
|
||||||
;;
|
;;
|
||||||
|
@ -98,7 +98,6 @@ EOF
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if [[ "${VERSION}" == "bookworm" ]]; then
|
|
||||||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "CEPH PACKAGE REPOSITORIES" --menu "The 'Ceph Package Repositories' provides access to both the 'no-subscription' and 'enterprise' repositories (initially disabled).\n \nCorrect 'ceph package sources?" 14 58 2 \
|
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "CEPH PACKAGE REPOSITORIES" --menu "The 'Ceph Package Repositories' provides access to both the 'no-subscription' and 'enterprise' repositories (initially disabled).\n \nCorrect 'ceph package sources?" 14 58 2 \
|
||||||
"yes" " " \
|
"yes" " " \
|
||||||
"no" " " 3>&2 2>&1 1>&3)
|
"no" " " 3>&2 2>&1 1>&3)
|
||||||
|
@ -117,7 +116,6 @@ EOF
|
||||||
msg_error "Selected no to Correcting 'ceph package repositories'"
|
msg_error "Selected no to Correcting 'ceph package repositories'"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
|
||||||
|
|
||||||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "PVETEST" --menu "The 'pvetest' repository can give advanced users access to new features and updates before they are officially released.\n \nAdd (Disabled) 'pvetest' repository?" 14 58 2 \
|
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "PVETEST" --menu "The 'pvetest' repository can give advanced users access to new features and updates before they are officially released.\n \nAdd (Disabled) 'pvetest' repository?" 14 58 2 \
|
||||||
"yes" " " \
|
"yes" " " \
|
||||||
|
@ -126,7 +124,7 @@ EOF
|
||||||
yes)
|
yes)
|
||||||
msg_info "Adding 'pvetest' repository and set disabled"
|
msg_info "Adding 'pvetest' repository and set disabled"
|
||||||
cat <<EOF >/etc/apt/sources.list.d/pvetest-for-beta.list
|
cat <<EOF >/etc/apt/sources.list.d/pvetest-for-beta.list
|
||||||
# deb http://download.proxmox.com/debian/pve ${VERSION} pvetest
|
# deb http://download.proxmox.com/debian/pve bookworm pvetest
|
||||||
EOF
|
EOF
|
||||||
msg_ok "Added 'pvetest' repository"
|
msg_ok "Added 'pvetest' repository"
|
||||||
;;
|
;;
|
||||||
|
@ -233,9 +231,11 @@ while true; do
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
if ! command -v pveversion >/dev/null 2>&1; then
|
if ! pveversion | grep -Eq "pve-manager/(8.1.[1-9])"; then
|
||||||
header_info
|
msg_error "This version of Proxmox Virtual Environment is not supported"
|
||||||
msg_error "\n No PVE Detected!\n"
|
echo -e "Requires Proxmox Virtual Environment Version 8.1.1 or later."
|
||||||
|
echo -e "Exiting..."
|
||||||
|
sleep 2
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue