This totally LGTM
minimized showcase
$ cat test.sh
#!/bin/bash
echo ORIG
server_up=false
if [ ! $server_up ]; then
echo "not false = true"
fi
server_up=true
if [ ! $server_up ]; then
echo "not true = true"
fi
echo FIX
server_up=false
if ! $server_up; then
echo "not false = true"
fi
server_up=true
if ! $server_up; then
echo "not true = true"
fi
$ ./test.sh
ORIG
FIX
not false = true
** Changed in: mysql-5.7 (Ubuntu)
Status: New => Triaged
--
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1735930
Title:
Bug in /usr/share/mysql/mysql-systemd-start script
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.7/+bug/1735930/+subscriptions
--
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs