mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
remove unnecessary return 0
statements (#3290)
See <https://github.com/docker-mailserver/docker-mailserver/pull/3285#issuecomment-1521706729>
This commit is contained in:
parent
cd7d9b1977
commit
b6261c7387
|
@ -39,7 +39,6 @@ function _chown_var_mail_if_necessary
|
||||||
_log 'trace' 'Fixing /var/mail permissions'
|
_log 'trace' 'Fixing /var/mail permissions'
|
||||||
chown -R 5000:5000 /var/mail || return 1
|
chown -R 5000:5000 /var/mail || return 1
|
||||||
fi
|
fi
|
||||||
return 0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function _require_n_parameters_or_print_usage
|
function _require_n_parameters_or_print_usage
|
||||||
|
@ -64,7 +63,6 @@ function _adjust_mtime_for_postfix_maincf
|
||||||
then
|
then
|
||||||
touch -d '2 seconds ago' /etc/postfix/main.cf
|
touch -d '2 seconds ago' /etc/postfix/main.cf
|
||||||
fi
|
fi
|
||||||
return 0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function _reload_postfix
|
function _reload_postfix
|
||||||
|
|
Loading…
Reference in a new issue