mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-11-04 02:53:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			SQL
		
	
	
	
	
	
--
 | 
						|
-- Copyright (C) 2015 Glyptodon LLC
 | 
						|
--
 | 
						|
-- Permission is hereby granted, free of charge, to any person obtaining a copy
 | 
						|
-- of this software and associated documentation files (the "Software"), to deal
 | 
						|
-- in the Software without restriction, including without limitation the rights
 | 
						|
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 | 
						|
-- copies of the Software, and to permit persons to whom the Software is
 | 
						|
-- furnished to do so, subject to the following conditions:
 | 
						|
--
 | 
						|
-- The above copyright notice and this permission notice shall be included in
 | 
						|
-- all copies or substantial portions of the Software.
 | 
						|
--
 | 
						|
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | 
						|
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | 
						|
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 | 
						|
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | 
						|
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 | 
						|
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 | 
						|
-- THE SOFTWARE.
 | 
						|
--
 | 
						|
 | 
						|
 | 
						|
-- Create default user "guacadmin" with password "guacadmin"
 | 
						|
INSERT INTO guacamole_user (username, password_hash, password_salt)
 | 
						|
VALUES ('guacadmin',
 | 
						|
    E'\\xCA458A7D494E3BE824F5E1E175A1556C0F8EEF2C2D7DF3633BEC4A29C4411960',  -- 'guacadmin'
 | 
						|
    E'\\xFE24ADC5E11E2B25288D1704ABE67A79E342ECC26064CE69C5B3177795A82264');
 | 
						|
 | 
						|
-- Grant this user all system permissions
 | 
						|
INSERT INTO guacamole_system_permission
 | 
						|
SELECT user_id, permission::guacamole_system_permission_type
 | 
						|
FROM (
 | 
						|
    VALUES
 | 
						|
        ('guacadmin', 'CREATE_CONNECTION'),
 | 
						|
        ('guacadmin', 'CREATE_CONNECTION_GROUP'),
 | 
						|
        ('guacadmin', 'CREATE_USER'),
 | 
						|
        ('guacadmin', 'ADMINISTER')
 | 
						|
) permissions (username, permission)
 | 
						|
JOIN guacamole_user ON permissions.username = guacamole_user.username;
 | 
						|
 | 
						|
-- Grant admin permission to read/update/administer self
 | 
						|
INSERT INTO guacamole_user_permission
 | 
						|
SELECT guacamole_user.user_id, affected.user_id, permission::guacamole_object_permission_type
 | 
						|
FROM (
 | 
						|
    VALUES
 | 
						|
        ('guacadmin', 'guacadmin', 'READ'),
 | 
						|
        ('guacadmin', 'guacadmin', 'UPDATE'),
 | 
						|
        ('guacadmin', 'guacadmin', 'ADMINISTER')
 | 
						|
) permissions (username, affected_username, permission)
 | 
						|
JOIN guacamole_user          ON permissions.username = guacamole_user.username
 | 
						|
JOIN guacamole_user affected ON permissions.affected_username = affected.username;
 | 
						|
 |