2018-09-14 05:20:02 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-10-17 11:19:50 +02:00
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
|
|
|
#=================================================
|
|
|
|
|
2022-03-13 16:50:54 +01:00
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2024-01-31 21:35:45 +01:00
|
|
|
find_squid_version() {
|
|
|
|
# See if squid3 folder exits
|
|
|
|
if [ -d "/etc/squid3" ]; then
|
|
|
|
squid_name="squid3"
|
|
|
|
|
|
|
|
# If squid3 folder is not found look for squid folder
|
|
|
|
elif [ -d "/etc/squid" ]; then
|
|
|
|
squid_name="squid"
|
|
|
|
|
|
|
|
# If both folders are not found then call ynh_die
|
|
|
|
else
|
|
|
|
ynh_die --message="No squid folder found in /etc. Looks like squid3 package is not installed. Try installing it manually."
|
|
|
|
fi
|
|
|
|
|
|
|
|
ynh_app_setting_set --app="$app" --key="squid_name" --value="$squid_name"
|
|
|
|
}
|
|
|
|
|
2022-03-13 16:50:54 +01:00
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-08 11:26:35 +01:00
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|