From f9946b4a932288ab11e8f73873952eef931bcb63 Mon Sep 17 00:00:00 2001 From: Keegan Mullaney Date: Tue, 10 Dec 2019 17:35:31 -0800 Subject: [PATCH 1/2] fix merged lines looks like two lines got merged together in mysql command section --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d2bc78a..8e3073b 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,8 @@ This is used in the demonstration of development of Ansible Playbooks. # mysql -u -p mysql> CREATE DATABASE employee_db; - mysql> GRANT ALL ON *.* to db_user@'%' IDENTIFIED BY 'Passw0rd'; + mysql> CREATE USER 'db_user'@'localhost' IDENTIFIED BY 'Passw0rd'; + mysql> GRANT ALL ON employee_db.* TO 'db_user'@'localhost'; mysql> USE employee_db; mysql> CREATE TABLE employees (name VARCHAR(20)); From 3d940a3a1ddc119add06dc5bea359f4651577803 Mon Sep 17 00:00:00 2001 From: Keegan Mullaney Date: Sat, 28 Dec 2019 19:47:03 -0800 Subject: [PATCH 2/2] update gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 62c8935..8892ef9 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -.idea/ \ No newline at end of file +.idea/ +sftp-config.json