mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2026-09-26 16:46:56 +00:00
ProxMenux modifies the host: it rewrites configuration files, installs packages, enables services. Until now nobody could say afterwards what had changed, and showing the script does not answer that question — a four-hundred-line function may alter two values, and the reader has no way to know which two. This adds the two halves of an answer. The change journal records what ProxMenux does as it does it. Eleven bash primitives capture the previous state, apply the change and record it in the same step, writing to a spool that the Monitor reads back. One hundred and thirteen functions across twenty-five scripts are instrumented, covering post-install, shared storage, security tooling, container conversions, disk operations and the PVE 8 to 9 upgrade path. The page shows the difference — rotate 7 becoming rotate 14 — and never the script. Restore and backup scripts are deliberately left out: a restore puts the host back to a state some other script already recorded. The Audit and reports page answers the other half: what state is this host in, regardless of who put it there. Forty-three checks across seven areas read the host and classify each result as critical, warning, observation, conformant, unverified or not applicable, with the evidence they read attached to each one. A declared policy lets the reader say what this particular host is expected to do — which guests must have a backup, which storages are essential — so the report judges the host against its own intent rather than a generic template. An inventory records the hardware, network and guest topology behind those readings, a comparison shows what moved between two runs, and six report profiles produce a printable document scoped to what the reader needs. Everything is available in the eight supported languages. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
159 lines
5.2 KiB
Bash
159 lines
5.2 KiB
Bash
#!/bin/bash
|
|
|
|
# ==========================================================
|
|
# ProxMenu - LXC Unprivileged to Privileged Converter
|
|
# ==========================================================
|
|
# Author : MacRimi
|
|
# Copyright : (c) 2024 MacRimi
|
|
# License : (GPL-3.0) (https://github.com/MacRimi/ProxMenux/blob/main/LICENSE)
|
|
# Version : 2.0
|
|
# Last Updated: 19/08/2025
|
|
# ==========================================================
|
|
# Description:
|
|
# This script converts an unprivileged LXC container to a privileged one
|
|
# by directly modifying the configuration file.
|
|
# WARNING: This reduces security. Use only when necessary.
|
|
# ==========================================================
|
|
|
|
# Configuration ============================================
|
|
LOCAL_SCRIPTS="/usr/local/share/proxmenux/scripts"
|
|
BASE_DIR="/usr/local/share/proxmenux"
|
|
UTILS_FILE="$BASE_DIR/utils.sh"
|
|
VENV_PATH="/opt/googletrans-env"
|
|
|
|
if [[ -f "$UTILS_FILE" ]]; then
|
|
source "$UTILS_FILE"
|
|
fi
|
|
|
|
if [[ -f "$LOCAL_SCRIPTS/global/pmx_journal.sh" ]]; then
|
|
source "$LOCAL_SCRIPTS/global/pmx_journal.sh"
|
|
fi
|
|
|
|
load_language
|
|
initialize_cache
|
|
|
|
# ==========================================================
|
|
|
|
|
|
|
|
select_unprivileged_container() {
|
|
|
|
CONTAINERS=$(pct list | awk 'NR>1 {print $1, $3}' | while read id name; do
|
|
if pct config "$id" | grep -q "^unprivileged: 1"; then
|
|
echo "$id" "$name"
|
|
fi
|
|
done | xargs -n2)
|
|
|
|
if [ -z "$CONTAINERS" ]; then
|
|
msg_error "$(translate 'No unprivileged containers available in Proxmox.')"
|
|
exit 1
|
|
fi
|
|
cleanup
|
|
CONTAINER_ID=$(whiptail --title "$(translate 'Select Unprivileged Container')" \
|
|
--menu "$(translate 'Select the unprivileged LXC container to convert:')" 20 70 10 $CONTAINERS 3>&1 1>&2 2>&3)
|
|
|
|
if [ -z "$CONTAINER_ID" ]; then
|
|
msg_error "$(translate 'No container selected. Exiting.')"
|
|
exit 1
|
|
fi
|
|
|
|
msg_ok "$(translate 'Unprivileged container selected:') $CONTAINER_ID"
|
|
}
|
|
|
|
show_backup_warning() {
|
|
if ! whiptail --title "$(translate 'Backup Recommendation')" \
|
|
--yes-button "$(translate 'Continue')" \
|
|
--no-button "$(translate 'Exit')" \
|
|
--yesno "$(translate 'It is recommended to create a backup before continuing.')" \
|
|
12 70; then
|
|
msg_info "$(translate 'Operation cancelled by user to create backup.')"
|
|
exit 0
|
|
fi
|
|
|
|
}
|
|
|
|
convert_to_privileged() {
|
|
local FUNC_VERSION="2.0"
|
|
pmx_journal_context "convert_to_privileged" "$FUNC_VERSION"
|
|
|
|
CONF_FILE="/etc/pve/lxc/$CONTAINER_ID.conf"
|
|
pmx_record_execution "convert CT ${CONTAINER_ID} to privileged mode" \
|
|
"stop CT if running and update ${CONF_FILE}"
|
|
|
|
CONTAINER_STATUS=$(pct status "$CONTAINER_ID" | awk '{print $2}')
|
|
|
|
if [ "$CONTAINER_STATUS" == "running" ]; then
|
|
msg_info "$(translate 'Stopping container') $CONTAINER_ID..."
|
|
pmx_record_execution "stop CT ${CONTAINER_ID} for unprivileged-to-privileged conversion" \
|
|
"pct shutdown ${CONTAINER_ID}"
|
|
pct shutdown "$CONTAINER_ID"
|
|
|
|
# Wait for container to stop
|
|
for i in {1..10}; do
|
|
sleep 1
|
|
if [ "$(pct status "$CONTAINER_ID" | awk '{print $2}')" != "running" ]; then
|
|
break
|
|
fi
|
|
done
|
|
|
|
# Verify container stopped
|
|
if [ "$(pct status "$CONTAINER_ID" | awk '{print $2}')" == "running" ]; then
|
|
msg_error "$(translate 'Failed to stop the container.')"
|
|
exit 1
|
|
fi
|
|
|
|
msg_ok "$(translate 'Container stopped.')"
|
|
else
|
|
msg_ok "$(translate 'Container is already stopped.')"
|
|
fi
|
|
|
|
msg_info "$(translate 'Creating backup of configuration file...')"
|
|
cp "$CONF_FILE" "$CONF_FILE.bak"
|
|
msg_ok "$(translate 'Configuration backup created:') $CONF_FILE.bak"
|
|
|
|
msg_info "$(translate 'Converting container to privileged...')"
|
|
pmx_edit_file "$CONF_FILE" '/^unprivileged: 1/d'
|
|
echo "unprivileged: 0" | pmx_append_file "$CONF_FILE"
|
|
|
|
msg_ok "$(translate 'Container successfully converted to privileged.')"
|
|
|
|
echo -e
|
|
msg_success "Press Enter to continue..."
|
|
read -r
|
|
}
|
|
|
|
finalize_conversion() {
|
|
local FUNC_VERSION="2.0"
|
|
pmx_journal_context "finalize_conversion" "$FUNC_VERSION"
|
|
|
|
if whiptail --yesno "$(translate 'Do you want to start the privileged container') $CONTAINER_ID $(translate 'now?')" 10 60; then
|
|
msg_info "$(translate 'Starting privileged container...')"
|
|
pmx_record_execution "start converted privileged CT ${CONTAINER_ID}" "pct start ${CONTAINER_ID}"
|
|
pct start "$CONTAINER_ID"
|
|
msg_ok "$(translate 'Privileged container') $CONTAINER_ID $(translate 'started successfully.')"
|
|
fi
|
|
}
|
|
|
|
main() {
|
|
|
|
show_proxmenux_logo
|
|
msg_title "$(translate "LXC Unprivileged to Privileged conversion")"
|
|
msg_info "$(translate 'Starting LXC Unprivileged to Privileged conversion process...')"
|
|
|
|
|
|
select_unprivileged_container
|
|
show_backup_warning
|
|
convert_to_privileged
|
|
finalize_conversion
|
|
|
|
msg_ok "$(translate 'LXC conversion from unprivileged to privileged completed successfully!')"
|
|
msg_ok "$(translate 'Converted container ID:') $CONTAINER_ID"
|
|
echo -e
|
|
msg_success "$(translate "Press Enter to return to menu...")"
|
|
read -r
|
|
exit 0
|
|
}
|
|
|
|
# Execute main function
|
|
main
|