diff options
author | Cullum Smith <cullum@sacredheartsc.com> | 2025-03-27 22:30:15 -0400 |
---|---|---|
committer | Cullum Smith <cullum@sacredheartsc.com> | 2025-03-27 22:30:15 -0400 |
commit | 9539e58ae7653ffa5ef25cf7b18c67d705813334 (patch) | |
tree | edae9906b601e1f51d3236e83924562f588d0cf5 /scripts/hostclass | |
parent | d0f053485d6635d0128b815b422b421bbb836514 (diff) | |
download | infrastructure-9539e58ae7653ffa5ef25cf7b18c67d705813334.tar.gz |
more mysql stuff
Diffstat (limited to 'scripts/hostclass')
-rw-r--r-- | scripts/hostclass/desktop | 8 | ||||
-rw-r--r-- | scripts/hostclass/mysql_server | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/scripts/hostclass/desktop b/scripts/hostclass/desktop index c85ef28..0195b3d 100644 --- a/scripts/hostclass/desktop +++ b/scripts/hostclass/desktop @@ -6,6 +6,8 @@ : ${cups_host:='cups'} : ${ublock_whitelist:=''} : ${chrome_flags:=''} +: ${digikam_db_users:=''} +: ${digikam_db_host:="$mysql_host"} sddm_user=sddm cups_conf_dir=/usr/local/etc/cups @@ -181,3 +183,9 @@ install_template -m 0644 /usr/local/etc/mpv/mpv.conf # Start login manager. service sddm status || service sddm start > /dev/null 2>&1 < /dev/null || die 'failed to start sddm' + +# Create users for digikam db. +for user in $digikam_db_users; do + mysql_create_user "$digikam_db_host" "$user" gssapi + mysql_create_database "$digikam_db_host" digikam "$user" +done diff --git a/scripts/hostclass/mysql_server b/scripts/hostclass/mysql_server index 115b591..8fa0ce7 100644 --- a/scripts/hostclass/mysql_server +++ b/scripts/hostclass/mysql_server @@ -1,5 +1,7 @@ #!/bin/sh +: ${mysql_max_packet_size:='67108864'} # 64M + mysql_user=mysql mysql_home=/var/db/mysql mysql_tls_cert="${mysql_home}/mysql.crt" |