You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log_error "--syslog requested, but no 'logger' program found. Please ensure that 'logger' is in your PATH, or do not specify the --syslog option to mysqld_safe."
653
624
exit 1
@@ -878,7 +849,7 @@ fi
878
849
if @TARGET_LINUX@ &&test$flush_caches -eq 1
879
850
then
880
851
# Locate sync, ensure it exists.
881
-
if!my_which sync > /dev/null2>&1
852
+
if!command -v sync > /dev/null
882
853
then
883
854
log_error "sync command not found, required for --flush-caches"
884
855
exit 1
@@ -890,7 +861,7 @@ then
890
861
fi
891
862
892
863
# Locate sysctl, ensure it exists.
893
-
if!my_which sysctl > /dev/null2>&1
864
+
if!command -v sysctl > /dev/null
894
865
then
895
866
log_error "sysctl command not found, required for --flush-caches"
0 commit comments