Add support for allowing subusers to access SFTP. (#918)
This commit is contained in:
parent
f61a5fa0cb
commit
d8be167a9c
10 changed files with 64 additions and 70 deletions
|
@ -103,7 +103,6 @@ return [
|
|||
'subuser_header' => 'Subuser Verwaltung',
|
||||
'server_header' => 'Server Verwaltung',
|
||||
'task_header' => 'Schedule Verwaltung',
|
||||
'sftp_header' => 'SFTP Verwaltung',
|
||||
'database_header' => 'Database Verwaltung',
|
||||
'power_start' => [
|
||||
'title' => 'Start Server',
|
||||
|
@ -125,17 +124,21 @@ return [
|
|||
'title' => 'Send Console Command',
|
||||
'description' => 'Der User darf die Konsole benutzen.',
|
||||
],
|
||||
'view_sftp' => [
|
||||
'title' => 'SFTP erlaubt',
|
||||
'description' => 'Ermöglicht dem Benutzer, eine Verbindung mit dem vom Daemon bereitgestellten SFTP-Server herzustellen.',
|
||||
],
|
||||
'list_files' => [
|
||||
'title' => 'List Files',
|
||||
'description' => 'Der User darf die Server-Dateien sehen.',
|
||||
],
|
||||
'edit_files' => [
|
||||
'title' => 'Edit Files',
|
||||
'description' => 'Der User darf die Server-Dateien sehen.',
|
||||
'description' => 'Der User darf die Server-Dateien sehen. SFTP ist von dieser Erlaubnis nicht betroffen.',
|
||||
],
|
||||
'save_files' => [
|
||||
'title' => 'Save Files',
|
||||
'description' => 'Der User darf die Server-Dateien bearbeiten.',
|
||||
'description' => 'Der User darf die Server-Dateien bearbeiten. SFTP ist von dieser Erlaubnis nicht betroffen.',
|
||||
],
|
||||
'move_files' => [
|
||||
'title' => 'Rename & Move Files',
|
||||
|
@ -233,18 +236,6 @@ return [
|
|||
'title' => 'Delete Schedule',
|
||||
'description' => 'Der User darf geplante Aktionen für den Server löschen.',
|
||||
],
|
||||
'view_sftp' => [
|
||||
'title' => 'View SFTP Details',
|
||||
'description' => 'Der User darf die SFTP Informationen sehen (nicht das Passwort).',
|
||||
],
|
||||
'view_sftp_password' => [
|
||||
'title' => 'View SFTP Password',
|
||||
'description' => 'Der User darf dass SFTP Passwort sehen.',
|
||||
],
|
||||
'reset_sftp' => [
|
||||
'title' => 'Reset SFTP Password',
|
||||
'description' => 'Der User darf dass SFTP Passwort zurücksetzen.',
|
||||
],
|
||||
'view_databases' => [
|
||||
'title' => 'View Database Details',
|
||||
'description' => 'Der User darf die Datenbankinformationen sehen.',
|
||||
|
@ -298,7 +289,6 @@ return [
|
|||
'sftp' => [
|
||||
'header' => 'SFTP Information',
|
||||
'header_sub' => 'Details für eine SFTP verbindung.',
|
||||
'change_pass' => 'Passwort ändern',
|
||||
'details' => 'SFTP Details',
|
||||
'conn_addr' => 'Adresse',
|
||||
'warning' => 'Bitte benutze SFTP und nicht FTP!.',
|
||||
|
|
|
@ -107,7 +107,6 @@ return [
|
|||
'subuser_header' => 'Subuser Management',
|
||||
'server_header' => 'Server Management',
|
||||
'task_header' => 'Schedule Management',
|
||||
'sftp_header' => 'SFTP Management',
|
||||
'database_header' => 'Database Management',
|
||||
'power_start' => [
|
||||
'title' => 'Start Server',
|
||||
|
@ -129,17 +128,21 @@ return [
|
|||
'title' => 'Send Console Command',
|
||||
'description' => 'Allows sending a command from the console. If the user does not have stop or restart permissions they cannot send the application\'s stop command.',
|
||||
],
|
||||
'view_sftp' => [
|
||||
'title' => 'SFTP Allowed',
|
||||
'description' => 'Allows user to connect to the SFTP server provided by the daemon.',
|
||||
],
|
||||
'list_files' => [
|
||||
'title' => 'List Files',
|
||||
'description' => 'Allows user to list all files and folders on the server but not view file contents.',
|
||||
],
|
||||
'edit_files' => [
|
||||
'title' => 'Edit Files',
|
||||
'description' => 'Allows user to open a file for viewing only.',
|
||||
'description' => 'Allows user to open a file for viewing only. SFTP is not effected by this permission.',
|
||||
],
|
||||
'save_files' => [
|
||||
'title' => 'Save Files',
|
||||
'description' => 'Allows user to save modified file contents.',
|
||||
'description' => 'Allows user to save modified file contents. SFTP is not effected by this permission.',
|
||||
],
|
||||
'move_files' => [
|
||||
'title' => 'Rename & Move Files',
|
||||
|
@ -237,18 +240,6 @@ return [
|
|||
'title' => 'Delete Schedule',
|
||||
'description' => 'Allows a user to delete a schedule from the server.',
|
||||
],
|
||||
'view_sftp' => [
|
||||
'title' => 'View SFTP Details',
|
||||
'description' => 'Allows user to view the server\'s SFTP information but not the password.',
|
||||
],
|
||||
'view_sftp_password' => [
|
||||
'title' => 'View SFTP Password',
|
||||
'description' => 'Allows user to view the SFTP password for the server.',
|
||||
],
|
||||
'reset_sftp' => [
|
||||
'title' => 'Reset SFTP Password',
|
||||
'description' => 'Allows user to change the SFTP password for the server.',
|
||||
],
|
||||
'view_databases' => [
|
||||
'title' => 'View Database Details',
|
||||
'description' => 'Allows user to view all databases associated with this server including the usernames and passwords for the databases.',
|
||||
|
@ -302,7 +293,6 @@ return [
|
|||
'sftp' => [
|
||||
'header' => 'SFTP Configuration',
|
||||
'header_sub' => 'Account details for SFTP connections.',
|
||||
'change_pass' => 'Change SFTP Password',
|
||||
'details' => 'SFTP Details',
|
||||
'conn_addr' => 'Connection Address',
|
||||
'warning' => 'The SFTP password is your account password. Ensure that your client is set to use SFTP and not FTP or FTPS for connections, there is a difference between the protocols.',
|
||||
|
|
|
@ -103,7 +103,6 @@ return [
|
|||
'subuser_header' => 'Subuser De Gestión',
|
||||
'server_header' => 'Administración Del Servidor',
|
||||
'task_header' => 'La Programación De La Administración',
|
||||
'sftp_header' => 'SFTP Gestión',
|
||||
'database_header' => 'Administración De Base De Datos',
|
||||
'power_start' => [
|
||||
'title' => 'Inicio Del Servidor',
|
||||
|
@ -125,17 +124,21 @@ return [
|
|||
'title' => 'Enviar Comandos De La Consola',
|
||||
'description' => 'Permite el envío de un comando desde la consola. Si el usuario no tiene permiso para detener o reiniciar, no puede enviar el comando de detención de la aplicación.',
|
||||
],
|
||||
'view_sftp' => [
|
||||
'title' => 'SFTP permitido',
|
||||
'description' => 'Permite al usuario conectarse al servidor SFTP proporcionado por el daemon.',
|
||||
],
|
||||
'list_files' => [
|
||||
'title' => 'Lista De Archivos',
|
||||
'description' => 'Permite al usuario a la lista de todos los archivos y carpetas en el servidor, pero no ver el contenido del archivo.',
|
||||
],
|
||||
'edit_files' => [
|
||||
'title' => 'Editar Archivos',
|
||||
'description' => 'Permite al usuario abrir un archivo solo para visualización.',
|
||||
'description' => 'Permite al usuario abrir un archivo solo para visualización. SFTP no se ve afectado por este permiso.',
|
||||
],
|
||||
'save_files' => [
|
||||
'title' => 'Guardar Archivos',
|
||||
'description' => 'Permite que el usuario guarde el archivo modificado contenido.',
|
||||
'description' => 'Permite que el usuario guarde el archivo modificado contenido. SFTP no se ve afectado por este permiso.',
|
||||
],
|
||||
'move_files' => [
|
||||
'title' => 'Renombrar Y Mover Archivos',
|
||||
|
@ -229,18 +232,6 @@ return [
|
|||
'title' => 'Eliminar Horario',
|
||||
'description' => 'Permite a un usuario para eliminar un programa desde el servidor.',
|
||||
],
|
||||
'view_sftp' => [
|
||||
'title' => 'Ver SFTP Detalles',
|
||||
'description' => 'Permite al usuario ver la información SFTP del servidor pero no la contraseña.',
|
||||
],
|
||||
'view_sftp_password' => [
|
||||
'title' => 'Ver SFTP Contraseña',
|
||||
'description' => 'Permite al usuario ver el SFTP contraseña para el servidor.',
|
||||
],
|
||||
'reset_sftp' => [
|
||||
'title' => 'Restablecer Contraseña SFTP',
|
||||
'description' => 'Le permite al usuario cambiar el SFTP contraseña para el servidor.',
|
||||
],
|
||||
'view_databases' => [
|
||||
'title' => 'Ver Detalles De Base De Datos',
|
||||
'description' => 'Permite al usuario ver todas las bases de datos asociadas con este servidor, incluidos los nombres de usuario y contraseñas de las bases de datos de.',
|
||||
|
@ -294,7 +285,6 @@ return [
|
|||
'sftp' => [
|
||||
'header' => 'SFTP Configuración',
|
||||
'header_sub' => 'Detalles de la cuenta para SFTP.',
|
||||
'change_pass' => 'Cambiar Contraseña SFTP',
|
||||
'details' => 'SFTP Detalles',
|
||||
'conn_addr' => 'Dirección De Conexión',
|
||||
'warning' => 'Asegúrese de que su cliente está configurado para utilizar SFTP y FTP no o FTPS para las conexiones, hay una diferencia entre los protocolos.',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue