bump to version 0.99.18

This commit is contained in:
fatalerrors
2022-06-24 17:52:17 +02:00
parent e8c6f46572
commit da37fd3bae
52 changed files with 1268 additions and 435 deletions

View File

@@ -1,24 +1,24 @@
# ------------------------------------------------------------------------------
# Set system wide proxy if on the good network
# This file is part of the init.sh project
# Copyright (c) 2019-2021 Geoffray Levasseur <fatalerrors@geoffray-levasseur.org>
# Copyright (c) 2019-2022 Geoffray Levasseur <fatalerrors@geoffray-levasseur.org>
# ------------------------------------------------------------------------------
# This file is distributed under 3-clause BSD license.
# The complete license agreement can be obtained at:
# https://opensource.org/licenses/BSD-3-Clause
# ------------------------------------------------------------------------------
export VER_select_system_proxy="0.0.3"
export VER_select_system_proxy="0.0.5"
export DEP_select_system_proxy="upgrade_dist"
select_system_proxy()
{
if [[ -e /etc/apt/apt.conf.d/00proxy ]]; then
prnt I "Configuration proxy trouvé, on ajoute le switch."
if [[ -e /etc/apt/apt.conf.d/00proxy || -n $http_proxy ]]; then
prnt I "Proxy configuration found, adding the switcher for laptops."
backupdist /etc/rc.local
appendfile proxy.rc.local /etc/rc.local
else
prnt I "Pas de configurtion proxy, rien à faire."
prnt I "No proxy configuration set, nothing to do."
fi
NEED_REBOOT=true
}