Compare commits

..

No commits in common. "e95ecf1ae673b535a941d9d06bac147ebe53fed0" and "53e41977c8b0258bee697e7b53a37d06e4b85275" have entirely different histories.

2 changed files with 2 additions and 8 deletions

View file

@ -20,12 +20,6 @@ The **patch** part changes is incremented if multiple releases happen the same m
### Security
## [23.06] 2023-06-05
### Changed
* command "rcctl ls failed" exits with 1 if enabled daemon is not running, but there is no error
## [23.03] 2023-03-16
### Added

View file

@ -3,7 +3,7 @@
PROGNAME="dump-server-state"
REPOSITORY="https://gitea.evolix.org/evolix/dump-server-state"
VERSION="23.06"
VERSION="23.03"
readonly VERSION
dump_dir=
@ -432,7 +432,7 @@ task_rcctl() {
last_result=$(${rcctl_bin} ls failed > "${dump_dir}/rcctl-failed-services.txt")
last_rc=$?
if [ ${last_rc} -eq 0 ] || [ ${last_rc} -eq 1 ]; then
if [ ${last_rc} -eq 0 ]; then
debug "* failed services OK"
else
debug "* failed services ERROR"