2019-04-15 08:03:25 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# pve-nag-buster.sh (v01) https://github.com/foundObjects/pve-nag-buster
|
|
|
|
# Copyright (C) 2019 /u/seaQueue (reddit.com/u/seaQueue)
|
|
|
|
#
|
|
|
|
# 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 !== 'Active'"
|
|
|
|
NAGFILE="/usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js"
|
|
|
|
|
|
|
|
# disable license nag: https://johnscs.com/remove-proxmox51-subscription-notice/
|
|
|
|
|
|
|
|
if $(grep -q "$NAGTOKEN" "$NAGFILE") ; then
|
|
|
|
echo "$0: Removing Nag ..."
|
|
|
|
sed -i.orig "s/$NAGTOKEN/false/g" "$NAGFILE"
|
|
|
|
systemctl restart pveproxy.service
|
|
|
|
fi
|
|
|
|
|
2019-04-18 18:59:25 +00:00
|
|
|
# disable paid repo list
|
2019-04-15 08:03:25 +00:00
|
|
|
|
2019-04-18 18:59: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
|
2019-04-18 18:59:25 +00:00
|
|
|
echo "$0: Disabling PVE paid repo list ..."
|
2019-04-15 08:03:25 +00:00
|
|
|
mv -f "$PAID_BASE.list" "$PAID_BASE.disabled"
|
|
|
|
fi
|