Compare commits

...

4 Commits

Author SHA1 Message Date
tteckster
ad38e30579
Update USER_SUBMITTED_GUIDES.md 2023-06-12 14:25:01 -04:00
tteckster
bba46e5997
Update CHANGELOG.md 2023-06-12 12:26:26 -04:00
tteckster
808b748617
Update CHANGELOG.md 2023-06-12 12:23:25 -04:00
tteckster
5dbac97e7a
Update kernel-clean.sh
compatible with PVE8
2023-06-12 11:42:12 -04:00
3 changed files with 14 additions and 0 deletions

View File

@ -4,6 +4,15 @@
- 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.
## 2023-06-12
### Changed
- **Proxmox VE Edge Kernel**
- Removed, with the Proxmox opt-in kernels and the upcoming Proxmox Virtual Environment 8, edge kernels are no longer needed.
- **Proxmox VE Kernel Clean**
- Now compatible with PVE8.
## 2023-06-11 ## 2023-06-11
### Changed ### Changed

View File

@ -17,3 +17,5 @@
[Proxmox: Plex LXC with Alder Lake Transcoding](https://www.derekseaman.com/2023/04/proxmox-plex-lxc-with-alder-lake-transcoding.html) [Proxmox: Plex LXC with Alder Lake Transcoding](https://www.derekseaman.com/2023/04/proxmox-plex-lxc-with-alder-lake-transcoding.html)
[How To Backup Home Assistant In Proxmox](https://smarthomescene.com/guides/how-to-backup-home-assistant-in-proxmox/) [How To Backup Home Assistant In Proxmox](https://smarthomescene.com/guides/how-to-backup-home-assistant-in-proxmox/)
[Frigate VM on Proxmox with PCIe Coral TPU](https://www.derekseaman.com/2023/06/home-assistant-frigate-vm-on-proxmox-with-pcie-coral-tpu.html)

View File

@ -63,7 +63,9 @@ function check_root() {
fi fi
} }
VERSION="$(awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release)"
function other_kernel() { function other_kernel() {
if [[ "${VERSION}" == "bullseye" ]]; then
if [[ "$current_kernel" == *"edge"* ]]; then if [[ "$current_kernel" == *"edge"* ]]; then
echo -e "\n${CROSS} ${RD}ERROR:${CL} Proxmox ${BL}${current_kernel}${CL} Kernel Active" echo -e "\n${CROSS} ${RD}ERROR:${CL} Proxmox ${BL}${current_kernel}${CL} Kernel Active"
echo -e "\nAn Active PVE Kernel is required to use Kernel Clean\n" echo -e "\nAn Active PVE Kernel is required to use Kernel Clean\n"
@ -74,6 +76,7 @@ function other_kernel() {
echo -e "\nThe script cannot be used when running opt-in kernels. \nProxmox VE's package management relies directly on the current default kernel, which is 5.15. \nTherefore, it is not possible to utilize this script. In this case, you should use autoremove instead. \n`apt-get autoremove`\n" echo -e "\nThe script cannot be used when running opt-in kernels. \nProxmox VE's package management relies directly on the current default kernel, which is 5.15. \nTherefore, it is not possible to utilize this script. In this case, you should use autoremove instead. \n`apt-get autoremove`\n"
exit 1 exit 1
fi fi
fi
} }
function kernel_info() { function kernel_info() {