Intégration de la branche localhost

This commit is contained in:
Jephté Clain 2015-04-24 12:32:33 +04:00
commit bdc6e9b112
1 changed files with 3 additions and 1 deletions

View File

@ -1728,11 +1728,13 @@ function ensure_user() {
}
function check_hostname() {
# Vérifier si le hostname courant est l'un des hôtes $1..*
# localhost matche toujours
local userhost user host path
for userhost in "$@"; do
splitfsep "$userhost" : userhost path
splituserhost "$userhost" user host
[ "$MYHOSTNAME" == "${host%%.*}" ] && return 0
host="${host%%.*}"
[ "$host" == localhost -o "$host" == "$MYHOSTNAME" ] && return 0
done
return 1
}