initial commit of file from CVS for smeserver-remoteuseraccess on Sat Sep 7 21:00:51 AEST 2024
This commit is contained in:
56
root/etc/e-smith/events/actions/conf-shell
Normal file
56
root/etc/e-smith/events/actions/conf-shell
Normal file
@@ -0,0 +1,56 @@
|
||||
#!/usr/bin/perl -w
|
||||
|
||||
package esmith;
|
||||
|
||||
use strict;
|
||||
use Errno;
|
||||
use esmith::config;
|
||||
use esmith::util;
|
||||
|
||||
my %conf;
|
||||
tie %conf, 'esmith::config';
|
||||
|
||||
my %accounts;
|
||||
tie %accounts, 'esmith::config', '/home/e-smith/db/accounts';
|
||||
|
||||
my $event = $ARGV [0];
|
||||
my $userName = $ARGV [1];
|
||||
|
||||
die "Username argument missing." unless defined ($userName);
|
||||
|
||||
my $value = $accounts {$userName};
|
||||
my ($type, %properties) = split (/\|/, $value, -1);
|
||||
|
||||
if ($type ne 'user')
|
||||
{
|
||||
die "Account $userName is not a user account; modify user failed.\n";
|
||||
}
|
||||
|
||||
# defaults to rssh with no rights
|
||||
my $Shell=$properties{'Shell'} || 'rssh';
|
||||
|
||||
if (($Shell eq 'bash') || ($Shell eq 'sudo'))
|
||||
{
|
||||
$Shell = '/bin/bash';
|
||||
}
|
||||
else
|
||||
{
|
||||
$Shell = '/usr/bin/rssh';
|
||||
}
|
||||
|
||||
my $cmd = "/usr/sbin/usermod";
|
||||
$cmd .= " -s \"$Shell\"";
|
||||
$cmd .= " '$userName'";
|
||||
|
||||
my $discard = `$cmd`;
|
||||
if ($? != 0)
|
||||
{
|
||||
die "Failed to modify account $userName.\n";
|
||||
}
|
||||
|
||||
esmith::util::processTemplate (\%conf, "/etc/sudoers");
|
||||
chmod 0440, "/etc/sudoers";
|
||||
|
||||
esmith::util::processTemplate (\%conf, "/etc/rssh.conf");
|
||||
|
||||
esmith::util::processTemplate (\%conf, "/etc/proftpd.conf");
|
0
root/etc/e-smith/events/smeserver-remoteuseraccess-update/.gitignore
vendored
Normal file
0
root/etc/e-smith/events/smeserver-remoteuseraccess-update/.gitignore
vendored
Normal file
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="bg">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>Отдалечен достъп на потребителите</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH ключове</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Промяна на параметрите за отдалечен достъп на потребител</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH ключове</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Пътят за Chroot не е зададен</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Пътят за Chroot не съществува</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Изберете път за Chroot</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN достъп</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell достъп</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo достъп</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Включването на достъпа до bash shell за потребител създава риск за сигурността. Използвайте тази възможност ако знаете какво правите. По-сигурна възможност е да позволите достъп до rssh (sftp, ssh & rsync). </p> <p> Достъпът до Sudo позволява на потребителите да изпълняват команди с правата на root account без да знаят неговата парола. Това е за предпочитане, пред предоставянето на паролата ма root. Задаването на Sudo на "да" също задава shell на bash </p> <p> Достъпът до SHELL, VPN & FTP за потребители зависи от това дали достъпа е даден в настройките в панела за отдалечен достъп. </p> <p> Изберете FTP Chroot път от падащия списък или го въведете в текстовото поле, изборът от падащия списък ще промени текстовото поле. </p> <p> Въведете публичните SSH ключове за да позволите ssh достъп без пароли, ключовете трябва да се поставят като един ред, но той ще бъде пренесен на три или повече реда на екрана. За да изтриете всички ключове напишете "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Въведете публичните SSH ключове за да позволите ssh достъп без пароли, ключовете трябва да се поставят като един ред, но той ще бъде пренесен на три или повече реда на екрана. За да изтриете всички ключове напишете "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="da">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>Bruger Fjernadgang</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH nøgler</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Skift indstillinger for fjernadgang</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH nøgle</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chroot Path er ikke angivet</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot Path eksisterer ikke</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Vælg Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN adgang</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell adgang</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo adgang</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Indtast den offentlige SSH nøgle for at tillade adgang uden kodeord, nøgler skal indsættes som en enkelt linje, men vil blive ombrudt til tre eller flere linjer på skærmen. Skriv "deletekeys" For at slette alle nøgler.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="de">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>Benutzer-Fernzugriff</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH Schlüssel</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans><![CDATA[ Einstellungen zum Benutzer-Fernzugriff ändern <p> <align=right><a target="new" href="http://contribs.org/modules/phpwiki/index.php/Handbuch%20Deutsch%3A%20Erweiterungen%20%28contribs%29#x33.x2e.3x20.Benutzer-Fernzugriff">Online-Handbuch</a> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH Schlüssel</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot Pfad</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Nein Chroot Pfad</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot Pfad Falscher</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Chroot Pfad auswählen</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>VPN Zugang</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell Zugang</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo Zugang</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Für den SSH-Zugang ohne Kennwort geben Sie bitte den öffentlichen SSH-Schlüssel ein. Der Schlüssel sollte als ganze Zeile kopiert und eingefügt werden, erscheint dann allerdings auf dem Bildschirm in 3 Zeilen. Um den Schlüssel zu löschen, geben Sie "deletekeys" ein.</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="el">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>Χρήστες Απομεμακρυσμένης Πρόσβασης</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>Κλείδες SSH</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Αλλαγή ρυθμίσεων χρηστών με δικαίωμα απομεμακρυσμένης πρόσβασης</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>Κλείδες SSH</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Δεν δόθηκε Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Δεν υφίσταται το παραπάνω Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Επιλογή Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>Πρόσβαση RSSH + VPN</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Πρόσβαση Κελύφους (Shell)</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Πρόσβαση Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Εισάγετε τις δημόσιες Κλείδες SSH για να επιτρέψετε πρόσβαση ssh χωρίς κωδικούς, η επικόλληση των κλειδών θα πρέπει να γίνει σε μία γραμμή, αλλά θα αναδιπλωθούν σε τρεις ή περισσότερες γραμμές στην οθόνη. Για να διαγράψετε όλες τις κλείδες πληκτρολογήστε "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,91 @@
|
||||
<lexicon lang="en-us">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>User Remote Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Change user remote access settings</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH Keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chroot Path not given</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot Path does not exist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Select Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans> <![CDATA[
|
||||
<p>
|
||||
Enabling bash shell access for a user account poses a security risk.
|
||||
Only use this option if you know what you are doing. A safer option is to allow
|
||||
rssh access (sftp, ssh & rsync).
|
||||
</p>
|
||||
<p>
|
||||
Sudo access allows users to execute commands with the permissions
|
||||
of the root account without knowing the root password. This is more desirable
|
||||
than passing around the root password. Setting Sudo to yes also sets the shell to bash
|
||||
</p>
|
||||
<p>
|
||||
SHELL, VPN & FTP access for users depend on the
|
||||
settings in the Remote Access Panel being opened.
|
||||
</p>
|
||||
<p>
|
||||
Select an FTP Chroot path from the drop down box or enter it in the text field,
|
||||
the selection will overwrite the text field.
|
||||
</p>
|
||||
<p>
|
||||
Enter the public SSH Keys to allow ssh access without passwords,
|
||||
keys should be pasted as a single line,
|
||||
but they will wrap onto three or more lines in the display.
|
||||
To delete all keys type "deletekeys".
|
||||
</p>
|
||||
]]>
|
||||
</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans> Enter the public SSH Keys to allow ssh access without passwords,
|
||||
keys should be pasted as a single line,
|
||||
but they will wrap onto three or more lines in the display.
|
||||
To delete all keys type "deletekeys". </trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="es">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>Acceso de Usuario Remoto</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>Claves SSH</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Cambiar preferencias del acceso de usuario remoto</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>Claves SSH</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Ruta Chroot</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>No ha proporcionado la ruta chroot</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Ruta chroot no existe</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Seleccionar Ruta Chroot</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>Acceso RSSH y VPN</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Acceso Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Acceso sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Introduzca la clave publica SSH para permitir el acceso ssh sin clave. Necesita introducir la clave SSH en una sola linea, pero va a aparecer en múltiples lineas. Para borrar todas las claves, teclee "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="et">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>Kasutajate kaugahalduse juurdepääs</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Muuda kasutajate kaughalduse juurdepääsu seadeid</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH Keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chroot Path pole määratud</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot Path pole olemas</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Vali Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN juurdepääs</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell juurdepääs</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo juurdepääs</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="fr">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>Accès à distance Utilisateur</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>Clés SSH</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Modifier les paramètres d'accès à distance des utilisateurs</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>Clés SSH</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chemin Chroot</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chemin Chroot non défini</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Le chemin Chroot n'existe pas</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Sélectionnez le chemin Chroot</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>VPN + Accès RSSH</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Accès au Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Accès Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Entrez les clés publiques SSH Keys pour autoriser l'accès ssh sans mot de passe, chaque clé devant être collée sur une seule ligne (l'affichage sera tronqué sur 3 lignes ou plus). Pour supprimer toutes les clés, tapez "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="he">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>User Remote Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Change user remote access settings</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH Keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chroot Path not given</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot Path does not exist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Select Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="hu">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>User Remote Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Change user remote access settings</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>(1) Parancsértelmező (2) Héj</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH Keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chroot Path not given</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot Path does not exist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Select Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="id">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>User Remote Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Change user remote access settings</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH Keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chroot Path not given</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot Path does not exist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Select Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="it">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>Accesso Remoto Utente</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>Chiavi SSH</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Modifica impostazioni di accesso remoto dell'utente</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>Chiavi SSH</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Percorso Chroot</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Percorso Chroot non definito</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Percorso Chroot inesistente</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Selezionare il percorso Chroot</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>Accesso RSSH + VPN</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Accesso Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Accesso Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Inserire la chiave SSH pubblica per consentire l'accesso pubblico senza password; la chiave deve essere incollata come una riga unica ma verrà divisa in tre o più righe a video. Per cancellare tutte le chiavi digitare "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="ja">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>User Remote Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Change user remote access settings</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>シェル</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH Keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chroot Path not given</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot Path does not exist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Select Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="nb">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>User Remote Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Change user remote access settings</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Stav</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH Keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chroot Path not given</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot Path does not exist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Select Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="nl">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>Toegang voor gebruiker op afstand</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH sleutels</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Verander instellingen voor gebruiker op afstand</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH sleutels</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot Pad</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chroot Pad niet opgegeven</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot Pad bestaat niet</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Kies Chroot Pad</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN toegang</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell Toegang</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo Toegang</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Geef de publieke SSH sleutels op om toegang voor ssh toe te staan zonder wachtwoord, sleutels moeten worden geplakt als één enkele regel maar zullen worden verspreid over die of meer regels in het scherm. Om alle sleutels te verwijderen, type dan \"deletekeys\".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="pl">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>User Remote Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Change user remote access settings</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Powłoka</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH Keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chroot Path not given</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot Path does not exist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Select Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="pt-br">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>Acesso Remoto do Usuário</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>Chaves SSH</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Mudar configurações de acesso remoto do usuário</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>Chaves SSH</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Caminho do CHROOT</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Caminho do CHROOT não fornecido</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Caminho do CHROOT não existe</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Selecione o caminho do CHROOT</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>Acesso RSSH e VPN</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Acesso Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Acesso Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Entre as chave de SSH públicas para permitir acesso SSH sem senhas, as chaves devem ser coladas como uma linha simples mas serão quebradas em três ou mais linhas para exibição na tela. Para apagar todas as chaves escreva "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="pt">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>Acesso Remoto do Usuário</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>Chaves SSH</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Mudar configurações de acesso remoto do usuário</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>Chaves SSH</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Caminho do CHROOT</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Caminho do CHROOT não fornecido</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Caminho do CHROOT não existe</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Selecione o caminho do CHROOT</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>Acesso RSSH e VPN</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Acesso Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Acesso Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Entre as chave de SSH públicas para permitir acesso SSH sem senhas, as chaves devem ser coladas como uma linha simples mas serão quebradas em três ou mais linhas para exibição na tela. Para apagar todas as chaves escreva "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="ro">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>User Remote Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Change user remote access settings</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH Keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chroot Path not given</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot Path does not exist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Select Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="ru">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>Пользователь удаленного доступа</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH ключи</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Изменение параметров удаленного доступа пользователя</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Оболочка</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH ключи</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot путь</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chroot путь не задан</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot путь не существует</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Выберите Chroot путь</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN допступ</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell доступ</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo доступ</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="sl">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>User Remote Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Change user remote access settings</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH Keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chroot Path not given</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot Path does not exist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Select Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="sv">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>Användares fjärråtkomst</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH-nycklar</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Ändra inställningar för användares fjärråtkomst</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Skal</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH-nycklar</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot-sökväg</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chroot-sökväg inte angiven</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot-sökväg existerar inte</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Välj Chroot-sökväg</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN-åtkomst</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Skalåtkomst</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo-åtkomst</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Ange de publika SSH-nycklarna som tillåter ssh-åtkomst utan lösenord. Nycklarna skall klistras in som en rad, men de presenteras på 3 eller fler rader i rutan. För att radera samtliga nycklar skriv "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="th">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>User Remote Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Change user remote access settings</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell, เชลล์</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH Keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chroot Path not given</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot Path does not exist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Select Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="tr">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>User Remote Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>Change user remote access settings</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH Keys</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chroot Path not given</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot Path does not exist</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>Select Chroot Path</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo Access</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> Enabling bash shell access for a user account poses a security risk. Only use this option if you know what you are doing. A safer option is to allow rssh access (sftp, ssh & rsync). </p> <p> Sudo access allows users to execute commands with the permissions of the root account without knowing the root password. This is more desirable than passing around the root password. Setting Sudo to yes also sets the shell to bash </p> <p> SHELL, VPN & FTP access for users depend on the settings in the Remote Access Panel being opened. </p> <p> Select an FTP Chroot path from the drop down box or enter it in the text field, the selection will overwrite the text field. </p> <p> Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys". </p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>Enter the public SSH Keys to allow ssh access without passwords, keys should be pasted as a single line, but they will wrap onto three or more lines in the display. To delete all keys type "deletekeys".</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="zh-cn">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>用户远程访问</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH 密钥</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>修改用户远程访问设置</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>Sudo</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH 密钥</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>Chroot 路径</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>Chroot 路径未设置</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>Chroot 路径不存在</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>选择 Chroot 路径</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN 访问</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>Shell 访问</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>Sudo 访问</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p> 启用 bash shell 访问用户账户存在安全风险。仅仅在您知道后果的情况下使用。 一个更安全的选项是允许RSSH访问(sftp, ssh & rsync)。</p> <p> Sudo 访问允许用户在不知道root密码的情况下以root权限执行命令。 这比在网络中传输root密码更为可取。启用Sudo也意味着启用 bash shell。</p> <p> SHELL, VPN & FTP 访问的前提是远程访问面板设置被开启。</p> <p> 在下面的框框或文本区填上一个 FTP Chroot 路径,位置栏会覆盖文本区域。</p> <p> 输入SSH公钥可以允许SSH无需密码访问,密钥每行粘贴一个,但显示时可能会占据三行或更多。要删除所有密钥请输入"deletekeys"。</p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>输入SSH公钥可以允许SSH无需密码访问,密钥每行粘贴一个,但显示时可能会占据三行或更多。要删除所有密钥请输入"deletekeys"。</trans>
|
||||
</entry>
|
||||
</lexicon>
|
@@ -0,0 +1,62 @@
|
||||
<lexicon lang="zh-tw">
|
||||
<entry>
|
||||
<base>User Remote Access</base>
|
||||
<trans>使用者遠端存取</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH keys</base>
|
||||
<trans>SSH金鑰</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>FORM_TITLE</base>
|
||||
<trans>改變使用者遠端存取設定</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>命令列</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDO</base>
|
||||
<trans>超級使用者</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSH_KEYS</base>
|
||||
<trans>SSH金鑰</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH</base>
|
||||
<trans>置換根目錄的路徑</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NOT_GIVEN</base>
|
||||
<trans>未給定置換根目錄的路徑</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>CHROOT_PATH_NON_EXISTANT</base>
|
||||
<trans>置換根目錄的路徑不存在</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SELECT_CHROOT_PATH</base>
|
||||
<trans>選擇置換根目錄的路徑</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>VPN_ACCESS</base>
|
||||
<trans>RSSH + VPN存取</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SHELL_ACCESS</base>
|
||||
<trans>命令列存取</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SUDOER_ACCESS</base>
|
||||
<trans>超級使用者存取</trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>MODIFY_DESCRIPTION</base>
|
||||
<trans><![CDATA[ <p>啟用使用者帳號的bash shell存取存在安全風險。僅能在您知道自己在做什麼的情況下使用這個選項。更安全的選擇是允許rssh存取(sftp, ssh & rsync)。</p> <p>Sudo存取允許使用者執行root帳號權限的命令而無需root密碼。此較傳遞root密碼更為可取。啟用Sudo亦啟用shell為bash。</p> <p> SHELL, VPN & FTP使用者存取基於遠端存取控制台設定的開啟。</p> <p>從下拉框或文字輸入區中選擇FTP置換根目錄的路徑,蓋選項將覆寫文字區。</p> <p>輸入SSH公開金鑰以允許ssh無需密碼存取,金鑰需以無間斷方式一整行貼上,但可能會以三行以上方式顯示。要刪除所有金鑰請輸入"deletekeys"。</p> ]]></trans>
|
||||
</entry>
|
||||
<entry>
|
||||
<base>SSHKEYS_DESCRIPTION</base>
|
||||
<trans>輸入SSH金鑰以允許ssh無密碼存取,金鑰需以無間斷方式一整行貼上,但可能會以三行以上方式顯示。要刪除所有金鑰請輸入"deletekeys"。</trans>
|
||||
</entry>
|
||||
</lexicon>
|
1
root/etc/e-smith/templates.metadata/etc/sudoers
Normal file
1
root/etc/e-smith/templates.metadata/etc/sudoers
Normal file
@@ -0,0 +1 @@
|
||||
PERMS=0440
|
3
root/etc/e-smith/templates/etc/sudoers/10root
Normal file
3
root/etc/e-smith/templates/etc/sudoers/10root
Normal file
@@ -0,0 +1,3 @@
|
||||
|
||||
root ALL=(ALL) ALL
|
||||
|
22
root/etc/e-smith/templates/etc/sudoers/20users
Normal file
22
root/etc/e-smith/templates/etc/sudoers/20users
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
my %accounts;
|
||||
tie %accounts, 'esmith::config', '/home/e-smith/db/accounts';
|
||||
|
||||
my $key;
|
||||
my $value;
|
||||
my $result = "";
|
||||
|
||||
while (($key,$value) = each %accounts)
|
||||
{
|
||||
my ($type, %properties) = split (/\|/, $value, -1);
|
||||
if ($type eq 'user')
|
||||
{
|
||||
if (defined($properties{'Sudoer'}) && $properties{'Sudoer'} eq 'yes')
|
||||
{
|
||||
$result .= "$key ALL=(ALL) ALL\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$result;
|
||||
}
|
103
root/etc/e-smith/web/functions/remoteuseraccess
Normal file
103
root/etc/e-smith/web/functions/remoteuseraccess
Normal file
@@ -0,0 +1,103 @@
|
||||
#!/usr/bin/perl -wT
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
# heading : Security
|
||||
# description : User Remote Access
|
||||
# navigation : 1000 1250
|
||||
#
|
||||
# Modified (c) 2002,2006 Stephen Noble <stephen@dungog.net>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
#----------------------------------------------------------------------
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use esmith::FormMagick::Panel::remoteuseraccess;
|
||||
|
||||
my $fm = esmith::FormMagick::Panel::remoteuseraccess->new();
|
||||
$fm->display();
|
||||
|
||||
__DATA__
|
||||
<form title="FORM_TITLE"
|
||||
header="/etc/e-smith/web/common/head.tmpl"
|
||||
footer="/etc/e-smith/web/common/foot.tmpl">
|
||||
|
||||
<page
|
||||
name="First"
|
||||
pre-event="print_status_message()">
|
||||
|
||||
<subroutine src="print_table" />
|
||||
</page>
|
||||
|
||||
<page
|
||||
name="PAGE_MODIFY"
|
||||
pre-event="turn_off_buttons()"
|
||||
post-event="change_settings()" >
|
||||
|
||||
<description>MODIFY_DESCRIPTION</description>
|
||||
|
||||
<field type="literal" id="User" >
|
||||
<label>ACCOUNT</label>
|
||||
</field>
|
||||
|
||||
<field type="literal" id="FullName">
|
||||
<label>USER_NAME</label>
|
||||
</field>
|
||||
|
||||
<field
|
||||
type="select"
|
||||
id="Shell"
|
||||
options="'', '/bin/bash'"
|
||||
value="Shell" >
|
||||
<label>SHELL_ACCESS</label>
|
||||
</field>
|
||||
|
||||
<field
|
||||
type="select"
|
||||
id="Sudoer"
|
||||
options="'no' => 'NO', 'yes' => 'YES'"
|
||||
value="Sudoer" >
|
||||
<label>SUDOER_ACCESS</label>
|
||||
</field>
|
||||
|
||||
<field
|
||||
type="select"
|
||||
id="VPNClientAccess"
|
||||
options="'no' => 'NO', 'yes' => 'YES'"
|
||||
value="VPNClientAccess" >
|
||||
<label>VPN_ACCESS</label>
|
||||
</field>
|
||||
|
||||
<field
|
||||
type="select"
|
||||
id="ChrootDir2"
|
||||
options="get_chroot_dir()"
|
||||
value="">
|
||||
<label>SELECT_CHROOT_PATH</label>
|
||||
</field>
|
||||
|
||||
<field
|
||||
type="text" size="50"
|
||||
id="ChrootDir"
|
||||
value=""
|
||||
validation="CheckChrootDirExists()">
|
||||
<label>CHROOT_PATH</label>
|
||||
</field>
|
||||
|
||||
<field type="textarea"
|
||||
rows="10" cols="30"
|
||||
id="sshKeys"
|
||||
value="get_keys_text()">
|
||||
<label>SSH_KEYS</label>
|
||||
</field>
|
||||
|
||||
<subroutine src="print_button('SAVE')" />
|
||||
|
||||
</page>
|
||||
|
||||
</form>
|
62
root/etc/e-smith/web/functions/userpanel-sshkeys
Normal file
62
root/etc/e-smith/web/functions/userpanel-sshkeys
Normal file
@@ -0,0 +1,62 @@
|
||||
#!/usr/bin/perl -wT
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
# heading : Your Settings
|
||||
# description : SSH keys
|
||||
# longdesc : add public keys to allow ssh access without passwords
|
||||
# navigation : 100 600
|
||||
#
|
||||
# Modified (c) 2002,2006 Stephen Noble <stephen@dungog.net>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# uses the FormMagick Panel for remoteuseraccess
|
||||
# but pulls username from $ENV{'REMOTE_USER'};
|
||||
# rather then being selected from a table
|
||||
#
|
||||
#----------------------------------------------------------------------
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use esmith::FormMagick::Panel::remoteuseraccess;
|
||||
|
||||
my $fm = esmith::FormMagick::Panel::remoteuseraccess->new();
|
||||
$fm->display();
|
||||
|
||||
__DATA__
|
||||
<form title="FORM_TITLE"
|
||||
header="/etc/e-smith/web/common/head.tmpl"
|
||||
footer="/etc/e-smith/web/common/foot.tmpl">
|
||||
|
||||
<page
|
||||
name="First"
|
||||
pre-event="print_status_message()"
|
||||
post-event="userpanel_change_settings()" >
|
||||
|
||||
<description>SSHKEYS_DESCRIPTION</description>
|
||||
|
||||
<field type="literal" id="User" value="get_panel_user()">
|
||||
<label>ACCOUNT</label>
|
||||
</field>
|
||||
|
||||
<field type="literal" id="FullName" value="get_full_name()">
|
||||
<label>USER_NAME</label>
|
||||
</field>
|
||||
|
||||
<field type="textarea"
|
||||
rows="10" cols="30"
|
||||
id="sshKeys"
|
||||
value="userpanel_keys_text()">
|
||||
<label>SSH_KEYS</label>
|
||||
</field>
|
||||
|
||||
<subroutine src="print_button('SAVE')" />
|
||||
|
||||
|
||||
</page>
|
||||
|
||||
</form>
|
Reference in New Issue
Block a user