Skip to content

Commit 9e1a149

Browse files
author
Kristan Kenney
committed
Merge branch 'fix/mariadb-service' into staging/fixes
2 parents b084e2f + e666e3a commit 9e1a149

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ All notable changes to this project will be documented in this file.
1818
- Corrected an issue where tooltips were not displayed when hovering over the top level menu items.
1919
- Improved handling of APT repository keys during installation.
2020
- Reworked the Let's Encrypt renew functionality to skip removed aliases.
21+
- Improved reliability of list handling when using IP lists.
22+
- Enforce minimum password requirements with visual indication of password strength.
23+
- Improved installer version detection.
24+
- Fix MariaDB service detection.
2125

2226
## [1.2.1] - Service Release
2327
### Features

bin/v-list-sys-services

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,9 @@ if [ ! -z "$DB_SYSTEM" ] && [ "$DB_SYSTEM" != 'remote' ]; then
227227
if [ -d "/etc/sysconfig" ]; then
228228
service='mysqld'
229229
proc_name='mysqld'
230-
if [ -e "/usr/lib/systemd/system/mariadb.service" ]; then
231-
service='mariadb'
232-
fi
230+
fi
231+
if [ -e "/usr/lib/systemd/system/mariadb.service" ]; then
232+
service='mariadb'
233233
fi
234234
fi
235235
if [ "$service" == 'pgsql' ]; then

0 commit comments

Comments
 (0)