chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:12:17 +08:00
commit cf8edb9f21
44281 changed files with 1655134 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
---- Changes since 1.270 ----
Added checkboxes and a button for deleting multiple shares at once.
Extracted all hard-coded english strings, so that the module can be converted to other languages.
+21
View File
@@ -0,0 +1,21 @@
require 'dfsadmin-lib.pl';
# acl_security_form(&options)
# Output HTML for editing security options for the format module
sub acl_security_form
{
my ($o) = @_;
print &ui_table_row($text{'acl_view'},
&ui_radio("view", $o->{'view'},
[ [ 0, $text{'yes'} ], [ 1, $text{'no'} ] ]));
}
# acl_security_save(&options)
# Parse the form for security options for the format module
sub acl_security_save
{
$_[0]->{'view'} = $in{'view'};
}
+40
View File
@@ -0,0 +1,40 @@
do 'dfs-lib.pl';
# backup_config_files()
# Returns files and directories that can be backed up
sub backup_config_files
{
return ( $config{'dfstab_file'} );
}
# pre_backup(&files)
# Called before the files are actually read
sub pre_backup
{
return undef;
}
# post_backup(&files)
# Called after the files are actually read
sub post_backup
{
return undef;
}
# pre_restore(&files)
# Called before the files are restored from a backup
sub pre_restore
{
return undef;
}
# post_restore(&files)
# Called after the files are restored from a backup
sub post_restore
{
return &apply_configuration();
}
1;
+3
View File
@@ -0,0 +1,3 @@
dfstab_file=/etc/dfs/dfstab
unshare_all_command=/etc/init.d/nfs.server stop
share_all_command=/etc/init.d/nfs.server start
+4
View File
@@ -0,0 +1,4 @@
dfstab_file=/etc/dfs/dfstab
unshare_all_command=/etc/init.d/nfs.server stop
share_all_command=/etc/init.d/nfs.server start
fstypes_file=/etc/dfs/fstypes
+3
View File
@@ -0,0 +1,3 @@
dfstab_file=/etc/dfs/dfstab
unshare_all_command=/etc/init.d/nfs.server stop
share_all_command=/etc/init.d/nfs.server start
+5
View File
@@ -0,0 +1,5 @@
line2=System configuration,11
dfstab_file=NFS exports file location,0
fstypes_file=Shared filesystems types file,3,None
share_all_command=Command to start sharing,0
unshare_all_command=Command to stop sharing,0
+5
View File
@@ -0,0 +1,5 @@
line2=Configuració del sistema,11
dfstab_file=Ubicació del fitxer d'exportacions NFS,0
fstypes_file=Fitxer de tipus de sistemes de fitxers compartits,3,Cap
share_all_command=Ordre per iniciar la compartició,0
unshare_all_command=Ordre per aturar la compartició,0
+5
View File
@@ -0,0 +1,5 @@
line2=Systemkonfiguration,11
dfstab_file=NFS Export-Datei,0
fstypes_file=Freigegebene Dateisystem-Arten Datei,3,Keine
share_all_command=Befehl zum Starten der Freigabe,0
unshare_all_command=Befehl zum Stoppen der Freigabe,0
+4
View File
@@ -0,0 +1,4 @@
dfstab_file=Localización del archivo de exportaciones NFS,0
fstypes_file=Archivo de tipos de sistema de archivos compartidos,3,Ninguno
share_all_command=Comando para arrancar compartición,0
unshare_all_command=Comando para parar compartición,0
+3
View File
@@ -0,0 +1,3 @@
dfstab_file=Chemin du fichier de partage NFS,0
share_all_command=Commande pour démarrer le partage,0
unshare_all_command=Commande pour arrêter le partage,0
+4
View File
@@ -0,0 +1,4 @@
dfstab_file=NFS export file-ok helye,0
fstypes_file=Megosztott file rendszerek típus file-ai,3,Nincs
share_all_command=A megosztást indító parancs,0
unshare_all_command=A megosztást leállító parancs,0
+5
View File
@@ -0,0 +1,5 @@
line2=Systeem configuratie,11
dfstab_file=NFS exports file locatie,0
fstypes_file=Gedeelde filesysteem type,3,Geen
share_all_command=Opdracht om delen te starten,0
unshare_all_command=Opdracht om delen te stoppen,0
+4
View File
@@ -0,0 +1,4 @@
dfstab_file=Lokalizacja pliku 'exports' NFS-u,0
fstypes_file=Rodzaj współdzielonego systemu plików,3,Brak
share_all_command=Polecenie włączające współdzielenie,0
unshare_all_command=Polecenie wyłączające współdzielenie,0
+3
View File
@@ -0,0 +1,3 @@
dfstab_file=Plats för NFS-exporterade filer,0
share_all_command=Kommando för att påbörja fildelning,0
unshare_all_command=Kommando för att avsluta fildelning,0
+3
View File
@@ -0,0 +1,3 @@
dfstab_file=NFS exports dosyası yeri,0
share_all_command=Paylaşımı başlatma komutu,0
unshare_all_command=Paylaşımı durdurma komutu,0
+3
View File
@@ -0,0 +1,3 @@
dfstab_file=NFS exports 文件位置,0
share_all_command=启动共享的路径,0
unshare_all_command=停止共享的路径,0
+4
View File
@@ -0,0 +1,4 @@
dfstab_file=NFS 檔案分享位置,0
fstypes_file=分享的檔案類型檔,3,無
share_all_command=啟動分享的指令,0
unshare_all_command=停止分享的指令,0
+1
View File
@@ -0,0 +1 @@
view=0
+15
View File
@@ -0,0 +1,15 @@
#!/usr/local/bin/perl
# delete_share.cgi
# Delete a share
require './dfs-lib.pl';
$access{'view'} && &error($text{'ecannot'});
&ReadParse();
@shlist = &list_shares();
$share = $shlist[$in{'idx'}];
&lock_file($config{'dfstab_file'});
&delete_share($share);
&unlock_file($config{'dfstab_file'});
&webmin_log("delete", "share", $share->{'dir'});
&redirect("");
+20
View File
@@ -0,0 +1,20 @@
#!/usr/local/bin/perl
# Delete several shares at once
require './dfs-lib.pl';
&error_setup($text{'delete_err'});
$access{'view'} && &error($text{'ecannot'});
&ReadParse();
@d = split(/\0/, $in{'d'});
@d || &error($text{'delete_enone'});
&lock_file($config{'dfstab_file'});
@shlist = &list_shares();
foreach $d (sort { $b <=> $a } @d) {
$share = $shlist[$d];
&delete_share($share);
}
&unlock_file($config{'dfstab_file'});
&webmin_log("delete", "shares", scalar(@d));
&redirect("");
+150
View File
@@ -0,0 +1,150 @@
# dfs-lib.pl
# Common functions for managing dfstab files
BEGIN { push(@INC, ".."); };
use WebminCore;
&init_config();
%access = &get_module_acl();
$default_type = 'nfs';
if ($config{'fstypes_file'} && open(TYPES, "<".$config{'fstypes_file'})) {
if (<TYPES> =~ /^(\S+)/) {
$default_type = $1;
}
close(TYPES);
}
%access = &get_module_acl();
# list_shares()
# Returns a list of structures containing share details
sub list_shares
{
local $lnum = 0;
local @rv;
open(DFS, "<".$config{'dfstab_file'});
while(<DFS>) {
s/\r|\n//g; s/#.*$//;
if (/^\s*\S*share\s+(.*)/) {
# Found a share line
local $share = { 'line' => $lnum,
'index' => scalar(@rv) };
local $line = $1;
while($line =~ /\\$/) {
$_ = <DFS>;
s/\r|\n//g; s/#.*$//;
$line =~ s/\\$//;
$line .= $_;
$lnum++;
}
$share->{'eline'} = $lnum;
if ($line =~ /\s(\/\S+)/) {
$share->{'dir'} = $1;
}
if ($line =~ /-d\s+"([^"]+)"/) { $share->{'desc'} = $1; }
elsif ($line =~ /-d\s+(\S+)/) { $share->{'desc'} = $1; }
if ($line =~ /-o\s+"([^"]+)"/) { $share->{'opts'} = $1; }
elsif ($line =~ /-o\s+(\S+)/) { $share->{'opts'} = $1; }
if ($line =~ /\s-F\s+(\S+)/) { $share->{'type'} = $1; }
else { $share->{'type'} = $default_type; }
push(@rv, $share);
}
$lnum++;
}
close(DFS);
return @rv;
}
# create_share(&share)
# Add a new share to the dfstab file
sub create_share
{
&open_tempfile(DFS, ">> $config{dfstab_file}");
&print_tempfile(DFS, &share_line($_[0]),"\n");
&close_tempfile(DFS);
}
# modify_share(&share)
# Modify an existing share
sub modify_share
{
local $lref = &read_file_lines($config{'dfstab_file'});
splice(@$lref, $_[0]->{'line'}, $_[0]->{'eline'} - $_[0]->{'line'} + 1,
&share_line($_[0]));
&flush_file_lines();
}
# share_line(&share)
sub share_line
{
local $s = "share";
$s .= " -d \"$_[0]->{'desc'}\"" if ($_[0]->{'desc'});
$s .= " -o $_[0]->{'opts'}" if ($_[0]->{'opts'});
$s .= " -F $_[0]->{'type'}" if ($_[0]->{'type'} &&
$_[0]->{'type'} ne $default_type);
$s .= " $_[0]->{'dir'}";
return $s;
}
# delete_share(&share)
# Delete the share for a particular directory
sub delete_share
{
local $lref = &read_file_lines($config{'dfstab_file'});
splice(@$lref, $_[0]->{'line'}, $_[0]->{'eline'} - $_[0]->{'line'} + 1);
&flush_file_lines();
}
# parse_options(string)
# Parse a mount options string like rw=foo,nosuid,... into the associative
# array %options. Parts with no value are given an empty string as the value
sub parse_options
{
local($opt);
undef(%options);
foreach $opt (split(/,/, $_[0])) {
if ($opt =~ /^([^=]+)=(.*)$/) {
$options{$1} = $2;
}
else {
$options{$opt} = "";
}
}
return \%options;
}
# join_options([&options])
# Returns a list of options from the %options array, in the form used in
# the dfstab file
sub join_options
{
local $o = $_[0] ? $_[0] : \%options;
local(@list, $k);
foreach $k (keys %$o) {
if ($o->{$k} eq "") {
push(@list, $k);
}
else {
push(@list, "$k=$o->{$k}");
}
}
return join(',', @list);
}
# apply_configuration()
# Apply the NFS configuration, returning undef on success or an error message
# on failure
sub apply_configuration
{
local $temp = &transname();
&system_logged("$config{unshare_all_command} >/dev/null 2>&1");
&system_logged("$config{share_all_command} >/dev/null 2>$temp");
local $why = `/bin/cat $temp`;
unlink($temp);
if ($why =~ /\S+/) {
return $why;
}
return undef;
}
1;
+131
View File
@@ -0,0 +1,131 @@
#!/usr/local/bin/perl
# edit_share.cgi
# Display a form for editing a shared directory
require './dfs-lib.pl';
$access{'view'} && &error($text{'ecannot'});
$s = $ARGV[0];
if (defined($s)) {
&ui_print_header(undef, $text{'edit_title1'}, "", "edit_share");
}
else {
&ui_print_header(undef, $text{'edit_title2'}, "", "create_share");
}
print &ui_form_start("save_share.cgi", "post");
if (defined($s)) {
print &ui_hidden("idx", $s),"\n";
@shlist = &list_shares();
$share = $shlist[$s];
}
# Directory and description section
print &ui_table_start($text{'edit_header1'}, "width=100%", 2);
print &ui_table_row(&hlink($text{'edit_dir'}, "dir"),
&ui_textbox("directory", $share->{'dir'}, 60)." ".
&file_chooser_button("directory", 1));
print &ui_table_row(&hlink($text{'edit_desc'}, "desc"),
&ui_textbox("desc", $share->{'desc'}, 60));
print &ui_table_end(),"<p>\n";
print "<table width=100% border>\n";
&parse_options($share->{'opts'});
print "<tr $tb>\n";
print "<td>",&hlink("<b>$text{'edit_ro'}</b>","ro"),"</td>\n";
print "<td>",&hlink("<b>$text{'edit_rw'}</b>","rw"),"</td>\n";
print "<td>",&hlink("<b>$text{'edit_root'}</b>","root"),"</td> </tr>\n";
# $fn = "<font size=-2>"; $efn = "</font>";
print "<tr $cb>\n";
print "<td valign=top>",
&ui_radio("readonly", !defined($options{"ro"}) ? 0 :
$options{"ro"} ? 2 : 1,
[ [ 0, $text{'edit_none'}."<br>" ],
[ 1, $text{'edit_all'}."<br>" ],
[ 2, $text{'edit_listed'}."<br>" ] ])."\n".
&ui_textarea("rolist", join("\n", split(/:/, $options{"ro"})), 8, 25),
"</td>\n";
print "<td valign=top>",
&ui_radio("readwrite", !defined($options{"rw"}) ? 0 :
$options{"rw"} ? 2 : 1,
[ [ 0, $text{'edit_none'}."<br>" ],
[ 1, $text{'edit_all'}."<br>" ],
[ 2, $text{'edit_listed'}."<br>" ] ])."\n".
&ui_textarea("rwlist", join("\n", split(/:/, $options{"rw"})), 8, 25),
"</td>\n";
print "<td valign=top>",
&ui_radio("root", !defined($options{"root"}) ? 0 :
$options{"root"} ? 2 : 1,
[ [ 0, $text{'edit_none'}."<br>&nbsp;<br>" ],
[ 2, $text{'edit_listed'}."<br>" ] ])."\n".
&ui_textarea("rtlist", join("\n", split(/:/, $options{"root"})), 8, 25),
"</td>\n";
print "</tr></table><p>\n";
if (!$access{'simple'}) {
print &ui_table_start($text{'edit_header2'}, "width=100%", 4);
print &ui_table_row(&hlink($text{'edit_nosub'}, "sub"),
&ui_radio("nosub", defined($options{"nosub"}) ? 1 : 0,
[ [ 0, $text{'yes'} ],
[ 1, $text{'no'} ] ]));
print &ui_table_row(&hlink($text{'edit_nosuid'}, "suid"),
&ui_radio("nosuid", defined($options{"nosuid"}) ? 1 : 0,
[ [ 0, $text{'yes'} ],
[ 1, $text{'no'} ] ]));
print &ui_table_row(&hlink($text{'edit_des'}, "des"),
&ui_radio("secure", defined($options{"secure"}) ? 1 : 0,
[ [ 1, $text{'yes'} ],
[ 0, $text{'no'} ] ]));
print &ui_table_row(&hlink($text{'edit_kerberos'}, "kerberos"),
&ui_radio("kerberos", defined($options{"kerberos"}) ? 1 : 0,
[ [ 1, $text{'yes'} ],
[ 0, $text{'no'} ] ]));
$user = defined($options{"anon"}) && $options{"anon"} != -1 ?
getpwuid($options{'anon'}) : undef;
print &ui_table_row(&hlink($text{'edit_anon'}, "anon"),
&ui_radio("anon_m", !defined($options{"anon"}) ? 0 :
$options{"anon"} == -1 ? 1 : 2,
[ [ 0, $text{'edit_anon0'} ],
[ 1, $text{'edit_anon1'} ],
[ 2, &ui_user_textbox("anon", $user) ] ]));
print &ui_table_row(&hlink($text{'edit_aclok'}, "aclok"),
&ui_radio("aclok", defined($options{"aclok"}) ? 1 : 0,
[ [ 1, $text{'yes'} ],
[ 0, $text{'no'} ] ]));
if ($gconfig{'os_version'} >= 7) {
print &ui_table_row(&hlink($text{'edit_public'}, "public"),
&ui_radio("public", defined($options{"public"}) ? 1 : 0,
[ [ 1, $text{'yes'} ],
[ 0, $text{'no'} ] ]));
print &ui_table_row(&hlink($text{'edit_index'}, "index"),
&ui_opt_textbox("index", $options{"index"}, 15,
$text{'edit_none'}));
}
print &ui_table_end();
}
if ($s ne "") {
print &ui_form_end([ [ "save", $text{'save'} ],
[ "delete", $text{'delete'} ] ]);
}
else {
print &ui_form_end([ [ "create", $text{'create'} ] ]);
}
&ui_print_footer("", $text{'index_return'});
+1
View File
@@ -0,0 +1 @@
<header> خيار موافق ACL؟ </header> إذا تم تعيين هذا الخيار ، فسيتم السماح لعملاء NFS الذين لا يمكنهم دعم Solaris ACL بالوصول للقراءة إلى ملف إذا كان لدى أي مستخدم أذونات قراءة. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Опция за ОКЛ? </header> Ако тази опция е зададена, на клиентите на NFS, които не могат да поддържат ACL-та на Solaris, ще бъде разрешен достъп за четене до файл, ако някой потребител има разрешения за четене. <hr>
+7
View File
@@ -0,0 +1,7 @@
<header>Opció ACL Ok</header>
Si aquesta opció està establerta, els clients NFS que no suporten les
ACLs de Solaris, tindran accés de lectura a un fitxer si qualsevol
usuari hi té permís de lectura.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> ACL Ok Option? </header> Pokud je tato možnost nastavena, klientům NFS, kteří nemohou podporovat ACL Solaris, bude povolen přístup ke čtení do souboru, pokud má jakýkoli uživatel oprávnění ke čtení. <hr>
+1
View File
@@ -0,0 +1 @@
<header> ACL Ok mulighed? </header> Hvis denne indstilling er indstillet, får NFS-klienter, der ikke kan understøtte Solaris ACL&#39;er, læseadgang til en fil, hvis en bruger har læsetilladelser. <hr>
+1
View File
@@ -0,0 +1 @@
<header>ACL-OK-Option?</header>Wenn diese Option aktiviert ist, erhalten NFS-Clients, die Solaris-ACLs nicht unterstützen, Lesezugriff auf eine Datei, sofern irgendein Benutzer über Leseberechtigungen verfügt.<hr>
+1
View File
@@ -0,0 +1 @@
<header>ACL-OK-Option?</header>Wenn diese Option aktiviert ist, erhalten NFS-Clients, die Solaris-ACLs nicht unterstützen, Lesezugriff auf eine Datei, sofern irgendein:e Benutzer:in über Leseberechtigungen verfügt.<hr>
+1
View File
@@ -0,0 +1 @@
<header> Επιλογή ACL Ok; </header> Εάν έχει οριστεί αυτή η επιλογή, οι πελάτες NFS που δεν μπορούν να υποστηρίξουν Solaris ACLs θα έχουν δικαίωμα ανάγνωσης σε ένα αρχείο εάν κάποιος χρήστης έχει δικαιώματα ανάγνωσης. <hr>
+7
View File
@@ -0,0 +1,7 @@
<header>¿Opción Ok de ACL?</header>
Si se activa esta opción, los clientes NFS que no pueden soportar los ACLs
de Solaris tendrán acceso de lectura a un archivo si cualquier usuario
tiene permisos de lectura.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> ACL Ok aukera? </header> Aukera hau ezarrita badago, Solaris ACLs onartzen ez duten NFS bezeroei fitxategi batera irakurtzeko baimena emango zaie erabiltzaileren batek baimenik badu. <hr>
+1
View File
@@ -0,0 +1 @@
<header> گزینه ACL خوب؟ </header> اگر این گزینه تنظیم شود ، در صورت دسترسی هر یک از کاربران مجوزهای خواندن ، به NFS مشتریانی که قادر به پشتیبانی از Solaris ACL نیستند ، اجازه دسترسی به پرونده را می دهند. <hr>
+1
View File
@@ -0,0 +1 @@
<header> ACL Ok vaihtoehto? </header> Jos tämä asetus on asetettu, NFS-asiakkaat, jotka eivät pysty tukemaan Solaris-ACL-luetteloita, saavat lukuoikeuden tiedostoon, jos jollain käyttäjällä on lukuoikeudet. <hr>
+4
View File
@@ -0,0 +1,4 @@
<header>Contrôle de Niveau d'Accès Correct?</header>
Si cette option est choisie, les clients NFS qui ne supporte pas les contrôles d'accès seront autorisés a lire les fichiers, si les permissions le permettent.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> ACL Ok opcija? </header> Ako je ova opcija postavljena, NFS klijentima koji ne mogu podržati Solaris ACLs bit će omogućen pristup čitanju datoteci ako bilo koji korisnik ima dozvole za čitanje. <hr>
+6
View File
@@ -0,0 +1,6 @@
<header>ACL Ok Option?</header>
If this option is set, NFS clients that cannot support Solaris ACLs will
be allowed read access to a file if any user has read permissions.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> ACL Ok opció? </header> Ha ez az opció be van állítva, az NFS-ügyfelek, amelyek nem tudják támogatni a Solaris ACL-eket, olvasási hozzáférést kapnak egy fájlhoz, ha bármelyik felhasználó rendelkezik olvasási engedélyekkel. <hr>
+1
View File
@@ -0,0 +1 @@
<header> ACL Ok Opzione? </header> Se questa opzione è impostata, i client NFS che non possono supportare ACL Solaris potranno accedere in lettura a un file se un utente dispone di autorizzazioni di lettura. <hr>
+1
View File
@@ -0,0 +1 @@
<header> ACL OKオプション? </header>このオプションが設定されている場合、Solaris ACLをサポートできないNFSクライアントは、いずれかのユーザーが読み取り許可を持っている場合、ファイルへの読み取りアクセスを許可されます。 <hr>
+1
View File
@@ -0,0 +1 @@
<header> ACL Ok 옵션? </header> 이 옵션을 설정하면 Solaris ACL을 지원할 수없는 NFS 클라이언트는 사용자에게 읽기 권한이있는 경우 파일에 대한 읽기 액세스가 허용됩니다. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Pilihan ACL Ok? </header> Sekiranya pilihan ini ditetapkan, klien NFS yang tidak dapat menyokong Solaris ACL akan diizinkan akses membaca ke fail jika ada pengguna yang mempunyai izin membaca. <hr>
+7
View File
@@ -0,0 +1,7 @@
<header>ACL Ok Optie?</header>
Indien deze optie is gezet zullen NFS clients die geen ondersteuning hebben
voor Solaris ACLs lees toegang krijgen tot een file, als een andere al lees
permissie heeft.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> ACL Ok alternativ? </header> Hvis dette alternativet er angitt, vil NFS-klienter som ikke kan støtte Solaris ACL-er, få tilgang til en fil hvis noen bruker har lesetillatelser. <hr>
+7
View File
@@ -0,0 +1,7 @@
<header>Opcja ACL Ok?</header>
Jeśli włączono tę opcję, klienci NFS nie obsługujący ACL-i Solarisa
uzyskają prawo odczytu pliku, o&nbsp;ile jakikolwiek użytkownik posiada
prawo odczytu.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> ACL Ok Option? </header> Se essa opção estiver configurada, os clientes NFS que não suportarem ACLs do Solaris terão acesso de leitura a um arquivo se algum usuário tiver permissões de leitura. <hr>
+1
View File
@@ -0,0 +1 @@
<header> ACL Ok Option? </header> Se essa opção estiver configurada, os clientes NFS que não suportarem ACLs do Solaris terão acesso de leitura a um arquivo se algum usuário tiver permissões de leitura. <hr>
+1
View File
@@ -0,0 +1 @@
<header> ACL Ok вариант? </header> Если этот параметр установлен, клиентам NFS, которые не могут поддерживать ACL-списки Solaris, будет разрешен доступ на чтение к файлу, если у любого пользователя есть разрешения на чтение. <hr>
+1
View File
@@ -0,0 +1 @@
<header> ACL Ok Option? </header> Ak je táto možnosť nastavená, klientom NFS, ktorí nemôžu podporovať ACL Solaris, bude povolený prístup na čítanie k súboru, ak má ktorýkoľvek používateľ oprávnenie na čítanie. <hr>
+6
View File
@@ -0,0 +1,6 @@
<header>ACL Ok?</header>
Om du har valt detta kommer NFS-klienter som inte stödjer Solaris-ACLer
att kunna läsa alla filer som överhuvudtaget har läsrättigheter.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> ACL Ok Seçeneği? </header> Bu seçenek ayarlanırsa, Solaris ACL&#39;lerini destekleyemeyen NFS istemcilerinin herhangi bir kullanıcının okuma izinleri varsa bir dosyaya okuma erişimine izin verilir. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Варіант ACL Ok? </header> Якщо цей параметр встановлений, клієнтам NFS, які не можуть підтримувати ACL-файли Solaris, буде дозволено читати доступ до файлу, якщо будь-який користувач має дозволи на читання. <hr>
+1
View File
@@ -0,0 +1 @@
<header> ACL确定选项吗? </header>如果设置此选项,则任何用户都具有读取权限,将允许不支持Solaris ACL的NFS客户端对文件进行读取访问。 <hr>
+5
View File
@@ -0,0 +1,5 @@
<header>ACL 確認選項?</header>
如果設定這個選項, 所有不支援 Solaris 存取控制列表的 NFS 控制端將可以讀取任何有讀取權限的檔案.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> مستخدم مجهول </header> عندما يصل المستخدم <tt>الجذر</tt> على عميل غير موجود في قائمة <a href=root>الوصول الجذر</a> إلى الملفات الموجودة على هذه المشاركة ، سيتم التعامل مع المستخدم <tt>الجذر</tt> على أنه المستخدم المحدد هنا. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Анонимен потребител </header> Когато <tt>коренният</tt> потребител на клиент, който не е в списъка на <a href=root>Root Access,</a> получава достъп до файлове на този споделен потребител, <tt>root</tt> потребител ще се третира като потребителя, избран тук. <hr>
+8
View File
@@ -0,0 +1,8 @@
<header>Usuari Anònim</header>
Quan l'usuari <tt>root</tt> d'un client que no està a la llista
d'<a href=root>Accés Root</a> accedeix fitxers d'aquest recurs,
l'usuari d'<a href=root>Accés Root</a> serà tractat com l'usuari
seleccionat aquí.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> Anonymní uživatel </header> Když uživatel <tt>root</tt> v klientovi, který není v seznamu <a href=root>kořenových</a> přístupů, přistupuje k souborům v této sdílené položce, bude s uživatelem <tt>root</tt> zacházeno jako s uživatelem vybraným zde. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Anonym bruger </header> Når <tt>rodbrugeren</tt> på en klient, der ikke er på <a href=root>Root Access</a> listen adgang filer på denne aktie, vil <tt>root-brugeren</tt> blive behandlet som den valgte her bruger. <hr>
+1
View File
@@ -0,0 +1 @@
<header>Anonymer Benutzer</header>Wenn der <tt>root</tt>-Benutzer eines Clients, der nicht in der <a href=root>Root-Zugriff</a>-Liste steht, auf Dateien in dieser Freigabe zugreift, wird er als der hier ausgewählte Benutzer behandelt.<hr>
+1
View File
@@ -0,0 +1 @@
<header>Anonyme:r Benutzer:in</header>Wenn der/die <tt>root</tt>-Benutzer:in eines Clients, der nicht in der <a href=root>Root-Zugriff</a>-Liste steht, auf Dateien in dieser Freigabe zugreift, wird er/sie als der/die hier ausgewählte Benutzer:in behandelt.<hr>
+1
View File
@@ -0,0 +1 @@
<header> Ανώνυμος χρήστης </header> Όταν ο <tt>ριζικός</tt> χρήστης σε έναν πελάτη που δεν βρίσκεται στη λίστα <a href=root>Root Access</a> αποκτά πρόσβαση σε αρχεία σε αυτό το κοινόχρηστο στοιχείο, ο <tt>ριζικός</tt> χρήστης θα αντιμετωπίζεται ως ο επιλεγμένος χρήστης εδώ. <hr>
+7
View File
@@ -0,0 +1,7 @@
<header>Usuario Anónimo</header>
Cuando el usuario root de un cliente que no está en la lista de
<a href=root.es>Acceso de Root</a> accede a archivos de esta compartición,
el usuario root será tratado como el usuario que seleccionemos aquí.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> Erabiltzaile anonimoa </header> <tt>Erro</tt> erabiltzaileak bezero bat ez dela on on Noiz <a href=root>Erro Access</a> zerrenda fitxategiak sartzen share honetan, <tt>erro</tt> erabiltzaileak Hemen hautatutako erabiltzaileak gisa tratatuko dira. <hr>
+1
View File
@@ -0,0 +1 @@
<header> کاربر ناشناس </header> هنگامی که کاربر <tt>ریشه</tt> در یک مشتری است که در نه <a href=root>دسترسی به ریشه</a> لیست دسترسی فایل ها بر روی این سهم، کاربر <tt>ریشه</tt> به عنوان کاربر در اینجا انتخاب درمان می شود. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Anonyymi käyttäjä </header> Kun <tt>pääkäyttäjä</tt> asiakkaassa, joka ei ole <a href=root>pääkäyttäjäluettelossa,</a> käyttää tämän jaon tiedostoja, <tt>pääkäyttäjää</tt> kohdellaan tässä valittuna käyttäjänä. <hr>
+4
View File
@@ -0,0 +1,4 @@
<header>Usager Anonyme</header>
Quand l'usager 'root' sur un client qui n'a pas <a href=root>l'Accès Root</a> dans la liste d'accès aux fichiers de ce partage, l'usager root sera traité comme l'usager sélectionné ici.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> Anonimni korisnik </header> Kad <tt>korijenski</tt> korisnik na klijentu koji nije na popisu <a href=root>Root Access</a> pristupa datotekama ovog dijeljenja, <tt>korijenski</tt> korisnik tretirat će se kao ovdje odabrani korisnik. <hr>
+7
View File
@@ -0,0 +1,7 @@
<header>Anonymous User</header>
When the <tt>root</tt> user on a client that is not on the
<a href=root>Root Access</a> list accesses files on this share, the
<tt>root</tt> user will be treated as the user selected here.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> Névtelen felhasználó </header> Ha egy olyan ügyfél <tt>gyökér</tt> felhasználója, amely nem szerepel a <a href=root>Root Access</a> listában, hozzáfér a megosztott fájlokhoz, akkor a <tt>gyökér</tt> felhasználót az itt kiválasztott felhasználóként kell kezelni. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Utente anonimo </header> Quando l&#39;utente <tt>root</tt> su un client che non si trova nell&#39;elenco <a href=root>Accesso root</a> accede ai file su questa condivisione, l&#39;utente <tt>root</tt> verrà trattato come l&#39;utente selezionato qui. <hr>
+1
View File
@@ -0,0 +1 @@
<header>匿名ユーザー</header>上にないクライアント<tt>のroot</tt>ユーザーときに<a href=root>ルートアクセス</a>リストは、この共有上のファイルにアクセスし<tt>、rootユーザー</tt>は、ここで選択したユーザーとして扱われます。 <hr>
+1
View File
@@ -0,0 +1 @@
<header> 익명의 사용자 </header> <a href=root>루트 액세스</a> 목록에없는 클라이언트의 <tt>루트</tt> 사용자가이 공유의 파일에 액세스하면 <tt>루트</tt> 사용자는 여기에서 선택한 사용자로 취급됩니다. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Pengguna Tanpa Nama </header> Apabila pengguna <tt>root</tt> pada klien yang tidak ada dalam senarai <a href=root>Akses Root</a> mengakses fail pada bahagian ini, pengguna <tt>root</tt> akan dianggap sebagai pengguna yang dipilih di sini. <hr>
+8
View File
@@ -0,0 +1,8 @@
<header>Anonieme Gebruiker</header>
Wanneer de <tt>root</tt> gebruiker op een client, die niet in de
<a href=root>Root Toegang</a> lijst voorkomt een file opent, zal de
<tt>root</tt> gebruiker worden behandeld als de hier geselecteerde
gebruiker.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> Anonym bruker </header> Når <tt>rotbrukeren</tt> på en klient som ikke er på <a href=root>Root Access-</a> listen, får tilgang til filer på denne delingen, vil <tt>rotbrukeren</tt> bli behandlet som brukeren som er valgt her. <hr>
+7
View File
@@ -0,0 +1,7 @@
<header>Użytkownik anonimowy</header>
Gdy użytkownik <tt>root</tt> na stacji klienckiej nie znajdującej się na
liście <a href=root>Dostępu dla root-a</a> uzyskuje dostęp do plików tego
zasobu, będzie on traktowany jako zaznaczony tu użytkownik.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> Usuário anônimo </header> Quando o usuário <tt>raiz</tt> em um cliente que não está na lista de <a href=root>Acesso Raiz</a> acessa arquivos nesse compartilhamento, o usuário <tt>raiz</tt> será tratado como o usuário selecionado aqui. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Usuário anônimo </header> Quando o usuário <tt>raiz</tt> em um cliente que não está na lista de <a href=root>Acesso Raiz</a> acessa arquivos nesse compartilhamento, o usuário <tt>raiz</tt> será tratado como o usuário selecionado aqui. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Анонимный пользователь </header> Когда пользователь <tt>root</tt> на клиенте, которого нет в списке <a href=root>корневого доступа,</a> получает <a href=root>доступ</a> к файлам в этой общей папке, пользователь <tt>root</tt> будет рассматриваться как выбранный здесь пользователь. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Anonymný používateľ </header> Keď užívateľ <tt>root,</tt> ktorý nie je na zozname <a href=root>Root Access,</a> pristupuje k súborom v tejto zdieľanej <tt>zložke,</tt> bude sa s <tt>koreňovým</tt> používateľom zaobchádzať ako s používateľom vybratým tu. <hr>
+5
View File
@@ -0,0 +1,5 @@
<header>Anonym användare</header>
Om en root på en klient som inte finns på <a href=root>Root-tillgång</a>-listanförsöker komma åt filer på denna delade resurs, kommer denna root att ha samma rättigheter som den användare du angivit här.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> Anonim kullanıcı </header> <a href=root>Kök Erişim</a> listesinde bulunmayan bir istemcideki <tt>kök</tt> kullanıcı bu paylaşımdaki dosyalara eriştiğinde, <tt>kök</tt> kullanıcı burada seçilen kullanıcı olarak değerlendirilir. <hr>
+1
View File
@@ -0,0 +1 @@
<header> Анонімний користувач </header> Коли користувач <tt>root</tt> на клієнті, який не знаходиться у списку <a href=root>кореневого доступу,</a> отримує доступ до файлів цієї спільної спільної доступу, користувач <tt>root</tt> буде розглядатися як обраний тут користувач. <hr>
+1
View File
@@ -0,0 +1 @@
<header>匿名用户</header>当不在<a href=root>根访问</a>列表上的客户端上的<tt></tt>用户访问此共享上的文件时,该<tt></tt>用户将被视为此处选择的用户。 <hr>
+5
View File
@@ -0,0 +1,5 @@
<header>匿名使用者</header>
當客戶端的 root 使用者不在 <a href=root>Root 存取</a>列表中時, 這個 root 將被當作這邊選擇的使用者.
<hr>
+1
View File
@@ -0,0 +1 @@
<header> إنشاء مشاركة NFS </header> يسمح لك هذا النموذج بإنشاء مشاركة NFS جديدة. <include share>
+1
View File
@@ -0,0 +1 @@
<header> Създаване на дял от NFS </header> Този формуляр ви позволява да създадете нов дял в NFS. <include share>
+5
View File
@@ -0,0 +1,5 @@
<header>Creació d'un Recurs NFS</header>
Aquest formulari permet crear un nou recurs NFS.
<include share>
+1
View File
@@ -0,0 +1 @@
<header> Vytvoření sdílené složky NFS </header> Tento formulář umožňuje vytvořit novou sdílenou složku NFS. <include share>
+1
View File
@@ -0,0 +1 @@
<header> Oprettelse af en NFS-andel </header> Denne formular giver dig mulighed for at oprette en ny NFS-aktie. <include share>
+1
View File
@@ -0,0 +1 @@
<header>Erstellen einer NFS-Freigabe</header>Mit diesem Formular kann eine neue NFS-Freigabe erstellt werden.<include share>
+1
View File
@@ -0,0 +1 @@
<header> Δημιουργία κοινοποίησης NFS </header> Αυτή η φόρμα σας επιτρέπει να δημιουργήσετε ένα νέο κοινόχρηστο στοιχείο NFS. <include share>
+5
View File
@@ -0,0 +1,5 @@
<header>Creando una Compartición NFS</header>
Este formulario te permite crear una nueva compartición NFS.
<include share.es>
+1
View File
@@ -0,0 +1 @@
<header> NFS Partekatzea sortzen </header> Inprimaki honek NFS partaidetza berria sortzeko aukera ematen du. <include share>
+1
View File
@@ -0,0 +1 @@
<header> ایجاد اشتراک NFS </header> این فرم به شما امکان می دهد یک اشتراک جدید NFS ایجاد کنید. <include share>
+1
View File
@@ -0,0 +1 @@
<header> NFS-jaon luominen </header> Tämän lomakkeen avulla voit luoda uuden NFS-jaon. <include share>
+5
View File
@@ -0,0 +1,5 @@
<header>Créer un Partage NFS</header>
Cette page vous permet de créer un nouveau partage NFS.
<include share>
+1
View File
@@ -0,0 +1 @@
<header> Stvaranje NFS udjela </header> Ovaj obrazac omogućuje vam stvaranje nove dionice NFS-a. <include share>

Some files were not shown because too many files have changed in this diff Show More