From 8ce144dddc49de0bd9bd41aa90ba37e1dede5f04 Mon Sep 17 00:00:00 2001
From: "Hahn Axel (hahn)" <axel.hahn@unibe.ch>
Date: Wed, 2 Oct 2024 14:24:25 +0200
Subject: [PATCH] remove axels local ini file

---
 .../profiles/mysql_localhost_13306.ini        | 44 -------------------
 1 file changed, 44 deletions(-)
 delete mode 100644 plugins/localdump/profiles/mysql_localhost_13306.ini

diff --git a/plugins/localdump/profiles/mysql_localhost_13306.ini b/plugins/localdump/profiles/mysql_localhost_13306.ini
deleted file mode 100644
index bb2f511..0000000
--- 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 = ''
-
-# ----------------------------------------------------------------------
-- 
GitLab