initial commit

This commit is contained in:
2024-07-17 15:30:34 +02:00
commit 347e4e3de1
86 changed files with 18464 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
- User needs login rights
CREATE USER guacamole PASSWORD 'supersecret';
CREATE DATABASE guacamole owner guacamole;
- init database
docker run --rm guacamole/guacamole /opt/guacamole/bin/initdb.sh --postgres > initdb.sql
psql -U guacamole -d guacamole < initdb.sql
- set user rights
GRANT ALL ON ALL TABLES IN SCHEMA public TO guacamole;
GRANT ALL ON ALL SEQUENCES IN SCHEMA public TO guacamole;