Update scaling-governor.sh

- A full code overhaul.
- Include an option to configure a crontab for ensuring that the CPU Scaling Governor configuration persists across reboots.
pull/1909/head
tteckster 2023-10-11 14:39:33 -04:00 committed by GitHub
parent 6aeda1d4ff
commit 2d85b461bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 39 additions and 45 deletions

View File

@ -8,51 +8,45 @@
header_info() { header_info() {
clear clear
cat <<EOF cat <<EOF
__________ __ __ ________ __ __ _____
/ ____/ __ \/ / / / / ___/ _ \/ / / / / ___/__ _ _____ _______ ___ _______
/ / / /_/ / / / / / /__/ ___/ /_/ / / (_ / _ \ |/ / -_) __/ _ \/ _ \/ __(_-<
/ /___/ ____/ /_/ / \___/_/ \____/ \___/\___/___/\__/_/ /_//_/\___/_/ /___/
\____/_/ \____/
Scaling Governors
EOF EOF
} }
while true; do header_info
header_info whiptail --backtitle "Proxmox VE Helper Scripts" --title "CPU Scaling Governors" --yesno "View/Change CPU Scaling Governors. Proceed?" 10 58 || exit
read -p "View CPU Scaling Governors. Proceed(y/n)?" yn current_governor=$(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor)
case $yn in GOVERNORS_MENU=()
[Yy]*) break ;; MSG_MAX_LENGTH=0
[Nn]*) exit ;; while read -r TAG ITEM; do
*) echo "Please answer yes or no." ;; OFFSET=2
esac ((${#ITEM} + OFFSET > MSG_MAX_LENGTH)) && MSG_MAX_LENGTH=${#ITEM}+OFFSET
done GOVERNORS_MENU+=("$TAG" "$ITEM " "OFF")
show_menu() { done < <(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors | tr ' ' '\n' | grep -v "$current_governor")
header_info scaling_governor=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "Current CPU Scaling Governor is set to $current_governor" --checklist "\nSelect the Scaling Governor to use:\n" 16 $((MSG_MAX_LENGTH + 58)) 6 "${GOVERNORS_MENU[@]}" 3>&1 1>&2 2>&3 | tr -d '"') || exit
echo -e "\nProxmox IP \033[36m$(hostname -I)\033[m" echo "${scaling_governor}" | tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor >/dev/null
echo -e "Current Kernel \033[36m$(uname -r)\033[m\n" current_governor=$(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor)
available_governors=$(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors) whiptail --backtitle "Proxmox VE Helper Scripts" --msgbox --title "Current CPU Scaling Governor" "\nCurrent CPU Scaling Governor has been set to $current_governor\n" 10 60
echo -e "Available CPU Scaling Governors\n\033[36m${available_governors}\033[m\n" CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "CPU Scaling Governor" --menu "This will establish a crontab to maintain the CPU Scaling Governor configuration across reboots.\n \nSetup a crontab?" 14 68 2 \
echo -e "Current CPU Scaling Governor\n\033[36m$(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor)\033[m\n" "yes" " " \
options="" "no" " " 3>&2 2>&1 1>&3)
i=1
for governor in $available_governors case $CHOICE in
do yes)
options+="** ${i}) \033[36m${governor}\033[m CPU Scaling Governor\n" NEW_CRONTAB_COMMAND="(sleep 60 && echo \"$current_governor\" | tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor)"
((i=i+1)) EXISTING_CRONTAB=$(crontab -l 2>/dev/null)
done if [[ -n "$EXISTING_CRONTAB" ]]; then
echo -e "${options}" TEMP_CRONTAB_FILE=$(mktemp)
echo -e "\033[31mNOTE: Settings return to default after reboot\033[m\n" echo "$EXISTING_CRONTAB" | grep -v "@reboot (sleep 60 && echo*" > "$TEMP_CRONTAB_FILE"
read -p "Please choose an option from the menu and press [ENTER] or x to exit." opt crontab "$TEMP_CRONTAB_FILE"
} rm "$TEMP_CRONTAB_FILE"
show_menu
while [[ "$opt" != "" ]]; do
num_governors=$(echo "$available_governors" | wc -w)
if [[ $opt -gt 0 ]] && [[ $opt -le $num_governors ]]; then
governor=$(echo "$available_governors" | cut -d' ' -f $opt)
echo "${governor}" | tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
elif [[ $opt == "x" ]] || [[ $opt == "\n" ]]; then
exit
else
show_menu
fi fi
show_menu (crontab -l 2>/dev/null; echo "@reboot $NEW_CRONTAB_COMMAND") | crontab -
done echo -e "\nCrontab Set (use 'crontab -e' to check)"
;;
no)
echo -e "\n\033[31mNOTE: Settings return to default after reboot\033[m\n"
;;
esac
echo -e "Current CPU Scaling Governor is set to \033[36m$current_governor\033[m\n"