- Move dns.bash from global to local,

- Add installation support of default.bash in local or global.
This commit is contained in:
2025-08-17 11:55:43 +02:00
parent dfeabaf379
commit 7a2bd651d7
2 changed files with 7 additions and 6 deletions

View File

@@ -12,11 +12,12 @@ fi
# Includes
#-----------------------------------------------------------------------------------------------------------------------------------
. /usr/global/lib/default.bash
#[ -e /var/cache/dns.cache ] && . /var/cache/dns.cache
if [[ -e /usr/local/lib/default.bash ]]
then
. /usr/local/lib/default.bash
else
. /usr/global/lib/default.bash
fi

View File

@@ -12,7 +12,7 @@ fi
# Includes
#-----------------------------------------------------------------------------------------------------------------------------------
. /usr/global/lib/dns.bash
. /usr/local/lib/dns.bash