proxmox-nag-buster/pve-nag-buster.sh

42 lines
1.5 KiB
Bash
Raw Normal View History

2020-01-13 01:27:12 +00:00
#!/bin/sh
2019-04-15 08:03:25 +00:00
#
# pve-nag-buster.sh (v03) https://github.com/foundObjects/pve-nag-buster
2019-04-15 08:03:25 +00:00
# Copyright (C) 2019 /u/seaQueue (reddit.com/u/seaQueue)
#
# Removes Proxmox VE 5.x+ license nags automatically after updates
#
2019-04-15 08:03:25 +00:00
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
NAGTOKEN="data.status.toLowerCase() !== 'active'"
2019-04-15 08:03:25 +00:00
NAGFILE="/usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js"
2020-06-12 12:22:54 +00:00
SCRIPT="$(basename "$0")"
2019-04-15 08:03:25 +00:00
# disable license nag: https://johnscs.com/remove-proxmox51-subscription-notice/
2020-01-12 06:42:38 +00:00
if grep -qs "$NAGTOKEN" "$NAGFILE" > /dev/null 2>&1; then
echo "$SCRIPT: Removing Nag ..."
2020-01-13 01:55:47 +00:00
sed -i.orig "s/$NAGTOKEN/false/g" "$NAGFILE"
systemctl restart pveproxy.service
2019-04-15 08:03:25 +00:00
fi
# disable paid repo list
2019-04-15 08:03:25 +00:00
PAID_BASE="/etc/apt/sources.list.d/pve-enterprise"
2019-04-15 08:03:25 +00:00
if [ -f "$PAID_BASE.list" ]; then
echo "$SCRIPT: Disabling PVE paid repo list ..."
2020-01-13 01:55:47 +00:00
mv -f "$PAID_BASE.list" "$PAID_BASE.disabled"
2019-04-15 08:03:25 +00:00
fi