diff --git a/bundles/mariadb/README.md b/bundles/mariadb/README.md new file mode 100644 index 0000000..854ce9e --- /dev/null +++ b/bundles/mariadb/README.md @@ -0,0 +1 @@ +https://mariadb.com/kb/en/systemd/#configuring-mariadb-to-write-the-error-log-to-syslog diff --git a/bundles/mariadb/files/override.conf b/bundles/mariadb/files/override.conf new file mode 100644 index 0000000..ae2fccd --- /dev/null +++ b/bundles/mariadb/files/override.conf @@ -0,0 +1,11 @@ +% for section, options in sorted(conf.items()): +[${section}] +% for key, value in sorted(options.items()): +% if value is None: +${key} +% else: +${key} = ${value} +% endif +% endfor + +% endfor diff --git a/bundles/mariadb/items.py b/bundles/mariadb/items.py new file mode 100644 index 0000000..031a386 --- /dev/null +++ b/bundles/mariadb/items.py @@ -0,0 +1,89 @@ +from shlex import quote + +def mariadb(sql, **kwargs): + kwargs_string = ''.join(f" --{k} {v}" for k, v in kwargs.items()) + return f"mariadb{kwargs_string} -Bsr --execute {quote(sql)}" + +directories = { + '/var/lib/mysql': { + 'owner': 'mysql', + 'group': 'mysql', + 'needs': [ + 'zfs_dataset:tank/mariadb', + ], + 'needed_by': [ + 'pkg_apt:mariadb-server', + ], + }, +} + +files = { + '/etc/mysql/conf.d/override.conf': { + 'context': { + 'conf': node.metadata.get('mariadb/conf'), + }, + 'content_type': 'mako', + }, +} + +svc_systemd = { + 'mariadb.service': { + 'needs': [ + 'pkg_apt:mariadb-server', + ], + }, +} + +actions = { + 'mariadb_sec_remove_anonymous_users': { + 'command': mariadb("DELETE FROM mysql.global_priv WHERE User=''"), + 'unless': mariadb("SELECT count(0) FROM mysql.global_priv WHERE User = ''") + " | grep -q '^0$'", + 'needs': [ + 'svc_systemd:mariadb.service', + ], + 'triggers': [ + 'svc_systemd:mariadb.service:restart', + ], + }, + 'mariadb_sec_remove_remote_root': { + 'command': mariadb("DELETE FROM mysql.global_priv WHERE User='root' AND Host NOT IN ('localhost', '127.0.0.1', '::1')"), + 'unless': mariadb("SELECT count(0) FROM mysql.global_priv WHERE User='root' AND Host NOT IN ('localhost', '127.0.0.1', '::1')") + " | grep -q '^0$'", + 'needs': [ + 'svc_systemd:mariadb.service', + ], + 'triggers': [ + 'svc_systemd:mariadb.service:restart', + ], + }, +} + +for db, conf in node.metadata.get('mariadb/databases', {}).items(): + actions[f'mariadb_create_database_{db}'] = { + 'command': mariadb(f"CREATE DATABASE {db}"), + 'unless': mariadb(f"SHOW DATABASES LIKE '{db}'") + f" | grep -q '^{db}$'", + 'needs': [ + 'svc_systemd:mariadb.service', + ], + } + actions[f'mariadb_user_{db}_create'] = { + 'command': mariadb(f"CREATE USER {db}"), + 'unless': mariadb(f"SELECT User FROM mysql.user WHERE User = '{db}'") + f" | grep -q '^{db}$'", + 'needs': [ + f'action:mariadb_create_database_{db}', + ], + } + pw = conf['password'] + actions[f'mariadb_user_{db}_password'] = { + 'command': mariadb(f"SET PASSWORD FOR {db} = PASSWORD('{conf['password']}')"), + 'unless': f'echo {quote(pw)} | mariadb -u {db} -e quit -p', + 'needs': [ + f'action:mariadb_user_{db}_create', + ], + } + actions[f'mariadb_grant_privileges_to_{db}'] = { + 'command': mariadb(f"GRANT ALL PRIVILEGES ON {db}.* TO '{db}'", database=db), + 'unless': mariadb(f"SHOW GRANTS FOR {db}") + f" | grep -q '^GRANT ALL PRIVILEGES ON `{db}`.* TO `{db}`@`%`'", + 'needs': [ + f'action:mariadb_user_{db}_create', + ], + } diff --git a/bundles/mariadb/metadata.py b/bundles/mariadb/metadata.py new file mode 100644 index 0000000..869e3e6 --- /dev/null +++ b/bundles/mariadb/metadata.py @@ -0,0 +1,36 @@ +defaults = { + 'apt': { + 'packages': { + 'mariadb-server': {}, + }, + }, + 'mariadb': { + 'databases': {}, + 'conf': { + # https://www.reddit.com/r/zfs/comments/u1xklc/mariadbmysql_database_settings_for_zfs + 'mysqld': { + 'skip-innodb_doublewrite': None, + 'innodb_flush_method': 'fsync', + 'innodb_doublewrite': '0', + 'innodb_use_atomic_writes': '0', + 'innodb_use_native_aio': '0', + 'innodb_read_io_threads': '10', + 'innodb_write_io_threads': '10', + 'innodb_buffer_pool_size': '26G', + 'innodb_flush_log_at_trx_commit': '1', + 'innodb_log_file_size': '1G', + 'innodb_flush_neighbors': '0', + 'innodb_fast_shutdown': '2', + }, + }, + }, + 'zfs': { + 'datasets': { + 'tank/mariadb': { + 'mountpoint': '/var/lib/mysql', + 'recordsize': '16384', + 'atime': 'off', + }, + }, + }, +} diff --git a/bundles/wordpress/README.md b/bundles/wordpress/README.md new file mode 100644 index 0000000..d623775 --- /dev/null +++ b/bundles/wordpress/README.md @@ -0,0 +1 @@ +https://developer.wordpress.org/advanced-administration/upgrade/upgrading/ diff --git a/bundles/wordpress/files/check_wordpress_insecure b/bundles/wordpress/files/check_wordpress_insecure new file mode 100644 index 0000000..e7294e8 --- /dev/null +++ b/bundles/wordpress/files/check_wordpress_insecure @@ -0,0 +1,25 @@ +#!/bin/bash + +SITE=$1 +VERSION=$(php -r "require('/opt/$SITE/wp-includes/version.php'); echo \$wp_version;") +STATUS=$(curl -ssL http://api.wordpress.org/core/stable-check/1.0/ | jq -r '.["'$VERSION'"]') + +echo "WordPress $VERSION is '$STATUS'" + +if [[ "$STATUS" == latest ]] +then + exit 0 +elif [[ "$STATUS" == outdated ]] +then + exit 1 +elif [[ "$STATUS" == insecure ]] +then + if test -f /etc/nginx/sites/$SITE + then + rm /etc/nginx/sites/$SITE + systemctl restart nginx + fi + exit 2 +else + exit 2 +fi diff --git a/bundles/wordpress/files/print-version.php b/bundles/wordpress/files/print-version.php new file mode 100644 index 0000000..3bf8de5 --- /dev/null +++ b/bundles/wordpress/files/print-version.php @@ -0,0 +1,5 @@ +info@elimu-kwanza.de', - }, - 'internal_dns': False, - }, 'cronekorkn.de': { 'content': 'nginx/redirect.conf', 'context': {