Skip to content

Commit

Permalink
Merge pull request dev-sec#55 from dev-sec/fix_vars
Browse files Browse the repository at this point in the history
fix missing variables
  • Loading branch information
rndmh3ro authored Oct 13, 2020
2 parents 9fd7193 + 7c89b8a commit 7c235c9
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion vars/Debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ mysql_daemon: mysql
mysql_hardening_mysql_conf_file: '/etc/mysql/my.cnf'
mysql_hardening_mysql_confd_dir: '/etc/mysql/conf.d'

mysql_hardening_log_dir: '/var/log/mysql/error.log'
mysql_hardening_log_file: '/var/log/mysql/error.log'

mysql_hardening_group: 'adm'

Expand Down
2 changes: 1 addition & 1 deletion vars/Oracle Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ mysql_daemon: mysqld
mysql_hardening_mysql_conf_file: '/etc/my.cnf'
mysql_hardening_mysql_confd_dir: '/etc/my.cnf.d'

mysql_hardening_log_dir: '/var/log/mysqld.log'
mysql_hardening_log_file: '/var/log/mysqld.log'

mysql_hardening_group: 'adm'
2 changes: 1 addition & 1 deletion vars/RedHat_8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
mysql_daemon: mariadb
mysql_hardening_mysql_conf_file: '/etc/my.cnf'
mysql_hardening_mysql_confd_dir: '/etc/my.cnf.d'
mysql_hardening_log_dir: '/var/log/mariadb/mariadb.log'
mysql_hardening_log_file: '/var/log/mariadb/mariadb.log'

mysql_python_package: 'python3-mysqlclient'

Expand Down
5 changes: 4 additions & 1 deletion vars/Ubuntu_16.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ mysql_daemon: mysql
mysql_hardening_mysql_conf_file: '/etc/mysql/my.cnf'
mysql_hardening_mysql_confd_dir: '/etc/mysql/conf.d'

mysql_hardening_log_dir: '/var/log/mysql/error.log'
mysql_hardening_log_file: '/var/log/mysql/error.log'

mysql_hardening_group: 'adm'

mysql_cnf_owner: 'mysql' # owner of /etc/mysql/*.cnf files
mysql_cnf_group: 'mysql' # owner of /etc/mysql/*.cnf files

mysql_python_package: "python-mysqldb"
5 changes: 4 additions & 1 deletion vars/Ubuntu_18.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ mysql_daemon: mysql
mysql_hardening_mysql_conf_file: '/etc/mysql/my.cnf'
mysql_hardening_mysql_confd_dir: '/etc/mysql/conf.d'

mysql_hardening_log_dir: '/var/log/mysql/error.log'
mysql_hardening_log_file: '/var/log/mysql/error.log'

mysql_hardening_group: 'adm'

mysql_cnf_owner: 'mysql' # owner of /etc/mysql/*.cnf files
mysql_cnf_group: 'mysql' # owner of /etc/mysql/*.cnf files

mysql_python_package: "python-mysqldb"
5 changes: 4 additions & 1 deletion vars/Ubuntu_20.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ mysql_daemon: mysql
mysql_hardening_mysql_conf_file: '/etc/mysql/my.cnf'
mysql_hardening_mysql_confd_dir: '/etc/mysql/conf.d'

mysql_hardening_log_dir: '/var/log/mysql/error.log'
mysql_hardening_log_file: '/var/log/mysql/error.log'

mysql_hardening_group: 'adm'

mysql_cnf_owner: 'mysql' # owner of /etc/mysql/*.cnf files
mysql_cnf_group: 'mysql' # owner of /etc/mysql/*.cnf files

mysql_python_package: "python3-mysqldb"

0 comments on commit 7c235c9

Please sign in to comment.