summaryrefslogtreecommitdiff
path: root/sysutils/ansible/patches/patch-library_mysql_db
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/ansible/patches/patch-library_mysql_db')
-rw-r--r--sysutils/ansible/patches/patch-library_mysql_db20
1 files changed, 0 insertions, 20 deletions
diff --git a/sysutils/ansible/patches/patch-library_mysql_db b/sysutils/ansible/patches/patch-library_mysql_db
deleted file mode 100644
index 4f7c97b5260..00000000000
--- a/sysutils/ansible/patches/patch-library_mysql_db
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-library_mysql_db,v 1.2 2013/04/13 17:51:57 riz Exp $
-
---- library/mysql_db.orig 2013-03-30 16:29:28.000000000 -0700
-+++ library/mysql_db 2013-04-13 09:13:23.000000000 -0700
-@@ -109,13 +109,13 @@
- return True
-
- def db_dump(host, user, password, db_name, target):
-- res = os.system("/usr/bin/mysqldump -q -h "+host+"-u "+user+ " -p"+password+" "
-+ res = os.system("@LOCALBASE@/bin/mysqldump -q -h "+host+"-u "+user+ " -p"+password+" "
- +db_name+" > "
- +target)
- return (res == 0)
-
- def db_import(host, user, password, db_name, target):
-- res = os.system("/usr/bin/mysql -h "+host+" -u "+user+ " -p"+password+" "
-+ res = os.system("@LOCALBASE@/bin/mysql -h "+host+" -u "+user+ " -p"+password+" "
- +db_name+" < "
- +target)
- return (res == 0)