2
0
mirror of https://github.com/tomav/docker-mailserver synced 2025-09-05 16:56:06 +00:00

scripts: more consistency in start-mailserver.sh (#2587)

* consistently name functions (starting with `_`) in `start-mailserver.sh`

Most of the functions that execute the different stacks during startup
were not prefixed with `_`, but all our other functions are. This has
now been fixed.

* cleanup in `start-mailserver.sh`

I adjusted the comments for all sections in the start script so they are
properly displayed again.
This commit is contained in:
Georg Lauterbach
2022-05-15 23:37:21 +02:00
committed by GitHub
parent 777d4a8cb7
commit b7e5d42e09
5 changed files with 22 additions and 20 deletions

View File

@@ -1,6 +1,6 @@
#! /bin/bash
function setup
function _setup
{
_log 'info' 'Configuring mail server'
for FUNC in "${FUNCS_SETUP[@]}"