source configuration only for valid actions

This commit is contained in:
Jérémy Lecour 2022-04-28 18:59:16 +02:00 committed by Jérémy Lecour
parent 36d4a2e9a8
commit 80ebea31cf
2 changed files with 16 additions and 3 deletions

View file

@ -16,6 +16,7 @@ and this project **does not adhere to [Semantic Versioning](http://semver.org/sp
* use long options in some places
* output is normalized
* source legacy config after macros but before DROP policy
* source configuration only for valid actions
* improve legacy config parsing
### Deprecated

View file

@ -1049,27 +1049,39 @@ of the License.
END
}
source_configuration
check_unpersisted_state
case "${1:-''}" in
start)
source_configuration
check_unpersisted_state
start
;;
stop)
source_configuration
check_unpersisted_state
stop
;;
status)
source_configuration
check_unpersisted_state
status
;;
reset)
source_configuration
check_unpersisted_state
reset
;;
restart)
source_configuration
check_unpersisted_state
stop
start
;;