diff --git a/plugins/localdump/profiles/mysql_localhost_13306.ini b/plugins/localdump/profiles/mysql_localhost_13306.ini deleted file mode 100644 index bb2f511b8ae644062f27c933d386a7ef804ae825..0000000000000000000000000000000000000000 --- a/plugins/localdump/profiles/mysql_localhost_13306.ini +++ /dev/null @@ -1,44 +0,0 @@ -# ====================================================================== -# -# DOCKER MYSQL INSTANCE ON LOCAL EXPOSED PORT -# -# ====================================================================== - -[detect] -# ---------------------------------------------------------------------- -# what to detect -# ---------------------------------------------------------------------- - -binary = 'mysql,mysqldump' - -# a running process that must be found -process = 'mysqld|mariadb' - -# a port that must be open on a given host -tcp-port = 13306 -tcp-target = localhost - -# process that opens a port (see netstat -tulpen) - works for local services only -# "slirp4netns" is docker network stack -# "rootlesskit" is docker too -tcp-process = 'rootlesskit' - - -[set] -# ---------------------------------------------------------------------- -# data to apply if it was found -# ---------------------------------------------------------------------- - -su = '' -dbuser = 'root' -dbpassword = '12345678' - -# not soo nice - these information is seen in the process list -params = '--port={tcp-port} --password={dbpassword} --user={dbuser} --host={tcp-target} --skip-ssl' - -# https://dev.mysql.com/doc/refman/8.0/en/environment-variables.html -# das PW sollte man auch nicht in MYSQL_PWD ablegen -# env = 'export var1="happy meal"; export var2="new"; export var3="year!"' -env = '' - -# ----------------------------------------------------------------------