/usr/share/tripleo-image-elements/mariadb-dev/install.d/03-mariadb-dev is in python-tripleo-image-elements 0.7.1-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/bash
set -eux
install-packages libmariadb-dev
# TODO: fedora mysql_config has to be tweaked to exclude probes_mysql lib
# https://mariadb.atlassian.net/browse/MDEV-5793
FILE=$(which mysql_config)
if $FILE --libs_r | grep probes_mysql;then
sed -i.orig "s/-lprobes_mysql//" $FILE
fi
|