diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 17:47:31 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 17:47:31 +0000 |
commit | 236cb75e4430569627585a5818d9ce9bc85640f8 (patch) | |
tree | f84b5c0335eb76eb9df1e6c2c0004d7d9667c6e4 /debian | |
parent | Adding upstream version 2:4.17.12+dfsg. (diff) | |
download | samba-debian.tar.xz samba-debian.zip |
Adding debian version 2:4.17.12+dfsg-0+deb12u1.debian/2%4.17.12+dfsg-0+deb12u1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian')
225 files changed, 37716 insertions, 0 deletions
diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 0000000..df61a47 --- /dev/null +++ b/debian/README.Debian @@ -0,0 +1,32 @@ +NTP Integration +--------------- + +Add the following lines to your NTP configuration:: + + ntpsigndsocket /run/samba/ntp_signd + restrict default mssntp + +Bind9 Integration +----------------- + +Add the following line to your bind configuration (e.g. +/etc/bind/named.conf.local): + + include "/var/lib/samba/private/named.conf"; + +To enable dynamic DNS updates, add the following lines to your bind +configuration: + + options { + [...] + tkey-gssapi-keytab "/var/lib/samba/private/dns.keytab"; + [...] + }; + +If you enable bind, disable the Samba 4 internal DNS server by adding: + + server services = -dns + +to smb.conf. + + -- Jelmer Vernooij <jelmer@debian.org>, Wed, 11 Oct 2012 02:07:52 +0200 diff --git a/debian/README.source b/debian/README.source new file mode 120000 index 0000000..39531ee --- /dev/null +++ b/debian/README.source @@ -0,0 +1 @@ +README.source.md
\ No newline at end of file diff --git a/debian/README.source.md b/debian/README.source.md new file mode 100644 index 0000000..1558639 --- /dev/null +++ b/debian/README.source.md @@ -0,0 +1,99 @@ +The packaging is kept in https://salsa.debian.org/samba-team/samba. + +The version in unstable is on the `master` branch, with the corresponding +upstream version in the `upstream_4.17` branch (with `pristine-tar` information +in the `pristine-tar` branch). + +It should be possible to build the package by just running `gbp buildpackage`. + +Building +======== + +The first time: + + sudo apt install git-buildpackage pristine-tar cowbuilder dh-python + DIST=sid ARCH=amd64 git-pbuilder create + git clone https://salsa.debian.org/samba-team/samba.git + +Each time: + + cd samba + git checkout master + gbp pull --track-missing + gbp buildpackage --git-pbuilder --git-dist=sid --git-arch=amd64 + +Alternatively, source-only: + + cd samba + git checkout master + dpkg-buildpackage -S -d + # build the resulting ../samba_*.dsc with other means + +Merging minor upstream releases +=============================== + +Importing a new upstream version can be done like this: + + # set target version + upstream_version=4.17.0 + # go to git repo + cd $GIT_DIR + # Import upstream + git remote add upstream https://git.samba.org/samba.git + git fetch upstream + # go to the Debian branch + git checkout master + # sync all required branches + gbp pull --track-missing + # Import latest version + gbp import-orig --uscan \ + -u "${upstream_version}+dfsg" \ + --upstream-vcs-tag "samba-${upstream_version}" \ + --merge-mode merge + # all done :) + + +Please note that there are some files that are not dfsg-free and they need to +be filtered. The settings in the `gpb.conf` configuration file should take +care of that. + +Merging major upstream releases +=============================== + +With a new major version, more work is needed. + +After `gbp pull`: + + major_version="$(echo $upstream_version | sed 's/.[^.]\+$//')" + # Edit gbp.conf's upstream-branch + editor debian/gbp.conf + # Edit debian/watch's major version + editor debian/watch + # Edit this file's major version + editor debian/README.source.md + # Commit + git commit -m"Update d/gbp.conf, d/watch and d/README.source for ${major_version}" debian/gbp.conf debian/watch debian/README.source.md + # Create the new upstream branch + git branch "upstream_${major_version}" samba-${upstream_version} + # Import latest version + gbp import-orig --uscan \ + -u "${upstream_version}+dfsg" \ + --upstream-vcs-tag "samba-${upstream_version}" \ + --merge-mode=replace + +Then several steps are needed: + +- Check patches: + + QUILT_PATCHES=debian/patches quilt push -a + # then update or drop patches as needed + +- Bump talloc, tdb, and tevent Build-Depends in debian/control, from lib/*/wscript + + grep ^VERSION lib/{talloc,tdb,tevent}/wscript + editor debian/control + +- Check if other Build-Depends need to be bumped + + git diff origin/master.."samba-${upstream_version}" \ + buildtools/wafsamba/samba_third_party.py diff --git a/debian/TODO b/debian/TODO new file mode 100644 index 0000000..7671a1a --- /dev/null +++ b/debian/TODO @@ -0,0 +1,32 @@ + +This is an incomplete list of a number of issues that need to be fixed. + + +TODOs before upload to unstable + +- make a list of basic tests that should be done to ensure that the package is + acceptable for unstable (and run these tests) + +- investigate impact of changes to libraries to reverse dependencies and plan + transitions (if there are any) + - sssd + fixed in git (#725992) + - openchange + - evolution-mapi + +Other TODOs + +- handle ad-dc stuff + - have debconf question to configure ad dc + - the packaging from the old samba4/samba-ad-dc packages can help there + - convert the users to the new db, or document that this doesn't happen + automatically + +- what is the status of the docs? + + - documentation2.patch is upstream + - The former documentation.patch needs to be rewritten against the xml input + +- Add script to verify that headers are usable through current dependencies + (to prevent bugs like #525888) + diff --git a/debian/addshare.py b/debian/addshare.py new file mode 100755 index 0000000..8b5e3c4 --- /dev/null +++ b/debian/addshare.py @@ -0,0 +1,46 @@ +#!/usr/bin/python3 +# Helper to add a share in the samba configuration file +# Eventually this should be replaced by a call to samba-tool, but +# for the moment that doesn't support setting individual configuration options. + +import optparse +import os +import re +import shutil +import stat +import sys +import tempfile + +parser = optparse.OptionParser() +parser.add_option("--configfile", type=str, metavar="CONFFILE", + help="Configuration file to use", default="/etc/samba/smb.conf") + +(opts, args) = parser.parse_args() +if len(args) != 2: + parser.print_usage() + +(share, path) = args +done = False + +inf = open(opts.configfile, 'r') +(fd, fn) = tempfile.mkstemp() +outf = os.fdopen(fd, 'w') + +for l in inf.readlines(): + m = re.match(r"^\s*\[([^]]+)\]$", l) + if m: + name = m.groups(1)[0] + if name.lower() == share.lower(): + sys.exit(0) + outf.write(l) + +if not os.path.isdir(path): + os.makedirs(path) +outf.write("[%s]\n" % share) +outf.write(" path = %s\n" % path) +outf.write(" read only = no\n") +outf.write("\n") + +os.fchmod(fd, stat.S_IMODE(os.stat(opts.configfile).st_mode)) +outf.close() +shutil.move(fn, opts.configfile) diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..ef552bd --- /dev/null +++ b/debian/changelog @@ -0,0 +1,9504 @@ +samba (2:4.17.12+dfsg-0+deb12u1) bookworm-security; urgency=medium + + * new stable security bugfix release: + o CVE-2023-3961: https://www.samba.org/samba/security/CVE-2023-3961.html + Unsanitized pipe names allow SMB clients to connect as root + to existing unix domain sockets on the file system. + o CVE-2023-4091: https://www.samba.org/samba/security/CVE-2023-4091.html + SMB client can truncate files to 0 bytes by opening files with OVERWRITE + disposition when using the acl_xattr Samba VFS module with the smb.conf + setting "acl_xattr:ignore system acls = yes" + o CVE-2023-4154: https://www.samba.org/samba/security/CVE-2023-4154.html + An RODC and a user with the GET_CHANGES right can view all attributes, + including secrets and passwords. Additionally, the access check fails + open on error conditions. + o CVE-2023-42669: https://www.samba.org/samba/security/CVE-2023-42669.html + Calls to the rpcecho server on the AD DC can request that the server + block for a user-defined amount of time, denying service. + o CVE-2023-42670: https://www.samba.org/samba/security/CVE-2023-42670.html + Samba can be made to start multiple incompatible RPC listeners, + disrupting service on the AD DC. + + -- Michael Tokarev <mjt@tls.msk.ru> Tue, 10 Oct 2023 18:17:19 +0300 + +samba (2:4.17.11+dfsg-0+deb12u1) bookworm; urgency=medium + + * new upstream stable/bugfix release 4.17.11, including: + o https://bugzilla.samba.org/show_bug.cgi?id=9959 + Windows client join fails if a second container CN=System exists somewhere + o https://bugzilla.samba.org/show_bug.cgi?id=15342 + Spotlight sometimes returns no results on latest macOS + o https://bugzilla.samba.org/show_bug.cgi?id=15346 + 2-3min delays at reconnect with smb2_validate_sequence_number: + bad message_id 2 + o https://bugzilla.samba.org/show_bug.cgi?id=15384 + net ads lookup (with unspecified realm) fails + o https://bugzilla.samba.org/show_bug.cgi?id=15401 + Improve GetNChanges to address some (but not all "Azure AD Connect") + syncronisation tool looping during the initial user sync phase + o https://bugzilla.samba.org/show_bug.cgi?id=15407 + Samba replication logs show (null) DN + o https://bugzilla.samba.org/show_bug.cgi?id=15417 + Renaming results in NT_STATUS_SHARING_VIOLATION + if previously attempted to remove the destination + o https://bugzilla.samba.org/show_bug.cgi?id=15419 + Weird filename can cause assert to fail in openat_pathref_fsp_nosymlink() + o https://bugzilla.samba.org/show_bug.cgi?id=15420 + reply_sesssetup_and_X() can dereference uninitialized tmp pointer + o https://bugzilla.samba.org/show_bug.cgi?id=15427 + Spotlight results return wrong date in result list + o https://bugzilla.samba.org/show_bug.cgi?id=15430 + Missing return in reply_exit_done() + o https://bugzilla.samba.org/show_bug.cgi?id=15432 + TREE_CONNECT without SETUP causes smbd to use uninitialized pointer + o https://bugzilla.samba.org/show_bug.cgi?id=15435 + Regression DFS not working with widelinks = true + o https://bugzilla.samba.org/show_bug.cgi?id=15441 + samba-tool ntacl get segfault if aio_pthread appended + o https://bugzilla.samba.org/show_bug.cgi?id=15446 + DCERPC_PKT_CO_CANCEL and DCERPC_PKT_ORPHANED can't be parsed + o https://bugzilla.samba.org/show_bug.cgi?id=15449 + mdssvc: Do an early talloc_free() in _mdssvc_open() + o https://bugzilla.samba.org/show_bug.cgi?id=15451 + ctdb_killtcp fails to work with --enable-pcap and libpcap ≥ 1.9.1 + o https://bugzilla.samba.org/show_bug.cgi?id=15453 + File doesn't show when user doesn't have permission + if aio_pthread is loaded + o https://bugzilla.samba.org/show_bug.cgi?id=15463 + macOS mdfind returns only 50 results + * d/control: indicate the git branch in Vcs-Git URL (-b bookworm) + * d/control: fix description of samba-common-bin (samba-client) + * d/salsa-ci.yml: set RELEASE to bookworm + + -- Michael Tokarev <mjt@tls.msk.ru> Tue, 12 Sep 2023 15:55:41 +0300 + +samba (2:4.17.10+dfsg-0+deb12u1) bookworm-security; urgency=medium + + * new upstream stable/security release 4.17.10, including: + o CVE-2022-2127: When winbind is used for NTLM authentication, + a maliciously crafted request can trigger an out-of-bounds read + in winbind and possibly crash it. + https://www.samba.org/samba/security/CVE-2022-2127.html + o CVE-2023-3347: SMB2 packet signing is not enforced if an admin + configured "server signing = required" or for SMB2 connections to + Domain Controllers where SMB2 packet signing is mandatory. + https://www.samba.org/samba/security/CVE-2023-3347.html + o CVE-2023-34966: An infinite loop bug in Samba's mdssvc RPC service + for Spotlight can be triggered by an unauthenticated attacker by + issuing a malformed RPC request. + https://www.samba.org/samba/security/CVE-2023-34966.html + o CVE-2023-34967: Missing type validation in Samba's mdssvc RPC service + for Spotlight can be used by an unauthenticated attacker to trigger + a process crash in a shared RPC mdssvc worker process. + https://www.samba.org/samba/security/CVE-2023-34967.html + o CVE-2023-34968: As part of the Spotlight protocol Samba discloses + the server-side absolute path of shares and files and directories + in search results. + https://www.samba.org/samba/security/CVE-2023-34968.html + o BUG 15418: Secure channel faulty since Windows 10/11 update 07/2023. + https://bugzilla.samba.org/show_bug.cgi?id=15418 + (this has been patched in the previous upload; Closes: #1041043) + + -- Michael Tokarev <mjt@tls.msk.ru> Wed, 19 Jul 2023 17:55:58 +0300 + +samba (2:4.17.9+dfsg-0+deb12u3) bookworm; urgency=medium + + * +fix-unsupported-netr_LogonGetCapabilities-l2.patch + Fix windows logon/trust issues with 2023-07 windows updates: + https://bugzilla.samba.org/show_bug.cgi?id=15418 + + -- Michael Tokarev <mjt@tls.msk.ru> Fri, 14 Jul 2023 12:34:30 +0300 + +samba (2:4.17.9+dfsg-0+deb12u2) bookworm; urgency=medium + + * link with -latomic explicitly on a few architectures where gcc misses it + (notable armel & mipsel), to fix FTBFS there, - the same as on sid. + https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81358 + + -- Michael Tokarev <mjt@tls.msk.ru> Sun, 09 Jul 2023 09:44:29 +0300 + +samba (2:4.17.9+dfsg-0+deb12u1) bookworm-proposed-updates; urgency=medium + + * d/copyright: filter out autogenerated manpages from the upstream source + when dfsg-repacking. The manpages are generated during build if not up + to date, and changes significantly in every upstream release since the + version number and the release date are included in every manpage. + * new upstream stable/bugfix release, with the following fixes: + * https://bugzilla.samba.org/show_bug.cgi?id=14030 + named crashes on DLZ zone update + (this was in debian in previous upload) + * https://bugzilla.samba.org/show_bug.cgi?id=15275 + smbd_scavenger crashes when service smbd is stopped + * https://bugzilla.samba.org/show_bug.cgi?id=15361 + winbind recurses into itself via rpcd_lsad + * https://bugzilla.samba.org/show_bug.cgi?id=15374 + aes256 smb3 encryption algorithms are not allowed in smb3_sid_parse() + * https://bugzilla.samba.org/show_bug.cgi?id=15378 + vfs_fruit might cause a failing open for delete + * https://bugzilla.samba.org/show_bug.cgi?id=15382 + cli_list loops 100% CPU against pre-lanman2 servers + * https://bugzilla.samba.org/show_bug.cgi?id=15391 + smbclient leaks fds with showacls + * https://bugzilla.samba.org/show_bug.cgi?id=15403 + smbget memory leak if failed to download files recursively + * https://bugzilla.samba.org/show_bug.cgi?id=15404 + Backport --pidl-developer fixes + * https://bugzilla.samba.org/show_bug.cgi?id=15413 + winbindd gets stuck on NT_STATUS_RPC_SEC_PKG_ERROR + * remove dnsserver-rename-dns_name_equal.patch + (included upstream) + * heimdal-to-support-KEYRING-ccache.patch: enable KEYRING in heimdal + (ability to store kerberos tickets in kernel keyring) (Closes: #1023609) + * d/control: build-depend on libkeyutils-dev + (it is pulled by some other dep, but better to be safe) + + -- Michael Tokarev <mjt@tls.msk.ru> Fri, 07 Jul 2023 11:40:17 +0300 + +samba (2:4.17.8+dfsg-2) unstable; urgency=medium + + * dnsserver-rename-dns_name_equal.patch + (forgotten) patch from upstream targetting next stable + Fixes crashes of named with samba DLZ plugin due to + symbol name conflict (dns_name_equal() function). + There's no resulting code changes, just a symbol + rename. + https://bugzilla.samba.org/show_bug.cgi?id=14030 + Closes: #1036587, #927747 + + -- Michael Tokarev <mjt@tls.msk.ru> Wed, 24 May 2023 22:54:43 +0300 + +samba (2:4.17.8+dfsg-1) unstable; urgency=medium + + * upstream stable/security/bugfix release, fixing the following issues: + * https://bugzilla.samba.org/show_bug.cgi?id=14810 + CVE-2020-25720 Create Child permission should not allow + full write to all attributes (additional changes) + * https://bugzilla.samba.org/show_bug.cgi?id=15143 + New filename parser doesn't check veto files smb.conf parameter + * https://bugzilla.samba.org/show_bug.cgi?id=15302 + log flood: smbd_calculate_access_mask_fsp: Access denied: message + level should be lower (this was included in Debian package already) + * https://bugzilla.samba.org/show_bug.cgi?id=15306 + Floating point exception (FPE) via cli_pull_send + at source3/libsmb/clireadwrite.c + * https://bugzilla.samba.org/show_bug.cgi?id=15313 + Large directory optimization broken for non-lcomp path elements + * https://bugzilla.samba.org/show_bug.cgi?id=15317 + winbindd idmap child contacts the domain controller without a need + * https://bugzilla.samba.org/show_bug.cgi?id=15318 + idmap_autorid may fail to map sids of trusted domains for the + * https://bugzilla.samba.org/show_bug.cgi?id=15319 + idmap_hash doesn't use ID_TYPE_BOTH for reverse mappings + * https://bugzilla.samba.org/show_bug.cgi?id=15323 + net ads search -P doesn't work against servers in other domains + * https://bugzilla.samba.org/show_bug.cgi?id=15325 + dsgetdcname: assumes local system uses IPv4 + * https://bugzilla.samba.org/show_bug.cgi?id=15328 + test_tstream_more_tcp_user_timeout_spin fails intermittently + on Rackspace GitLab runners + * https://bugzilla.samba.org/show_bug.cgi?id=15329 + Reduce flapping of ridalloc test + * https://bugzilla.samba.org/show_bug.cgi?id=15329 + Reduce flapping of ridalloc test + * https://bugzilla.samba.org/show_bug.cgi?id=15338 + DS ACEs might be inherited to unrelated object classes + * https://bugzilla.samba.org/show_bug.cgi?id=15351 + large_ldap test is unreliable + * https://bugzilla.samba.org/show_bug.cgi?id=15353 + Temporary smbXsrv_tcon_global.tdb can't be parsed + * https://bugzilla.samba.org/show_bug.cgi?id=15354 + mdssvc may crash when initializing + * https://bugzilla.samba.org/show_bug.cgi?id=15357 + streams_depot fails to create streams + * https://bugzilla.samba.org/show_bug.cgi?id=15358 + shadow_copy2 and streams_depot don't play well together + * https://bugzilla.samba.org/show_bug.cgi?id=15360 + Setting veto files = /.*/ break listing directories + * https://bugzilla.samba.org/show_bug.cgi?id=15366 + wbinfo -u fails on ad dc with >1000 users + * d/gbp.conf: switch debian-branch to "bookworm" + + -- Michael Tokarev <mjt@tls.msk.ru> Thu, 11 May 2023 10:52:40 +0300 + +samba (2:4.17.7+dfsg-1) unstable; urgency=high + + * upstream stable/security/bugfix release, fixing the following issues: + o CVE-2023-0225: An incomplete access check on dnsHostName allows + authenticated but otherwise unprivileged users to delete this + attribute from any object in the directory. + https://www.samba.org/samba/security/CVE-2023-0225.html + o CVE-2023-0922: The Samba AD DC administration tool, when operating + against a remote LDAP server, will by default send new or reset + passwords over a signed-only connection. + https://www.samba.org/samba/security/CVE-2023-0922.html + o CVE-2023-0614: Fix in 4.6.16, 4.7.9, 4.8.4 and 4.9.7 for CVE-2018-10919 + Confidential attribute disclosure via LDAP filters was insufficient and + an attacker may be able to obtain confidential BitLocker recovery keys + from a Samba AD DC. Installations with such secrets in their Samba AD + should assume they have been obtained and need replacing. + https://www.samba.org/samba/security/CVE-2023-0614.html + Closes: CVE-2023-0225 CVE-2023-0922 CVE-2023-0614 + * update libldb symbols and versions + + -- Michael Tokarev <mjt@tls.msk.ru> Wed, 29 Mar 2023 17:59:17 +0300 + +samba (2:4.17.6+dfsg-1) unstable; urgency=medium + + * new upstream stable/bugfix release 4.17.6: + * https://bugzilla.samba.org/show_bug.cgi?id=15314 + streams_xattr is creating unexpected locks on folders. + * https://bugzilla.samba.org/show_bug.cgi?id=10635 + Use of the Azure AD Connect cloud sync tool is now supported for password + hash synchronisation, allowing Samba AD Domains to synchronise passwords + with this popular cloud environment. + * https://bugzilla.samba.org/show_bug.cgi?id=15299 + Spotlight doesn't work with latest macOS Ventura. + * https://bugzilla.samba.org/show_bug.cgi?id=15310 + New samba-dcerpc architecture does not scale gracefully. + * https://bugzilla.samba.org/show_bug.cgi?id=15307 + vfs_ceph incorrectly uses fsp_get_io_fd() instead of fsp_get_pathref_fd() + in close and fstat. + * https://bugzilla.samba.org/show_bug.cgi?id=15293 + With clustering enabled samba-bgqd can core dump due to use after free. + * https://bugzilla.samba.org/show_bug.cgi?id=15311 + fd_load() function implicitly closes the fd where it should not. + * debian/po/ro.po update from Remus-Gabriel Chelu + * s3-smbd-open.c-smbd_calculate_access_mask_fsp-lower-.patch + makes smbd a bit less spammy in logs + * d/control: clarify some package descriptions (Closes: #1031922) + + -- Michael Tokarev <mjt@tls.msk.ru> Thu, 09 Mar 2023 12:52:14 +0300 + +samba (2:4.17.5+dfsg-2) unstable; urgency=medium + + * d/control: samba: depends on exact version of python3-samba + * d/control: fix typo + * more tweaks for foreign/cross build + * d/control: work around autodep8 #904999 again + * introduce upstream-like aliases for debian .service names, + add rationale + + -- Michael Tokarev <mjt@tls.msk.ru> Sat, 04 Feb 2023 17:15:40 +0300 + +samba (2:4.17.5+dfsg-1) unstable; urgency=medium + + * new upstream stable/bugfix release. From WHATSNEW.txt: + * BUG 14808: smbc_getxattr() return value is incorrect. + * BUG 15172: Compound SMB2 FLUSH+CLOSE requests from MacOSX + are not handled correctly. + * BUG 15210: synthetic_pathref AFP_AfpInfo failed errors. + * BUG 15226: samba-tool gpo listall fails IPv6 only - finddcs() + fails to find DC when there is only an AAAA record for the DC in DNS + (Closes: #1023606). + * BUG 15236: smbd crashes if an FSCTL request is done on a stream handle. + * BUG 15277: DFS links don't work anymore on Mac clients since 4.17. + * BUG 15283: vfs_virusfilter segfault on access, + directory edgecase (accessing NULL value). + * BUG 15240: CVE-2022-38023 [SECURITY] Samba should refuse RC4 (aka md5) + based SChannel on NETLOGON (additional changes). + * BUG 15243: %U for include directive doesn't work for share listing + (netshareenum) (the fix was in debian before). + * BUG 15266: Shares missing from netshareenum response in samba 4.17.4 + (the fix was in debian before). + * BUG 15269: ctdb: use-after-free in run_proc. + * BUG 15280: irpc_destructor may crash during shutdown. + * BUG 15286: auth3_generate_session_info_pac leaks wbcAuthUserInfo. + * BUG 15268: smbclient segfaults with use after free on an optimized build + * BUG 15282: smbstatus leaking files in msg.sock and msg.lock. + * BUG 15164: Leak in wbcCtxPingDc2. + * BUG 15265: Access based share enum does not work in Samba 4.16+. + * BUG 15267: Crash during share enumeration. + * BUG 15271: rep_listxattr on FreeBSD does not properly check + for reads off end of returned buffer. + * BUG 15281: Avoid relying on C89 features in a few places. + * remove patches applied upstream: + - reload-registry-shares-after-reloading-services.patch + - rpc_server_srvsvc-retrieve_share_ACL_via_root_context.patch + * d/control: Standards-Version: 4.6.2 (no changes) + * d/control: put all doc-generating build-deps into one line + * little prep for cross-compilation + - build-depend on python3:any and python3-dev:any + - build-depend on libpython3-dev for actual module building, + and use arch-specific python3-config from there + - set and export _PYTHON_SYSCONFIGDATA_NAME to get foreign-arch values + provided by libpython3-dev (also helps when python itself is foreign) + - depend on perl:any not just perl + - export CC/CPP/LD/PKGCONFIG for ./configure (buildtools.mk) + * d/gbp.conf: unignore branch + * d/control: samba, ctdb, winbind: do not depend on lsb-base + (the script is in sysvinit-utils now) + * d/control: drop unused build-dep on libncurses5-dev + + -- Michael Tokarev <mjt@tls.msk.ru> Fri, 27 Jan 2023 11:15:01 +0300 + +samba (2:4.17.4+dfsg-3) unstable; urgency=medium + + * +rpc_server_srvsvc-retrieve_share_ACL_via_root_context.patch + https://bugzilla.samba.org/show_bug.cgi?id=15265 + * +reload-registry-shares-after-reloading-services.patch + https://bugzilla.samba.org/show_bug.cgi?id=15266 + * d/samba.postinst: fix /var/spool/samba => /var/tmp handling + (old spooldir can be referred to in other sections too) + * create common script "is-configured" to check if the service is configured + in smb.conf, and stop masking services in postinst + * rewrite SysV init scripts (simplify, make consistent, etc) + * d/winbind.postinst: create/change /var/lib/samba/winbindd_privileged + at install time only (it should be in /run/samba/ somewhere these days) + * d/control: change version of samba which samba-ad-provisioning + Breaks to where provisioning was split out + + -- Michael Tokarev <mjt@tls.msk.ru> Tue, 03 Jan 2023 10:45:36 +0300 + +samba (2:4.17.4+dfsg-2) unstable; urgency=medium + + * d/control: samba-dc-provision Replaces+Breaks samba (< 4.17.4+dfsg-2). + Closes: #1026387 + + -- Michael Tokarev <mjt@tls.msk.ru> Mon, 19 Dec 2022 16:36:00 +0300 + +samba (2:4.17.4+dfsg-1) unstable; urgency=medium + + * new upstream stable/security release, with the following changes: + - CVE-2022-37966: Windows Kerberos RC4-HMAC Elevation of Privilege + Vulnerability disclosed by Microsoft on Nov 8 2022, see + https://www.samba.org/samba/security/CVE-2022-37966.html + - CVE-2022-37967: Windows Kerberos Elevation of Privilege Vulnerability + disclosed by Microsoft on Nov 8 2022. See + https://www.samba.org/samba/security/CVE-2022-37967.html + - CVE-2022-38023: Weak "RC4" (rc4-hmac) protection of the NetLogon Secure + channel uses, see https://www.samba.org/samba/security/CVE-2022-38023.html + There are several important behavior changes included in this release, + which may cause compatibility problems interacting with system still + expecting the former behavior. Please read the documents referenced above! + See also the WHATSNEW.txt document, as there are several new, changed + and deprecated smb.conf parameters. + * Other bugfixes in this release (from WHATSNEW.txt): + https://bugzilla.samba.org/show_bug.cgi?id=14929 CVE-2022-44640 + Upstream Heimdal free of user-controlled pointer in FAST. + https://bugzilla.samba.org/show_bug.cgi?id=15219 + Heimdal session key selection in AS-REQ examines wrong entry. + https://bugzilla.samba.org/show_bug.cgi?id=13135 The KDC logic around + msDs-supportedEncryptionTypes differs from Windows. + https://bugzilla.samba.org/show_bug.cgi?id=14611 CVE-2021-20251 + Bad password count not incremented atomically. + https://bugzilla.samba.org/show_bug.cgi?id=15206 libnet: change_password() + doesn't work with dcerpc_samr_ChangePasswordUser4() + https://bugzilla.samba.org/show_bug.cgi?id=15230 + Memory leak in snprintf replacement functions. + https://bugzilla.samba.org/show_bug.cgi?id=15253 RODC doesn't reset + badPwdCount reliable via an RWDC (CVE-2021-20251 regression). + https://bugzilla.samba.org/show_bug.cgi?id=15198 + Prevent EBADF errors with vfs_glusterfs. + https://bugzilla.samba.org/show_bug.cgi?id=15243 + %U for include directive doesn't work for share listing (netshareenum). + https://bugzilla.samba.org/show_bug.cgi?id=15257 + Stack smashing in net offlinejoin requestodj. + * removed patches which are now included upstream: + - nsswitch-pam-data-time_t.patch + - CVE-2022-42898-lib-krb5-fix-_krb5_get_int64-on-32bit.patch + + -- Michael Tokarev <mjt@tls.msk.ru> Thu, 15 Dec 2022 21:54:31 +0300 + +samba (2:4.17.3+dfsg-4) unstable; urgency=medium + + * create samba-ad-provision package with contents of /usr/share/samba/setup. + It is recommended by samba, so can be uninstalled if not needed. + * create samba-ad-dc package. It is an empty metapackage for now, but with + dependencies needed to run an Active Directory Domain Controller (AD-DC) + * samba-ad-provision.lintian-overrides: license files + * print meaningful error message if samba-ad-provision is not installed + (meaningful-error-if-no-samba-ad-provision.patch) + * print meaningful error message if python3-markdown is not installed + (meaningful-error-if-no-python3-markdown.patch) + * ctdb: move rundir from /var/run to /run + * fix typo in fruit patch + * a few more spelling fixes + * add #DEBHELPER# tokens to libnss-winbind.{postinst,postrm} + * remove mentions of /var/spool/samba from samba.lintian-overrides + (moved to /var/tmp) + * change embedded-library heimdal lintian override in a way to be understood + by both old and new lintian, so the package can be uploaded + + -- Michael Tokarev <mjt@tls.msk.ru> Mon, 05 Dec 2022 14:39:43 +0300 + +samba (2:4.17.3+dfsg-3) unstable; urgency=medium + + * d/control: winbind should depend on the same binary:Version + of libwbclient, or else its components can't talk to the daemon. + Thank you Stefan Weichinger for the patience while finding this one! + * libnss-winbind: add postinst/postrm scripts to add/remove nsswitch.conf + entry for winbind (but not for wins) + + -- Michael Tokarev <mjt@tls.msk.ru> Thu, 01 Dec 2022 22:38:07 +0300 + +samba (2:4.17.3+dfsg-2) unstable; urgency=medium + + * fruit-disable-useless-size_t-overflow-check.patch (Closes: #974868) + * CVE-2022-42898-lib-krb5-fix-_krb5_get_int64-on-32bit.patch + Fix regression on 32bit systems: + https://bugzilla.samba.org/show_bug.cgi?id=15203 + + -- Michael Tokarev <mjt@tls.msk.ru> Mon, 21 Nov 2022 20:41:46 +0300 + +samba (2:4.17.3+dfsg-1) unstable; urgency=medium + + * new upstream security release 4.17.3, fixing the following issue: + CVE-2022-42898: Heimdal Kerberos libraries suffers from an integer + multiplication overflow vulnerability which affects 32bit platforms, + see https://www.samba.org/samba/security/CVE-2022-42898.html + This changes third_party/heimdal/, it does not affect mitkrb5 builds. + * d/rules: stop stripping +dfsg suffix from ldb version + * d/control: declare dependency on password (for groupadd in postinst) + for winbind and samba (Closes: #1023759) + * implement pkg.samba.mitkrb5 build profile to build with system mit-krb5 + (with "mitkrb5" version suffix in some packages for now) + * d/control: mark libufing-dev build dep with <!pkg.samba.nouring> + (to simplify out-of-archive builds for older systems) + * d/rules: parametrise list of packages to omit (eg on ubuntu-i386) + with ${omit-pkgs} + * d/rules: use variables in a more consistent way, use single ${config-args} + * d/control: tdb-tools and lmdb-utils packages are also needed for tests + (everything is commented out for now anyway) + * d/rules: update knownfail tests + * d/rules: stop exporting buildflags, export compiler options when needed + * d/rules: always define rados:Depends & vfsmods:Depends substvars + * unwrap-getresgid-typo.patch - fix crash during p11-kit execution + (https://bugzilla.samba.org/show_bug.cgi?id=15227) (for the testsuite only) + * nsswitch-pam-data-time_t.patch - fix time_t not fit in a pointer (eg x32) + (https://bugzilla.samba.org/show_bug.cgi?id=15224) + + -- Michael Tokarev <mjt@tls.msk.ru> Tue, 15 Nov 2022 19:26:10 +0300 + +samba (2:4.17.2+dfsg-9) unstable; urgency=medium + + * hurd-compat.patch: some minor compatibility tweaks for hurd + * d/rules compat work: + - ceph is linux-only like glusterfs + - d/rules: add another conditional, with_snapper + - combine linux features into single block + * d/rules: support "terse" build option for non-verbose build + * d/rules: remove third_party/heimdal/lib/gssapi/gssapi.h before build + (Closes: #1013205). This fixes -I path order and <gssapi/gssapi.h> + include mess which caused samba to FTBFS on sparc64 for quite some time + + -- Michael Tokarev <mjt@tls.msk.ru> Sun, 06 Nov 2022 20:13:19 +0300 + +samba (2:4.17.2+dfsg-8) unstable; urgency=medium + + * d/rules: do not explicitly enable quotas on non-linux: + enable everything interesting on linux explicitly and let ./configure + to figure it out in other systems. This should fix FTBFS problem on hurd. + * d/rules: do not disable systemd on non-linux, let ./configure figure it out + * d/winbind.postinst: switch addgroup => groupadd and eliminate getent. + winbind package never declared dependency on adduser but always used + addgroup command in its postinst script. Finally this broke piuparts. + Switch to groupadd which is even easier to use. + * d/samba.postinst: switch addgroup => groupadd and eliminate getent + * d/smb.conf: use useradd in example create user script too + + -- Michael Tokarev <mjt@tls.msk.ru> Thu, 03 Nov 2022 15:04:46 +0300 + +samba (2:4.17.2+dfsg-7) unstable; urgency=medium + + * another way to work around #1013259: provide a compatibility symlink + libndr.so.2 pointing to libndr.so.3: + - libndr-debug-level-compat.diff, libndr-revert-so3.diff: remove + - d/samba-libs.symbols: adjust symbols/versions + - d/samba-libs.install: libndr.so.2 => libndr.so.3 + - d/samba-libs.links: provide the compat libndr.so.2 symlink + * d/samba-libs.links: add comments describing libndr.so.N issue + * d/samba-libs.links: add libndr.so.1 compat symlink too (for bullseye sssd) + * d/control: unbreak bullseye/jammy sssd-ad-common, sssd-ad, sssd-ipa + by samba-libs once libndr.so.1 compat link is here + + -- Michael Tokarev <mjt@tls.msk.ru> Wed, 02 Nov 2022 20:43:53 +0300 + +samba (2:4.17.2+dfsg-6) unstable; urgency=medium + + * d/control: fix comment in previous upload + + -- Michael Tokarev <mjt@tls.msk.ru> Wed, 02 Nov 2022 10:45:26 +0300 + +samba (2:4.17.2+dfsg-5) unstable; urgency=medium + + * d/control: bump version of broken-by-samba-libs sssd + and add more affected sssd packages; + also reformat the comment there so dpkg-gencontrol does not complain + + -- Michael Tokarev <mjt@tls.msk.ru> Wed, 02 Nov 2022 09:34:10 +0300 + +samba (2:4.17.2+dfsg-4) unstable; urgency=medium + + * d/control: stop suggesting old/orphaned/gone-upstream smbldap-tools + * libndr work (Closes: #1013259): + - d/control: samba-libs breaks bullseye sssd-ad due to libndr.so.1=>.2 bump + - d/samba-libs.install: be more explicit about sonames of public libs + to catch soname changes + - libndr-debug-level-compat.diff, libndr-revert-so3.diff: revert + libndr.so.2->3 soname bump by providing compat wrapper for new symbol + - d/samba-libs.symbols: provide symbols for libndr.so.2 + + -- Michael Tokarev <mjt@tls.msk.ru> Tue, 01 Nov 2022 12:53:22 +0300 + +samba (2:4.17.2+dfsg-3) unstable; urgency=low + + * rebase on top of debian 4.16.6+dfsg-6 release, include some + history of 4.17.* experimental releases in changelog + * d/samba-libs.lintian-overrides: update package-name-doesnt-match-sonames + to match all libs + * urgency is set to low to delay unstable->testing transition a bit + + -- Michael Tokarev <mjt@tls.msk.ru> Sun, 30 Oct 2022 16:23:51 +0300 + +samba (2:4.17.2+dfsg-2) experimental; urgency=medium + + * d/rules: stop dh_installpam from installing samba.pam + to the samba package (Closes: #1022775, #1022776) + + -- Michael Tokarev <mjt@tls.msk.ru> Tue, 25 Oct 2022 20:13:53 +0300 + +samba (2:4.17.2+dfsg-1) experimental; urgency=medium + + * upstream 4.17.2 security release: + CVE-2022-3592 A malicious client can use a symlink to escape the exported + directory. https://www.samba.org/samba/security/CVE-2022-3592.html + (Samba 4.17 only) + * Remove poptGetArg-misuse-fixes-1022826.diff (applied to 4.17.2) + * d/rules: no need to build compile_et,asn1_compile intermediate targets + anymore; also remove now-unused ${WAFv} macro + + -- Michael Tokarev <mjt@tls.msk.ru> Tue, 25 Oct 2022 14:30:44 +0300 + +samba (2:4.17.1+dfsg-1) experimental; urgency=medium + + * new upstream bugfix release containing a security fix: + * CVE-2021-20251 Bad password count not incremented atomically. + * Merge changes from 4.16.x (debian/master) branch. + * use-bzero-instead-of-memset_s.diff : use explicit_bzero() instead of + bzero() for the substitute of memset_s(). bzero() is wrong here because + it, just like memset, can be optimized out by the compiler. + + -- Michael Tokarev <mjt@tls.msk.ru> Wed, 19 Oct 2022 21:34:11 +0300 + +samba (2:4.17.0+dfsg-2) experimental; urgency=medium + + * mention closing of CVE-2022-32743 by the 4.17.0 upload + * mention closing of CVE-2022-1615 by the 4.17.0 upload + * move libpac-samba4.so.0 from samba to samba-libs (Closes: #1021450) + + -- Michael Tokarev <mjt@tls.msk.ru> Sat, 08 Oct 2022 23:00:05 +0300 + +samba (2:4.17.0+dfsg-1) experimental; urgency=medium + + * new upstream release 4.17.0 + Closes: CVE-2022-1615 + Closes: #1021022, CVE-2022-32743 + * removed: spelling.patch (partially applied upstream) + * removed: weak-crypto-allowed-clarify.diff (applied upstream) + * refresh: ctdb-create-piddir.patch + * refresh: fix-nfs-service-name-to-nfs-kernel-server.patch + * d/control: update minimum versions for talloc/tevent/tdb + * d/rules: do not install ctdb.service, it is installed by upstream now + * d/ctdb.install: do not install ctdb_wrapper (not used anymore) + * d/libldb2.symbols, d/d/python3-ldb.symbols.in: new versions: 2.6.0 2.6.1 + per upstream, re-version symbols added in 2.5.2 as added in 2.6.1 + (ldb users needs to be recompiled anyway after updating libldb) + * new: spelling.patch: a few more spelling fixes + * d/control: bump Standards-Version to 4.6.1 (no changes) + * Remove dont-ignore-errors-in-random-number-generation-CVE-2022-1615.patch + (included in 4.17.0 already) + + -- Michael Tokarev <mjt@tls.msk.ru> Tue, 13 Sep 2022 20:47:05 +0300 + +samba (2:4.16.6+dfsg-6) unstable; urgency=medium + + * d/rules: use the right dir for dh_shlibdeps -l (long-standing issue) + * rewrite shlibs/symbols-generating file d/genshlibs, make whole process + much more clean and strighforward, and 10x times faster too + * debian/libnss-winbind.triggers: activate ldconfig trigger + * add debian/samba-libs.symbols with libsmbldap library + * d/samba.examples: do not install smbadduser: csh considered harmful + * d/rules: remove long-unused commented-out override_dh_perl-arch + * d/samba.lintian-overrides: *docs-outside-share-doc usr/share/samba/setup/ + * d/genshlibs: add the forgotten mkdir for d/$pkg/DEBIAN + * remove static/fixed branding d/patches/VERSION.patch + * d/rules: implement dynamic branding of VERSION file based on dpkg-vendor + * d/rules: simplify package interdependency checking rules + * d/rules: add a lot more interpackage dependency checks + * d/NEWS: merge it into d/samba.NEWS (removes several lintian warnings) + + -- Michael Tokarev <mjt@tls.msk.ru> Sat, 29 Oct 2022 08:28:53 +0300 + +samba (2:4.16.6+dfsg-5) unstable; urgency=medium + + * move samba:idmap_script.8.gz and samba-libs:idmap_rfc2307.8.gz manpages to + winbind package where they belong and where actual idmap modules lives. + (install all idmap_*.8 manpages to winbind package) + * d/rules: install pam.d/samba with mode 0644, not 0755 + * many lintian-override updates: + - source: ctdb/doc/*.html actually has sources + - source: +very-long-line-length-in-source-file * (for generated files) + - source: +debian-control-has-unusual-field-spacing Breaks + - winbind: +spare-manual-page for module manpages + - *: update some overrides for new lintian + - libpam-winbind: +spare-manual-page pam_winbind.8 + - libldb2: +package-contains-empty-directory .../ldb/modules/ldb/ + - *: +hardening-no-fortify-functions for some simple shared libs + + -- Michael Tokarev <mjt@tls.msk.ru> Wed, 26 Oct 2022 22:27:00 +0300 + +samba (2:4.16.6+dfsg-4) unstable; urgency=medium + + * poptGetArg-misuse-fixes-1022826.diff: fix poptGetArg() misuse + for popt-1.9 (Closes: #1022826) + + -- Michael Tokarev <mjt@tls.msk.ru> Wed, 26 Oct 2022 19:45:38 +0300 + +samba (2:4.16.6+dfsg-3) unstable; urgency=medium + + * d/rules: stop dh_installpam from installing samba.pam + to the samba package (Closes: #1022775, #1022776) + + -- Michael Tokarev <mjt@tls.msk.ru> Tue, 25 Oct 2022 20:13:53 +0300 + +samba (2:4.16.6+dfsg-2) unstable; urgency=medium + + * d/rules: pam.d/samba should go to /etc, not / + * d/README.source.md: it is README.source.md not README.source + * d/control: bump Standards-Version to 4.6.1 (no changes) + * d/rules: verify that samba-libs does not depend on samba + + -- Michael Tokarev <mjt@tls.msk.ru> Tue, 25 Oct 2022 13:55:33 +0300 + +samba (2:4.16.6+dfsg-1) unstable; urgency=medium + + * new upstream security release 4.16.6, fixing: + CVE-2022-3437: There is a limited write heap buffer overflow in the GSSAPI + unwrap_des() and unwrap_des3() routines of Heimdal (included in Samba). + https://www.samba.org/samba/security/CVE-2022-3437.html + * use explicit_bzero() instead of bzero() for the substitute of memset_s() + * d/rules: make it a bit more consistent with other samba packages + * d/rules: stop exporting ${PYTHON} + * a bunch of ubuntu-related changes: + - d/rules: omit glusterfs on ubuntu-i386 + - apply Ubuntu changes to smb.conf at install time (d/smb.conf.ubuntu.diff) + - d/tests/: ensure io_uring module is built before testing it + - d/rules: inline parallel check from dpkg/buildopts.mk + (buildopts.mk does not exist on ubuntu 20.04 focal) + + -- Michael Tokarev <mjt@tls.msk.ru> Tue, 25 Oct 2022 12:48:20 +0300 + +samba (2:4.16.5+dfsg-2) unstable; urgency=medium + + [ Michael Tokarev ] + * d/tests/util: use printf for formatting password for smbpasswd, + not non-standard echo \n (mr !60) + * introduce LDB_2.4.4 version symbol (Closes: #1021371) + Create an empty ABI file just to make the scripts run during the build + stage to introduce LDB_2.4.4 version symbol into libldb.so, and remove + this empty file in the clean target. It is a bit hackish but works fine. + This is only needed to upgrade from bullseye to bookworm, from + 4.13.13+dfsg-1~deb11u5+ to the next release, 4.16+. + Remove this for bookworm+. + * dont-ignore-errors-in-random-number-generation-CVE-2022-1615.patch: + GnuTLS gnutls_rnd() can fail and give predictable random values. + Closes: #1021024, CVE-2022-1615 + + [ John Paul Adrian Glaubitz ] + * disable ceph support on ppc64 and x32 (Closes: #1020781, #1012165) + + -- Michael Tokarev <mjt@tls.msk.ru> Sat, 08 Oct 2022 15:11:15 +0300 + +samba (2:4.16.5+dfsg-1) unstable; urgency=medium + + * new (minor) upstream release 4.16.5 + * removed fix-samba-tool-domain-join-segfault.patch (included upstream) + * d/gbp.conf: no need to filter orig.tar: uscan already does that + + -- Michael Tokarev <mjt@tls.msk.ru> Thu, 08 Sep 2022 12:44:38 +0300 + +samba (2:4.16.4+dfsg-2) unstable; urgency=medium + + * d/libldb2.symbols: include newly added symbols + + -- Michael Tokarev <mjt@tls.msk.ru> Mon, 01 Aug 2022 15:43:11 +0300 + +samba (2:4.16.4+dfsg-1) unstable; urgency=high + + * new upstream security release fixing: + o CVE-2022-2031: Samba AD users can bypass certain restrictions associated + with changing passwords. + https://www.samba.org/samba/security/CVE-2022-2031.html + o CVE-2022-32742: Server memory information leak via SMB1. + https://www.samba.org/samba/security/CVE-2022-32742.html + o CVE-2022-32744: Samba AD users can forge password change requests + for any user. + https://www.samba.org/samba/security/CVE-2022-32744.html + o CVE-2022-32745: Samba AD users can crash the server process with an LDAP + add or modify request. + https://www.samba.org/samba/security/CVE-2022-32745.html + o CVE-2022-32746: Samba AD users can induce a use-after-free in the server + process with an LDAP add or modify request. + https://www.samba.org/samba/security/CVE-2022-32746.html + * Closes: #1016449, CVE-2022-2031 CVE-2022-32742, CVE-2022-32744, + CVE-2022-32745, CVE-2022-32746 + + -- Michael Tokarev <mjt@tls.msk.ru> Wed, 27 Jul 2022 18:35:53 +0300 + +samba (2:4.16.3+dfsg-1) unstable; urgency=medium + + [ Michael Tokarev ] + * new upstream minor/bugfix releae. See WHATSNEW.txt for details. + * d/watch: add the forgotten repacksuffix=+dfsg + + [ Andreas Hasenack ] + * update nfs configuration examples for ctdb + + -- Michael Tokarev <mjt@tls.msk.ru> Mon, 18 Jul 2022 17:15:07 +0300 + +samba (2:4.16.2+dfsg-1) unstable; urgency=medium + + * new upstream minor/bugfix release. + * removed waf-add-support-for-GNU-kFreeBSD.patch (applied upstream) + * new minor version of libldb + (no code changes, just the build system update to support python 3.11) + * move samba-dcerpcd from samba package to samba-common-bin due to winbind + New in 4.16 samba-dcerpcd binary is used by smbd and winbind, so putting + it to samba package makes winbind unable to run it without samba. + For now, in order to fix this issue, move this binary from samba to + samba-common-bin package. It might be worth creating its own package + for this binary (or maybe some more binaries), once it is clear where + upstream is going to. Making this binary a part of samba-common-bin + adds some more files to smbclient-only setup. + (Closes: #1012240) + * remove mksmbpasswd script and manpage: we have smbpasswd whcih can add + entries to smbpasswd file if needed, and can handle other passwod storage + formats too + + -- Michael Tokarev <mjt@tls.msk.ru> Mon, 13 Jun 2022 19:08:44 +0300 + +samba (2:4.16.1+dfsg-8) unstable; urgency=medium + + * fix the Breaks/Replaces versions in the previous upload for moving + libsamba-utils.so, and use the same Breaks/Replaces for the -dev + packages too + + -- Michael Tokarev <mjt@tls.msk.ru> Tue, 07 Jun 2022 14:11:09 +0300 + +samba (2:4.16.1+dfsg-7) unstable; urgency=medium + + * drop libunwind-dev build dependency again: it turned out the + internal stack unwind is better anyway + * move libsamba-utils.so and its dependencies from libwbclient0 + into samba-libs. In the past, libwbclient were built using this + library, but it does not depend on libsamba-utils anymore + * d/control: libnss-winbind and libpam-winbind does not depend + on samba-common. None of the files in samba-common are used by + nss and pam modules; winbind does use them but not the modules. + * d/rules: add --with-sockets-dir=/run/samba (or else it was + /var/run/samba) + + -- Michael Tokarev <mjt@tls.msk.ru> Tue, 07 Jun 2022 12:09:50 +0300 + +samba (2:4.16.1+dfsg-6) unstable; urgency=medium + + * d/control: specify arch list for libunwind-dev build-dep to be the same + as for libunwind itself (it is not built on all architectures) + + -- Michael Tokarev <mjt@tls.msk.ru> Sun, 29 May 2022 12:09:22 +0300 + +samba (2:4.16.1+dfsg-5) unstable; urgency=medium + + * add-missing-libs-deps.diff: add missing dependencies for a few samba + libraries. Closes: #1010922 + * point [printers] to /var/tmp/, stop shipping /var/spool/samba/. + For a long time, we shipped an alternative /var/tmp/ directory with mode + 01777 (so that anyone can use it to store files) but without the same setup + as for regular /var/tmp/ (in particular, without removing old files and + since it is not a usual place to store temp files, no one actually looked + at it the same way someone would take care of /var/tmp/. Change smb.conf + to use /var/tmp/ instead of /var/spool/samba/. In the postinst script, + remove /var/spool/samba/, check if it is still used in smb.conf, + and create a compatibility symlink pointing to tmp/, suggesting changing + smb.conf. And remove this compat symlink in postrm. + This probably can be accomplished by a debconf question, but the + thing is complicated by the fact that smb.conf might be upgrading + too at the same time. + * debian/patches/weak-crypto-allowed-clarify.diff: update + * testparm-do-not-fail-if-pid-dir-does-not-exist.patch: also cover samba-tool + testparm too, not only regular stand-alone testparm. + * fix-samba-tool-domain-join-segfault.patch: fix segfault when joining an + AD-DC domain using samba-tool join. + * d/rules: enable --with-profilig-data to build samba with profiling + collection (if set in smb.conf) + * d/control: add libunwind-dev to build-deps, to compile in stack backtrace + logging in case of crash + * d/control: stop build-conflicting with now-unused libtracker-miner-2.0-dev + * d/control: stop build-conflicting with libtracker-sparql-2.0-dev: there's + no point in explicitly disabling libtracker-sparql support (bullseye-only + for now anyway) + + -- Michael Tokarev <mjt@tls.msk.ru> Sat, 28 May 2022 22:50:43 +0300 + +samba (2:4.16.1+dfsg-4) unstable; urgency=medium + + [ Michael Tokarev ] + * fix spelling in disable-setuid-confchecks.patch + * d/NEWS: split it into different $package.NEWS files + * d/upstream/metadata: add Bug-Database + * d/samba.postinst: create sambashare group and usershare directory + on new install only + * libldb2: provide compat symlinks for bullseye ldb modules dir + * d/rules: provide Build-Depends-Package: for python3-ldb + * samba-vfs-modules.lintian-overrides: add spare-manual-page vfs_*.8 override + * winbind.lintian-overrides: add spare-manual-page idmap_*.8 override + + [ Arnaud Rebillout ] + * Fix patch testparm-do-not-fail-if-pid-dir-does-not-exist (Closes: #1010835) + + -- Michael Tokarev <mjt@tls.msk.ru> Wed, 11 May 2022 09:50:03 +0300 + +samba (2:4.16.1+dfsg-3) unstable; urgency=medium + + * fix ldb package version generation in d/make_shlibs + which was wrong in 2 previous uploads. + Will I *ever* make it actually work someday? + + -- Michael Tokarev <mjt@tls.msk.ru> Mon, 02 May 2022 18:32:24 +0300 + +samba (2:4.16.1+dfsg-2) unstable; urgency=medium + + * rethink ldb version *again*, to be 2.5.0+smb4.16.1-2 + or else 2.5.0+smb-1 from samba-4.16.1-2 sorts before + 2.5.0+smb-7 from samba-4.16.0-7. + + -- Michael Tokarev <mjt@tls.msk.ru> Mon, 02 May 2022 17:02:16 +0300 + +samba (2:4.16.1+dfsg-1) unstable; urgency=medium + + * new upstream minor release 4.16.1 + * move-msg.sock-from-var-lib-samba-to-run-samba.patch: + move /var/lib/samba/private/msg.sock/ to /run/samba/msg.sock/. + This is a (private) socket directory for IPC, it should not be in /var. + * Remove /var/lib/samba/private/msg.sock/ in postinst + * testparm-do-not-fail-if-pid-dir-does-not-exist.patch: + testparm deliberately fails if /run/samba does not exist, + while testparam itself does not use it and daemons will + create it on demand. Just make it a warning instead of a + fatal error, and we'll not need to pre-create this dir + in a random place using hackish ways + * ctdb-create-piddir.patch: create /run/ctdb/ in ctdb.service + and ctdb.init before invoking ctdbd (as the latter does not + create its pid directory on demand). + * stop (ab)using tmpfiles.d to pre-create /run/samba/ and /run/ctdb/ + and stop creating /run/samba/ in samba-common-bin.postinst just to + make testparam happy. + * d/rules: minor tweaks + + -- Michael Tokarev <mjt@tls.msk.ru> Mon, 02 May 2022 13:16:12 +0300 + +samba (2:4.16.0+dfsg-7) unstable; urgency=medium + + * another bunch of small tweaks to d/rules: + - set SHELL to /bin/sh -e + - rework the clean target + - provide fast replacement of architecture.mk + - better expression for DEB_REVISION + - rearrange configure options + * do not disable glusterfs on ubuntu-i386 (glusterfs is now in main) + * mention closing of #1001053 by the 4.16 upload + * change the ldb version string again, removing te "+samba*" suffix + to allow bin-NMUs +b1 (Closes: #1010100) + + -- Michael Tokarev <mjt@tls.msk.ru> Sun, 24 Apr 2022 16:56:34 +0300 + +samba (2:4.16.0+dfsg-6) unstable; urgency=medium + + * another attempt to fix/work around #221618. Re-enable + libsmbclient-ensure-lfs-221618.patch and change it to just define + an extra type array int[sizeof(off_t)-7]. If off_t is small it will + become a compile error. It is an ugly way to do it, but it should + actually work, unlike various static_assert/_Static_assert which are + language (C/C++) and standard-dependent. Closes: #221618. + + -- Michael Tokarev <mjt@tls.msk.ru> Sat, 09 Apr 2022 17:27:09 +0300 + +samba (2:4.16.0+dfsg-5) unstable; urgency=medium + + * disable libsmbclient-ensure-lfs-221618.patch for now. + It throws errors in one or another configuration no matter what. + Repoens: #221618 + * d/salsa-ci.yml: re-allow blhc salsa-ci test to fail again + due to different bug in blhc + + -- Michael Tokarev <mjt@tls.msk.ru> Sat, 09 Apr 2022 16:33:57 +0300 + +samba (2:4.16.0+dfsg-4) unstable; urgency=medium + + * libsmbclient-ensure-lfs-221618.patch: replace _Static_assert with + static_assert (and include <assert.h> to make C++ happy too + (Closes: #1009211) + * disable-setuid-confchecks.patch: when running configure tests, + samba tries to verify setuid/setgid etc calls are actually + *working*, not just exists. This is only possible when the + configure is running as root. But it turns out in some salsa-ci + configuration (namely in the reprotest), the second build is + actually running as root, and in that environment, actual + setegid call is failing somehow. Just disable the config-time + check for correctly working setgid and assume it "just works" + if present, exactly like non-root build will do. + * d/salsa-ci.yml: do not expect failure in blhc test (the original + prob has been fixed long ago), and stop requiring experimental + * mention closing of #999876 by 4.16 + + -- Michael Tokarev <mjt@tls.msk.ru> Sat, 09 Apr 2022 00:42:38 +0300 + +samba (2:4.16.0+dfsg-3) unstable; urgency=medium + + * d/control: comment out the selftest-mode build deps for now + * d/control: forgotten python3-samba:Replaces against samba package too, + not just samba-libs, when moving dckeytab python lib (Closes: #1009175) + + -- Michael Tokarev <mjt@tls.msk.ru> Fri, 08 Apr 2022 10:18:23 +0300 + +samba (2:4.16.0+dfsg-2) unstable; urgency=medium + + * use strict versioned dependency between samba-dsdb-modules and libldb2, + since they're tied to each other and are now built from the same source + * fix forgotten shlib symbols generation for python3-ldb + * change libldb versioning scheme + from ldb_2:2.5.0+samba4.16.0-1 + to ldb_2:2.5.0-1+samba4.16.0 + so that symbols versioning works correctly. Unfortunately the previous + upload to experimental used the first form which is greather than the + correct one, so temporarily (just for this 2.5.0 version of ldb) use + this: ldb_2:2.5.0+smb-1+samba4.16.0 + (with "+smb" suffix to be removed for 2.5.1+) + * exclude samba-vfs-modules for i386 ubuntu build since this package + is useless without samba itself (which is not built on this environment) + * create selftest rules and add !nocheck build-dependencies + (but do not enable selftests for now as they're failing) + * split build system into -arch and -indep parts. We build only one arch-all + package (samba-common) which contains only static files from debian/, + there's no need to build whole samba to build this package. + Move almost all Build-Depends to Build-Depends-Arch (and reindent them). + * various updates to d/rules + + -- Michael Tokarev <mjt@tls.msk.ru> Thu, 07 Apr 2022 09:56:56 +0300 + +samba (2:4.16.0+dfsg-1) experimental; urgency=medium + + * New upstream major release. + Closes: #1004690, CVE-2021-20316: Fileserver symlink metadata share escape + Closes: #1004691, CVE-2021-43566: mkdir race condition allows share escape + Closes: #1004692, CVE-2021-44141: UNIX extensions in SMB1 disclose whether + the outside target of a symlink exists + Closes: #1005642 (windows client data corruption due to cache poisoning) + Closes: #1001053 (MIT-kerberos config broken after fix for CVE-2020-25717) + Closes: #988197 (legacy printing support, 47d79d7e7e406f7dd2) + Closes: #998423 (coredump connecting from macos to shares with var substs) + Closes: #999876 (winbind allow trusted domains = no regression) + * Notable changes in 4.16 series compared to 4.13: + - modular VFS (see The_New_VFS.txt) + - publishing printers in AD is more complete + - group policies for winbindd cilents (like linux systems) + - certificate auto enrollement in AD group policy + - large list of improvements in samba-tool + - SMB1 protocol has been deprecated, some subcommands has been removed + - more consistend options/subcommands in samba commands + * d/rules: export PYTHONHASHSEED=1. This makes lots of sporadic build-time + debian-specific failures to go away, by preserving order of waf hashes + * refresh patches, update build-depend versions (talloc, tdb, tevent) + * refresh lintian-overrides files, add many new overrides + * build-depend on python3-markdown + * build-depend on libjson-perl for new heimdal bits + * more consistent internal lib naming; refresh file lists everywhere + * samba: install new rpc_* services, install samba-dcerpc + * refresh symbols files + * build libldb from samba sources, not from separate source + (this moves ldb plugins from /usr/lib/$triple/ldb/plugin/ldb/ to + /usr/lib/$triple/samba/ldb/ - the same where dsdb modules are). + * optimizations for d/make_shlibs; also allow one to specify explicit + version for some packages + * as per clarifications for waf --{bundled,builtin}-libraries, remove + now-wrong usage there. This also fixes build failures with current + samba sources + * d/rules: various optimizations to reduce startup costs by eliminating + unnecessary external command calls during d/rules read by make. + Including caching of LDB version information in d/ldb-version.mk file. + This does not affect the buildd processing much (and does not affect + runtime at all), but helps with build procedure debugging. + * d/rules: numerous small fixes, cleanups and other changes, including: + - clean up the install target + - remove some now-irrelevant parts + - fix no-glusterfs-build on non-linux + * change build procedure: instead of `waf build', run `waf install'. + `waf build' builds samba to be run from the build dir, and `waf install' + rebuilds/relinks everything again for production. Build the production + variant only, no build-dir one. + * samba-common-bin.postinst: explicitly mkdir /run/samba before invoking + samba binaries (Closes: #953530) + * in the salsa git repository of samba, stop keeping debian patches in + applied form, keep them in d/patches/ only as most other packages do. + * move single python (helper) module, libsamba-policy, together with + 2 internal libraries used by it, from samba-libs package to python3-samba. + This makes samba-libs to be free from python-related files, and makes + python3-samba to be the only python-providing package. + Closes: #1006875, #878612, #862338 + * also move dckeytab python module from samba to python3-samba + (actually stop moving it from python3-samba to samba to incorrectly + avoid a circular dependency). Also verify that python3-samba does + not depend on samba package. + * weak-crypto-allowed-clarify.diff: clarify "weak crypto is allowed" + testparm message (Closes: #975882) + * spelling.patch: fix many common spelling mistakes in the source + * ctdb: simplify/cleanup instllation of READMEs/examples + * d/control: remove breaks/replaces/depends on ancient versions of some + packages (ancient dpkg version in Pre-Depends, ancient samba-libs) + * d/rules: rework wrong shlibdeps handling + * move helper programs from /usr/lib/$multiarch/ to /usr/libexec/ + where they belongs. This should not affect users. + * smbclient: re-do the fix for an old bug, #221618. The original "fix" + did not fix anything (it is too late already to #define _FILE_OFFSET_BITS + when all types has already been defined). From now on, raise an error + if off_t is less than 64bits (it should >=64 when #include'ing + <libsmbclient.h> with proper LFS defines). In theory this can break + some sources which either included libsmbclient.h without a reason or + which didn't use any of the functions which deals with off_t (smbc_lseek + etc), - which did not explicitly enable LFS on a 32bit system. + Please email us if you faced such situation. + * drop 07_private_lib patch: we do not need to force rpath for + private libraries into every samba binary, upstream build system + does a good job here. + + -- Michael Tokarev <mjt@tls.msk.ru> Tue, 05 Apr 2022 16:01:25 +0300 + +samba (2:4.13.14+dfsg-1) unstable; urgency=high + + * New upstream security release in order to address the following defects: + - CVE-2016-2124: don't fallback to non spnego authentication if we require + kerberos + - MS CVE-2020-17049 in Samba: 'Bronze bit' S4U2Proxy Constrained Delegation + bypass + - CVE-2020-25717: A user on the domain can become root on domain members + - CVE-2020-25718: An RODC can issue (forge) administrator tickets to other + servers + + Bump build-depends ldb >= 2.2.3 + - CVE-2020-25719: AD DC Username based races when no PAC is given + - CVE-2020-25721: Kerberos acceptors need easy access to stable AD + identifiers (eg objectSid) + - CVE-2020-25722: AD DC UPN vs samAccountName not checked (top-level bug + for AD DC validation issues) + - CVE-2021-3738: crash in dsdb stack + - CVE-2021-23192: dcerpc requests don't check all fragments against the + first auth_state + + Update d/samba-libs.install for libdcerpc-pkt-auth.so.0 + * Add patch to fix "allow trusted domains" + * Bump ldb build-depends to 2.2.3 + * Update d/samba-libs.install + + -- Mathieu Parent <sathieu@debian.org> Tue, 09 Nov 2021 20:53:03 +0100 + +samba (2:4.13.13+dfsg-1) unstable; urgency=high + + [ Athos Ribeiro ] + * Add autopkgtest to verify tmpfiles setup (LP: #1905387) + - d/t/reinstall-samba-common-bin: make sure /run/samba is created + by the samba-common-bin installation process (postinst script) + - d/t/control: run new reinstall-samba-common-bin test case + + [ Paride Legovini ] + * samba.postinst: do not populate sambashare from the Ubuntu admin group + (LP: #1942195) + + [ Mathieu Parent ] + * New upstream version + - Remove CVE-2021-20254.patch + - Bump build-depends ldb >= 2.2.0 + * libwbclient0: Add Breaks+Replaces: libsamba-util0 (<< 2:4.0.0) + (Closes: #988170) + + -- Mathieu Parent <sathieu@debian.org> Mon, 01 Nov 2021 08:59:20 +0100 + +samba (2:4.13.5+dfsg-2) unstable; urgency=high + + * CVE-2021-20254: Negative idmap cache entries can cause incorrect group + entries in the Samba file server process token (Closes: #987811) + * Add Breaks+Replaces: samba-dev (<< 2:4.11) (Closes: #987209) + + -- Mathieu Parent <sathieu@debian.org> Thu, 06 May 2021 21:09:29 +0200 + +samba (2:4.13.5+dfsg-1) unstable; urgency=medium + + * New upstream version (Closes: #984863) + + -- Mathieu Parent <sathieu@debian.org> Sat, 13 Mar 2021 08:31:27 +0100 + +samba (2:4.13.4+dfsg-1) unstable; urgency=medium + + * New upstream version + - GPG signature has changed + - Update samba-libs.install + - Update symbols + * Never use priority high when asking for DHCP integration (Closes: #981554) + * Sync CTDB patches with Ubuntu: + - Add "ctdb-config: enable syslog by default" + - Update "fix nfs related service names" + * d/rules: Ubuntu specifics + - No Ceph on i386 + - Disable some i386 packages + - No GlusterFS + + -- Mathieu Parent <sathieu@debian.org> Tue, 09 Feb 2021 22:26:43 +0100 + +samba (2:4.13.3+dfsg-1) unstable; urgency=medium + + [ Andreas Hasenack ] + * d/control: enable the liburing vfs module (Closes: #976854) + * Add new DEP8 tests for the uring vfs module + * Factor out common DEP8 test code into d/t/util and change the tests to + source from it + * Add set -x and set -e to DEP8 tests + + [ Mathieu Parent ] + * liburing-dev is linux-any + * New upstream version + + -- Mathieu Parent <sathieu@debian.org> Wed, 16 Dec 2020 18:23:09 +0100 + +samba (2:4.13.2+dfsg-3) unstable; urgency=medium + + * Ensure systemd-tmpfiles is called before testparm (Closes: #975422) + * Only check configuration on configure step + + -- Mathieu Parent <sathieu@debian.org> Sun, 22 Nov 2020 10:44:51 +0100 + +samba (2:4.13.2+dfsg-2) unstable; urgency=medium + + * Upload to unstable + + -- Mathieu Parent <sathieu@debian.org> Wed, 18 Nov 2020 20:34:51 +0100 + +samba (2:4.13.2+dfsg-1) experimental; urgency=medium + + * New upstream major version + - Update d/gbp.conf, d/watch and d/README.source for 4.13 + - Update patches + - Bump build-depends ldb >= 2.2.0 + - Install new files + - Update symbols + * Includes the following security fixes: + - CVE-2020-14318: Missing handle permissions check in SMB1/2/3 ChangeNotify + (Closes: #973400) + - CVE-2020-14323: Unprivileged user can crash winbind (Closes: #973399) + - CVE-2020-14383: An authenticated user can crash the DCE/RPC DNS with + easily crafted records (Closes: #973398) + - CVE-2020-1472: Unauthenticated domain takeover via netlogon ("ZeroLogon") + (Closes: #971048) + * Includes the following fixes: + - Fixes "samba_dnsupdate gives depreacation warnings" (Closes: #973957) + - s3: libsmbclient.h: add missing time.h include (Closes: #946840) + * Remove unused python3-crypto dependency (Closes: #971292) + * Enable Spotlight with ES backend (Closes: #956096, #956482) + * Standards-Version: 4.5.0 + * Add missing Build-Depends-Package in libsmbclient.symbols and + libwbclient0.symbols + * d/copyright: Fix duplicate-globbing-patterns + * Remove outdated/malformed lintian overrides + * d/winbind.logrotate: Only reload winbindd when running (Closes: #946821) + * Bump to debhelper compat 13 + * Add another library-not-linked-against-libc override + + -- Mathieu Parent <sathieu@debian.org> Thu, 12 Nov 2020 11:23:01 +0100 + +samba (2:4.12.5+dfsg-3) unstable; urgency=high + + * Add Breaks: sssd-ad-common (<< 2.3.0), due to libndr so bump + (Closes: #963971) + * Add patch traffic_packets: fix SyntaxWarning: "is" with a literal + (Closes: #964165) + * Add patch Rename mdfind to mdsearch (Closes: #963985) + + -- Mathieu Parent <sathieu@debian.org> Sat, 04 Jul 2020 23:57:59 +0200 + +samba (2:4.12.5+dfsg-2) unstable; urgency=high + + * Add missing symbol (path_expand_tilde) + + -- Mathieu Parent <sathieu@debian.org> Thu, 02 Jul 2020 15:27:25 +0200 + +samba (2:4.12.5+dfsg-1) unstable; urgency=high + + * New upstream security release: + - CVE-2020-10730: NULL pointer de-reference and use-after-free in Samba AD + DC LDAP Server with ASQ, VLV and paged_results + - CVE-2020-10745: Parsing and packing of NBT and DNS packets can consume + excessive CPU + - CVE-2020-10760: LDAP Use-after-free in Samba AD DC Global Catalog with + paged_results and VLV. + - CVE-2020-14303: Empty UDP packet DoS in Samba AD DC nbtd. + - Bump build-depends ldb >= 2.1.4 + + -- Mathieu Parent <sathieu@debian.org> Thu, 02 Jul 2020 14:03:36 +0200 + +samba (2:4.12.3+dfsg-2) unstable; urgency=medium + + * Upload to unstable + + -- Mathieu Parent <sathieu@debian.org> Sun, 28 Jun 2020 11:45:14 +0200 + +samba (2:4.12.3+dfsg-1) experimental; urgency=medium + + * New upstream major version (Closes: #963106) + - Update d/gbp.conf, d/watch and d/README.source for 4.12 + - Drop merged patches + - Bump build-depends talloc >= 2.3.1, tdb >= 1.4.3, tevent >= 0.10.2 and + ldb >= 2.1.3 + - Upstream fixes: + + pygpo: use correct method flags + (Closes: #963242, #961585, #960171, #956428) + + CVE-2020-10700: A use-after-free flaw was found in the way samba AD DC + LDAP servers, handled 'Paged Results' control is combined with the 'ASQ' + control. A malicious user in a samba AD could use this flaw to cause + denial of service (Closes: #960189) + + CVE-2020-10704: A flaw was found when using samba as an Active Directory + Domain Controller. Due to the way samba handles certain requests as an + Active Directory Domain Controller LDAP server, an unauthorized user can + cause a stack overflow leading to a denial of service. The highest + threat from this vulnerability is to system availability + (Closes: #960188) + - intel aes-ni no more needed as GnuTLS is used + - Install new files + - Update symbols + - Update samba-libs.lintian-overrides + * d/control: Remove unused libattr1-dev Build-Depends (Closes: #953915) + + -- Mathieu Parent <sathieu@debian.org> Wed, 24 Jun 2020 23:12:11 +0200 + +samba (2:4.11.5+dfsg-1) unstable; urgency=medium + + * New upstream security release + - CVE-2019-14902: Replication of ACLs set to inherit down a subtree on AD + Directory not automatic. + - CVE-2019-14907: Crash after failed character conversion at log level 3 or + above. + - CVE-2019-19344: Use after free during DNS zone scavenging in Samba AD DC. + - Bump build-depends ldb >= 2.0.8 + + -- Mathieu Parent <sathieu@debian.org> Tue, 28 Jan 2020 07:19:46 +0100 + +samba (2:4.11.3+dfsg-1) unstable; urgency=high + + * New upstream security release + - Drop merged patches for previous security fixes + - CVE-2019-14861: An authenticated user can crash the DCE/RPC DNS management + server by creating records with matching the zone name. + - CVE-2019-14870: The DelegationNotAllowed Kerberos feature restriction was + not being applied when processing protocol transition requests (S4U2Self), + in the AD DC KDC. + * d/control: drop python3-matplotlib + * d/control: Fix stronger-dependency-implies-weaker + (samba depends -> recommends python3-dnspython) + + -- Mathieu Parent <sathieu@debian.org> Mon, 16 Dec 2019 09:47:45 +0100 + +samba (2:4.11.1+dfsg-3) unstable; urgency=medium + + * Add some python dependencies: + - python3-matplotlib : samba-tool visualize + - python3-markdown : samba-tool domain schemaupgrade + - python3-dnspython : samba-tool dns + * Only build with default python3 (Closes: #943635) + + -- Mathieu Parent <sathieu@debian.org> Sun, 17 Nov 2019 14:48:02 +0100 + +samba (2:4.11.1+dfsg-2) unstable; urgency=high + + * New upstream security release + - CVE-2019-10218: Malicious servers can cause Samba client code to return + filenames containing path separators to calling code. + - CVE-2019-14833: When the password contains multi-byte (non-ASCII) + characters, the check password script does not receive the full password + string. + + -- Mathieu Parent <sathieu@debian.org> Fri, 18 Oct 2019 20:26:45 +0200 + +samba (2:4.11.1+dfsg-1) unstable; urgency=medium + + * New upstream release + + -- Mathieu Parent <sathieu@debian.org> Fri, 18 Oct 2019 19:00:46 +0200 + +samba (2:4.11.0+dfsg-11) unstable; urgency=medium + + * Stop building with spotlight support which pulls glib (Closes: #941654) + * Force quota support (Closes: #941899) + * Standards-Version: 4.4.1, no change + + -- Mathieu Parent <sathieu@debian.org> Mon, 14 Oct 2019 12:16:04 +0200 + +samba (2:4.11.0+dfsg-10) unstable; urgency=medium + + * Add libwbclient-dev to samba-dev depends as samba-util was moved there + (Closes: #941750) + + -- Mathieu Parent <sathieu@debian.org> Sat, 05 Oct 2019 15:57:07 +0200 + +samba (2:4.11.0+dfsg-9) unstable; urgency=medium + + * Remove versioned depends on libtdb-dev (>= 2) and add libldb-dev (>= 2:2) + + -- Mathieu Parent <sathieu@debian.org> Thu, 03 Oct 2019 19:08:17 +0200 + +samba (2:4.11.0+dfsg-8) unstable; urgency=medium + + * d/gbp.conf: sign-tags = True + * Do not check smb.conf with testparm when server role=active directory domain + controller (Closes: #931734) + * Force one job during configure step with -j 1 (Closes: #941467). + Not setting -j leads to default which is number of cpus + + -- Mathieu Parent <sathieu@debian.org> Thu, 03 Oct 2019 07:52:39 +0200 + +samba (2:4.11.0+dfsg-7) unstable; urgency=medium + + * Always evaluate WAF_NO_PARALLEL to ensure correct value (Closes: #941467) + * This version is built with talloc from sid (Closes: #940963) + + -- Mathieu Parent <sathieu@debian.org> Wed, 02 Oct 2019 20:45:24 +0200 + +samba (2:4.11.0+dfsg-6) unstable; urgency=medium + + * Do not run waf configure in parallel. Fix FTBFS on arm (Closes: #941467) + + -- Mathieu Parent <sathieu@debian.org> Tue, 01 Oct 2019 22:35:36 +0200 + +samba (2:4.11.0+dfsg-5) experimental; urgency=medium + + * d/gitlabracadabra.yml: only_allow_merge_if_pipeline_succeeds: false + * Remove patches: + - "build: Remove tests for _readdir() and __readdir()" + - "build: Remove tests for rdchk()" + - "build: Remove tests for _pwrite() and __pwrite()" + * Add patches by Ralph Boehme: + - "wscript: remove all checks for _FUNC and __FUNC" + - "wscript: split function check to one per line and sort alphabetically" + + -- Mathieu Parent <sathieu@debian.org> Mon, 30 Sep 2019 13:37:50 +0200 + +samba (2:4.11.0+dfsg-4) experimental; urgency=medium + + * Use the same arches for librados-dev than libcephfs-dev (Fix missing + build-depends on alpha and sh4) + * Split vfsmods:Recommends substvar into + {vfsceph,vfsglusterfs,vfssnapper}:Recommends to make the code more readable + and fix FTBFS on linux platforms without ceph (hppa and sparc64, and also + alpha and sh4) + * Add patch for "build: Remove tests for _readdir() and _readdir()", to + hopefully fix FTBFS on armel + + -- Mathieu Parent <sathieu@debian.org> Sun, 29 Sep 2019 09:29:03 +0200 + +samba (2:4.11.0+dfsg-3) experimental; urgency=medium + + * Try to fix FTBFS on armel (armhf is fixed): + - Add patch for build: Remove tests for rdchk() + + -- Mathieu Parent <sathieu@debian.org> Sat, 28 Sep 2019 22:17:04 +0200 + +samba (2:4.11.0+dfsg-2) experimental; urgency=medium + + * d/gitlabracadabra.yml: Add samba-team/libsmb2 + * Try to fix FTBFS on armel and armhf: + - Add patch for build: Remove tests for _pwrite() and __pwrite() + + -- Mathieu Parent <sathieu@debian.org> Sat, 28 Sep 2019 11:47:56 +0200 + +samba (2:4.11.0+dfsg-1) experimental; urgency=medium + + [ Mathieu Parent ] + * Upload to experimental + * New upstream major release + - Update d/gbp.conf, d/watch and d/README.source for 4.11 + - Import upstream release + - Update fix-nfs-service-name-to-nfs-kernel-server.patch + - Bump build-depends talloc >= 2.2.0, tdb >= 1.4.2, tevent >= 0.10.0 and + ldb >= 2:2.0.7 + - libsamba-passdb.so bumped to 0.28.0 + - libnon-posix-acls is now a subsystem + - Drop libparse-pidl-perl package (Closes: #939419) + - Add new files to d/*.install + - Move libsamba-util.so.* to libwbclient0, to avoid circular dependencies + - Move libsamba-util deps to libwbclient0 + * Add build-Remove-tests-for-getdents-and-getdirentries.patch, to fix FTBFS on + armel and armhf + * salsa-ci: Build on experimental + + [ John Paul Adrian Glaubitz ] + * Disable cephfs support on architectures where it's not stable + (Closes: #940697) + + [ Louis van Belle ] + * d/control, d/samba.install: added libtasn1-bin, libtasn1-6-dev to build + dumpmscat + * d/control, d/rules: Enable spotlight (TimeMachine) + * d/control: Bump libtdb-dev (>= 2) in samba-dev deps + * Update libwbclient0.symbols + * d/rules: adjust LDB_DEPENDS + + -- Mathieu Parent <sathieu@debian.org> Thu, 26 Sep 2019 09:37:51 +0200 + +samba (2:4.10.8+dfsg-1) unstable; urgency=medium + + * Upload to unstable + * New upstream release: + - CVE-2019-10197: Combination of parameters and permissions can allow user + to escape from the share path definition + + -- Mathieu Parent <sathieu@debian.org> Tue, 10 Sep 2019 18:46:54 +0200 + +samba (2:4.10.7+dfsg-1) experimental; urgency=medium + + [ Mathieu Parent ] + * New upstream release + - Update patches + - Drop nsswitch-Add-try_authtok-option-to-pam_winbind.patch, merged + - libsamba-passdb.so bumped to 0.27.2 + - Update symbols + - Update installed files + * samba-libs: Fix Breaks+Replaces: libndr-standard0 (<< 2:4.0.9) + (Closes: #910242) + * Add missing Breaks+Replace found by piuparts (Closes: #929217) + * Enable vfs_nfs4acl_xattr (Closes: #930540) + * ctdb: + - enable ceph and etcd recovery lock + - Downgrade ctdb_mutex_ceph_rados_helper shlibdeps to recommends + * Add gitlabracadabra.yml + * Update salsa-ci.yml + + [ Rafael David Tinoco ] + * debian/rules: Make DEB_HOST_ARCH_CPU initialized through dpkg-architecture + (Closes: #931138) + * CTDB NFS fixes from Ubuntu (Closes: #929931, LP: #722201): + - d/p/fix-nfs-service-name-to-nfs-kernel-server.patch: change nfs service + name from nfs to nfs-kernel-server + - ctdb-config: depend on /etc/ctdb/nodes file + - d/ctdb.install, d/rules: create ctdb run directory into tmpfiles.d to + allow pid file to exist + - added /var/lib/ctdb/* directories + - d/ctdb.postrm: remove leftovers from /var/lib/ctdb/* + - Add examples of NFS HA CTDB config files + helper script + + [ Mathieu Parent ] + * Update d/gbp.conf, d/watch and d/README.source for 4.10 + * Drop ctdb-config-depend-on-etc-default-nodes-file.patch, merged upstream + * Bump build-depends talloc >= 2.1.16, tdb >= 1.3.18, tevent >= 0.9.39 and + ldb >= 2:1.5.5 + * Bump libcmocka-dev builddep to 1.1.3 + * d/rules: Remove 1.5.1+really prefix from LDB_DEPENDS + * d/copyright: + - s/GPL-3+/GPL-3.0+/ and s/LGPL-3+/LGPL-3.0+/ + - Move License details to end of file + - Add waf licences + - Add lib/replace licences + - Update lib/{ldb,talloc,tdb} licences + * Move to Python3 (from Ubuntu) + * Bump debhelper from old 11 to 12. + * Standards-Version: 4.4.0 + * Replace all reference of /var/run to /run (Closes: #934540) + * Replace python shbang by python3 in d/*.py + + -- Mathieu Parent <sathieu@debian.org> Thu, 29 Aug 2019 14:32:52 +0200 + +samba (2:4.9.5+dfsg-1) experimental; urgency=medium + + * New upstream release + - Bump ldb Build-Depends to 2:1.5.1+really1.4.6 + - Drop s3-auth-ignore-create_builtin_guests-failing-without.patch, merged + - Drop and python-gpg.patch, merged + * Add Recommends: samba-dsdb-modules for samba-common-bin (Closes: #862467) + + -- Mathieu Parent <sathieu@debian.org> Wed, 20 Mar 2019 21:07:02 +0100 + +samba (2:4.9.4+dfsg-4) unstable; urgency=medium + + * samba-libs: Add Breaks+Replaces: libndr-standard0 (<< 4) (Closes: #910242) + * Improve AppArmor integration (Closes: #896080) + - Install update-apparmor-samba-profile 1.2 from Christian Boltz (openSUSE) + - Adapt update-apparmor-samba-profile: Rename apparmor profile snippet, and + test for it's directory + - smbd.init: Run update-apparmor-samba-profile before start + - smbd.service: Run update-apparmor-samba-profile before start + - Remove /etc/apparmor.d/samba/smbd-shares on purge + + -- Mathieu Parent <sathieu@debian.org> Tue, 26 Feb 2019 22:18:19 +0100 + +samba (2:4.9.4+dfsg-3) unstable; urgency=medium + + [ Ivo De Decker ] + * Remove myself from uploaders + + [ Mathieu Parent ] + * Update debian/gitlab-ci.yml + * Standards-Version: 4.3.0 + * Add upstream patch for python-gpg support + * Replace Suggests: python-gpgme by Recommends: python-gpg (Closes: #876984) + + -- Mathieu Parent <sathieu@debian.org> Fri, 15 Feb 2019 11:14:10 +0100 + +samba (2:4.9.4+dfsg-2) unstable; urgency=medium + + * Append +really0.02 to libparse-pidl-perl version (Closes: #918564) + * Add apport hook (From Ubuntu) + * Change build dependency to libglusterfs-dev (Closes: #919667) + + -- Mathieu Parent <sathieu@debian.org> Wed, 23 Jan 2019 20:59:08 +0100 + +samba (2:4.9.4+dfsg-1) unstable; urgency=medium + + * New upstream release + - Remove patches for previous security fixes, merged + - Remove unused lintian overrides (library-not-linked-against-libc) + * ignore create_builtin_guests() failing without a valid idmap configuration + (Closes: #909465, #899269) + + -- Mathieu Parent <sathieu@debian.org> Sat, 22 Dec 2018 18:32:00 +0100 + +samba (2:4.9.2+dfsg-2) unstable; urgency=high + + * New upstream security release + - CVE-2018-14629 Unprivileged adding of CNAME record causing loop in AD + Internal DNS server + - CVE-2018-16841 Double-free in Samba AD DC KDC with PKINIT + - CVE-2018-16851 NULL pointer de-reference in Samba AD DC LDAP server + - CVE-2018-16852 NULL pointer de-reference in Samba AD DC DNS servers + - because of CVE-2018-16853 (Samba AD DC S4U2Self Crash in experimental + MIT Kerberos configuration (unsupported)), mark the MIT Kerberos build of + the Samba AD DC as experimental (not used in Debian package) + - CVE-2018-16857 Bad password count in AD DC not always effective + * Prepend 1.5.1+really to ldb version + + -- Mathieu Parent <sathieu@debian.org> Sat, 24 Nov 2018 23:21:27 +0100 + +samba (2:4.9.2+dfsg-1) unstable; urgency=medium + + * New upstream release + - Bump build-dependencies to ldb 1.4.2 + - Update debian/samba-libs.install + * d/gitlab-ci.yml: + - Update to use include + - allow_failure for reprotest until #912340 is fixed + * d/rules: Replace override_dh_perl by override_dh_perl-arch (Closes: #913143) + * debian/gitlab-ci.yml: + - Samba sometimes needs ldb from experimental + - Use ldb from experimental in piuparts + + -- Mathieu Parent <sathieu@debian.org> Sat, 17 Nov 2018 17:25:10 +0100 + +samba (2:4.9.1+dfsg-2) unstable; urgency=medium + + [ Mathieu Parent ] + * Enable --accel-aes=intelaesni on DEB_HOST_ARCH_CPU=amd64 instead of + DEB_HOST_ARCH=amd64. This matches samba-libs.install and adds x32 + * Allow one to change password via passwd in default config + - third_party: Update pam_wrapper to version 1.0.7 + - third_party: Add pam_set_items.so from pam_wrapper + - nsswitch: Add try_authtok option to pam_winbind + - tests: Check pam_winbind pw change with different options + - Patch for previous 4 commits + - debian/winbind.pam-config: Use the new try_authtok option allowing + password change while preserving current behavior with password strength + modules (Closes: #858923, LP: #570944) + * README.source: use gbp pull --track-missing + * Override library-not-linked-against-libc false positives (See #896012) + * Fix wrong-path-for-interpreter for pidl and findsmb + * ctdb.postrm: Fix to disable_legacy (found by piuparts) (Closes: #911530) + + [ James Clarke ] + * Fix systemd-related build failures on non-Linux + + [ Mathieu Parent ] + * Add Gitlab CI: + - Subscribe to salsa-ci-team/pipeline (See salsa-ci-team/pipeline!27 and + samba-team/samba!10) + - Copy /etc/apt/{sources.list.d,preferences.d} in the dockerbuilder + container (salsa-ci-team/images!9) + - Allow daemons to start during autopkgtest (salsa-ci-team/images!10) + - debian/gitlab-ci.yml: all jobs: Use ldb from experimental + - debian/gitlab-ci.yml: piuparts job: Add --scriptsdir, --allow-database + and --warn-on-leftovers-after-purge options + - debian/gitlab-ci.yml: piuparts job: Copy apt config to allow enabling + extra repositories + - debian/gitlab-ci.yml: piuparts job: Use image with the following changes: + + Add pre_install_copy_configs and post_install_remove_configs to copy, + resp. remove config files from /etc-target to /etc + + patch pre_remove_50_find_bad_permissions to workaround findutils bug + #912180. Also proposed another workaround in piuparts as bug #911334 + which is merged but not yet released + * Upload to unstable + + -- Mathieu Parent <sathieu@debian.org> Thu, 01 Nov 2018 21:13:37 +0100 + +samba (2:4.9.1+dfsg-1) experimental; urgency=medium + + * New upstream release + + -- Mathieu Parent <sathieu@debian.org> Mon, 24 Sep 2018 13:33:21 +0200 + +samba (2:4.9.0+dfsg-1) experimental; urgency=medium + + * Upload to experimental + * New upstream release + - Update d/gbp.conf, d/watch and d/README.source for 4.9 + - Remove Fix-pidl-manpage-sections.patch, Fix-spelling.patch and + Improve-vfs_linux_xfs_sgid-manpage.patch, merged upstream + - Bump build-depends talloc >= 2.1.14, tdb >= 1.3.16, tevent >= 0.9.37 and + ldb >= 2:1.4.2' + - Update paths + - Update libsmbclient.symbols + - ctdb.lintian-override: Remove script-not-executable override + - Add ctdb.NEWS: "Configuration has been completely overhauled" + - ctdb: Enable/disable legacy script in postinst/presinst + + -- Mathieu Parent <sathieu@debian.org> Sat, 22 Sep 2018 23:04:11 +0200 + +samba (2:4.8.5+dfsg-1) unstable; urgency=medium + + * New upstream release + - Bump ldb Build-depends to 2:1.4.0+really1.3.6 + - Fixes FTBFS on kFreeBSD (Closes: #883972) + - d/rules: winbind_krb5_locator is now in the correct path + - winbind_krb5_locator manpage has moved from section 7 to 8 + * Standards-Version: 4.2.1 + + -- Mathieu Parent <sathieu@debian.org> Thu, 30 Aug 2018 19:32:24 +0200 + +samba (2:4.8.4+dfsg-2) unstable; urgency=high + + * Fix typo in previous release: s/usefull/useful/ + * Prepend 1.4.0+really to ldb version to allow samba-dsdb-modules install + (Closes: #906562, #906568) + * Urgency still set to high + + -- Mathieu Parent <sathieu@debian.org> Sun, 19 Aug 2018 10:08:22 +0200 + +samba (2:4.8.4+dfsg-1) unstable; urgency=high + + [ Andreas Hasenack ] + * d/samba.logrotate: only try to reload the services if they are running + (Closes: #902149) + * Remove the deprecated "syslog" and "syslog only" options (Closes: #901138) + + [ Mathieu Parent ] + * New upstream security release + - CVE-2018-1139 Weak authentication protocol allowed + - CVE-2018-1140 Denial of Service Attack on DNS and LDAP server + - CVE-2018-10858 Insufficient input validation on client directory listing + in libsmbclient + - CVE-2018-10918 Denial of Service Attack on AD DC DRSUAPI server + - CVE-2018-10919 Confidential attribute disclosure from the AD LDAP server + - Urgency set to high + - Bump build-depends ldb >= 1.3.5 (actually 2:1.4.0+really1.3.5) for + CVE-2018-1140 + * smb.conf: Remove "wins support" and "wins server" comments + * smb.conf: Improve "logging" comments + * smb.conf: Remove "dns proxy = no", only useful as a WINS server + * smb.conf: Propose better idmap config + * smb.conf: Remove "passdb backend = tdbsam" as this is the default + * smb.conf: Fix "usershare max shares" default (patched to 100 instead of 0) + * Standards-Version: 4.2.0 + * Set Rules-Requires-Root: binary-targets as chmod is used + * Remove override_dh_strip target as dbgsym migration is complete + + -- Mathieu Parent <sathieu@debian.org> Fri, 17 Aug 2018 16:30:18 +0200 + +samba (2:4.8.2+dfsg-2) unstable; urgency=medium + + * Update panic-action script message, samba-dbg renamed to samba-dbgsym + (Closes: #900242) + * Ensure /var/lib/samba/dhcp.conf exists (Closes: #901585) + * Check smb.conf with testparm, and also with samba-tool when + server role = active directory domain controller (Closes: #900908) + + -- Mathieu Parent <sathieu@debian.org> Mon, 18 Jun 2018 23:39:41 +0200 + +samba (2:4.8.2+dfsg-1) unstable; urgency=medium + + * New upstream release + - Bump build-depends ldb >= 1.3.3 + * Fix lintian warnings with patches recently merged upstream: + - Add Fix-pidl-manpage-sections.patch + - Add Fix-spelling.patch + - Add Improve-vfs_linux_xfs_sgid-manpage.patch + * Wrap very long lines in d/rules + + -- Mathieu Parent <sathieu@debian.org> Thu, 17 May 2018 09:58:09 +0200 + +samba (2:4.8.1+dfsg-2) unstable; urgency=low + + * Upload to unstable + * Really ignore nmbd start errors when there is no non-loopback interface + (Closes: #893762) + * Ignore nmbd start errors when there is no local IPv4 non-loopback interface + (Closes: #859526) + * Fix possible-unindented-list-in-extended-description in samba-vfs-modules + + -- Mathieu Parent <sathieu@debian.org> Tue, 15 May 2018 21:23:32 +0200 + +samba (2:4.8.1+dfsg-1) experimental; urgency=medium + + * New upstream release + * Add lintian override for "smbclient: executable-is-not-world-readable + usr/lib/x86_64-linux-gnu/samba/smbspool_krb5_wrapper 0700" (See #894720) + * Improve samba-vfs-modules description (Closes: #776505) + * Check smb.conf in samba-common-bin.postinst (Closes: #816301) + * Mark libparse-pidl-perl, samba-dev, samba-dsdb-modules and samba-vfs-modules + as"Multi-Arch: same" + * Standards-Version: 4.1.4, no change + * debian/smb.conf: Fix typo in comment line: sever -> server (Closes: #763648) + * Read smb.conf until [print$] section instead of [cdrom] to preserve + locally-defined shares (Closes: #776259) + * Fix and improve dhcp integration: + - dhclient3 was renamed to dhclient long time ago... + - Remove /etc/samba/dhcp.conf on purge (Closes: #784713) + - Move dhcp.conf out of /etc to allow ro root (Closes: #695362) + - Update template for "Move dhcp.conf out of /etc to allow ro root" + * Enable --accel-aes=intelaesni on DEB_HOST_GNU_CPU=x86_64 (Closes: #896196) + - Use dh-exec to install libaesni-intel.so.0 only on amd64 + + -- Mathieu Parent <sathieu@debian.org> Sun, 29 Apr 2018 12:54:06 +0200 + +samba (2:4.8.0+dfsg-2) experimental; urgency=medium + + * Remove unused and outdated debian/README.debian (debian/README.Debian is + used instead) + * Mask services as appropriate in samba and winbind postinst (Closes: #863285) + - mask samba-ad-dc unless server role = active directory domain controller + (as before) + - mask smbd and nmbd when server role = active directory domain controller + - mask nmbd when disable netbios = yes (Closes: #866125) + * Set smbspool_krb5_wrapper permissions to 0700 (Closes: #894720, #372270) + * Remove Depends: samba-libs of lib{nss,pam}-winbind + * Mark winbind "Multi-Arch: allowed" and make lib{pam,nss}-winbind depends on + winbind:any to allow co-installation (Closes: #881100) + * Ignore nmbd start errors when there is no non-loopback interface + (Closes: #893762) + + -- Mathieu Parent <sathieu@debian.org> Sun, 08 Apr 2018 22:09:53 +0200 + +samba (2:4.8.0+dfsg-1) experimental; urgency=medium + + [ Mathieu Parent ] + * New major upstream version + - Update d/gbp.conf and d/watch for 4.8 + - Update upstream source from tag 'upstream/4.8.0+dfsg' + - Re-apply patches + - Remove patches merged upstream: + + no_build_system.patch + + systemd-syslog.target-is-obsolete.patch + + Add-documentation-to-systemd-Unit-files.patch + + fix_kill_path_in_units.patch + + nmbd-requires-a-working-network.patch + + CVE-2018-1050-11343-4.7.patch + + CVE-2018-1057-v4-7.metze01.patches.txt + - Bump build-depends talloc >= 2.1.11~, tdb >= 1.3.15~, tevent >= 0.9.36~ + and ldb >= 2:1.3.2~ + - Drop Build-Conflicts-Arch: libaio-dev, vfs_aio_linux was dropped + - Update debian/*.install and use debian/not-installed + - Update debian/libsmbclient.symbols + - Upload to experimental + * debian/README.source + - Update instructions + - Convert to Markdown + - Add a symlink from README.source to README.source.md + * debian/rules: + - Use the new --systemd-install-services + - Use dh_missing --fail-missing + - Re-order debian/rules overrides in the order they are called + - Remove broken get-packaged-orig-source target + - Remove unused DEB_BUILD_OPT_FOO variables + - Add some comments + - Move all the custom installs from override_dh_install to + override_dh_auto_install + - Remove --sourcedir override to dh_install "since dh_install automatically + looks for files in debian/tmp in debhelper compatibility level 7 and + above" + - PIDFile= is now correctly set in *.service + + [ Louis van Belle ] + * Update d/control, Relax Build-Depends to allow backport + + -- Mathieu Parent <sathieu@debian.org> Mon, 19 Mar 2018 13:02:51 +0100 + +samba (2:4.7.4+dfsg-2) unstable; urgency=high + + [ Mathieu Parent ] + * This is a security release in order to address the following defects: + - CVE-2018-1050: Codenomicon crashes in spoolss server code + - CVE-2018-1057: Unprivileged user can change any user (and admin) password + * Fix "/etc/dhcp/dhclient-enter-hooks.d/samba returned non-zero exit status 1" + when samba.service is disabled + - Pick patch from Ubuntu for Launchpad #1579597 + - Fix systemd check + * Replace override_dh_systemd_start by override_dh_installsystemd (Fixes + ctdb starting on install and restarting on upgrade since update to debhelper + compat 11) + * Replace --no-restart-on-upgrade by --no-stop-on-upgrade in dh_installinit + and dh_installsystemd + * Add missing dh_installsystemd calls to ensure that services are properly + unmasked and enabled in postinst + + [ Andreas Hasenack ] + * Add extra DEP8 tests to samba (Closes: #890439): + - d/t/control, d/t/cifs-share-access: access a file in a share using cifs + - d/t/control, d/t/smbclient-anonymous-share-list: list available shares + anonymously + - d/t/control, d/t/smbclient-authenticated-share-list: list available + shares using an authenticated connection + - d/t/control, d/t/smbclient-share-access: create a share and download a + file from it + + -- Mathieu Parent <sathieu@debian.org> Fri, 02 Mar 2018 20:55:06 +0100 + +samba (2:4.7.4+dfsg-1) unstable; urgency=medium + + * New upstream version + - Updates patches + - Bump ldb build-deps to 1.2.3 + * Repository moved to salsa: Update Vcs-* fields + * d/README.source: + - ensure required branches exists + - sync all required branches + * Standards-Version: 4.1.3 (no change) + * Move to debhelper compat 11 + * Move libpam-winbind: to section admin + * Move libnss-winbind: to section admin + + -- Mathieu Parent <sathieu@debian.org> Thu, 11 Jan 2018 20:49:28 +0100 + +samba (2:4.7.3+dfsg-1) unstable; urgency=high + + * New upstream version + - Remove patches for CVE-2017-15275 and CVE-2017-14746, merged + - Bump libtevent-dev to 0.9.34, to fix upstream "BUG 13130: smbd on disk + file corruption bug under heavy threaded load" + - Set urgency to high for this fix + * Stop building vfs_aio_linux (Closes: #881239) + * Print "ignore the following error about deb-systemd-helper not finding + samba-ad-dc.service" on upgrade too (Closes: #882482). + Thanks Julian Gilbey for the patch + + -- Mathieu Parent <sathieu@debian.org> Thu, 23 Nov 2017 16:39:19 +0100 + +samba (2:4.7.1+dfsg-2) unstable; urgency=high + + * This is a security release in order to address the following defects: + - CVE-2017-15275: s3: smbd: Chain code can return uninitialized memory when + talloc buffer is grown. + - CVE-2017-14746: s3: smbd: Fix SMB1 use-after-free crash bug. + + -- Mathieu Parent <sathieu@debian.org> Sun, 12 Nov 2017 10:02:19 +0100 + +samba (2:4.7.1+dfsg-1) unstable; urgency=medium + + * New upstream version + * Add lintian-override about heimdal embedded-library + * Remove trailing spaces in debian/changelog + + -- Mathieu Parent <sathieu@debian.org> Wed, 08 Nov 2017 07:48:31 +0100 + +samba (2:4.7.0+dfsg-2) unstable; urgency=medium + + * Upload to sid + * Bump libcmocka-dev builddep to 1.1.1 (Closes: #878357) + * Remove Skip-raw.write-tests.patch as we don't run tests + * Remove 05_share_ldb_module, not understood + - d/rules: /usr/lib/*/samba/share/ldb.so is not present anymore + + -- Mathieu Parent <sathieu@debian.org> Thu, 26 Oct 2017 17:30:02 +0200 + +samba (2:4.7.0+dfsg-1) experimental; urgency=medium + + * New major upstream version + - Update d/gbp.conf and d/watch for 4.7 + - Update patches + - Remove no_build_env.patch, no more needed + - Remove 4 patches merged upstream + - Bump build-depends ldb >= 2:1.2.2~, tdb >= 1.3.14~, tevent >= 0.9.33~ + - Move replace from builtin to bundled libraries to fix FTBFS + - Update d/*.install + - Update symbols + * Rework all patches for dep5 and "gbp pq" + * Add libjansson-dev to Build-Depends to allow logging in JSON format + * Lintian fixes: + - build-depends: dh-systemd (>= 1.5) => use debhelper (>= 9.20160709) + - Move libsmbclient-dev from priority extra to optional + - Standards-Version: 4.1.1 + - Update samba-libs.lintian-overrides (following libsmbldap bump) + + -- Mathieu Parent <sathieu@debian.org> Thu, 12 Oct 2017 22:09:19 +0200 + +samba (2:4.6.7+dfsg-2) unstable; urgency=high + + * This is a security release in order to address the following defects: + - CVE-2017-12150: Some code path don't enforce smb signing, when they should + - CVE-2017-12151: Keep required encryption across SMB3 dfs redirects + - CVE-2017-12163: Server memory information leak over SMB1 + + -- Mathieu Parent <sathieu@debian.org> Tue, 19 Sep 2017 22:00:13 +0200 + +samba (2:4.6.7+dfsg-1) unstable; urgency=medium + + * New upstream version + - Removed CVE-2017-11103-Orpheus-Lyre-KDC-REP-service-name-val.patch, + merged + - Remove s3-gse_krb5-fix-a-possible-crash-in-fill_mem_keytab.patch, merged + * README.source: Default merge-mode of gbp has changed to replace + * Fix samba.logrotate (Thanks Thomas A. Reim) + + -- Mathieu Parent <sathieu@debian.org> Tue, 15 Aug 2017 23:06:36 +0200 + +samba (2:4.6.5+dfsg-8) unstable; urgency=medium + + * Remove dependency on update-inetd, not used anymore + * vfs_ceph and vfs_glusterfs are linux only (d/rules part) + * Remove build-dependency on faketime, not used anymore + + -- Mathieu Parent <sathieu@debian.org> Sun, 23 Jul 2017 19:56:07 +0200 + +samba (2:4.6.5+dfsg-7) unstable; urgency=medium + + * xfslibs-dev is only available on linux + * Fix logrotate for /var/log/samba/log.samba to send SIGHUP to all processes + of the service (systemd only) + * Add reportbug script for samba-common, samba and winbind (Closes: #682861) + + -- Mathieu Parent <sathieu@debian.org> Fri, 21 Jul 2017 06:19:57 +0200 + +samba (2:4.6.5+dfsg-6) unstable; urgency=medium + + * libcephfs-dev is only available on linux + * Fix libpam-winbind.prerm to be multiarch-safe (Closes: #647430) + * Add missing logrotate for /var/log/samba/log.samba (Closes: #803924) + * Use smbcontrol in logrotate when available (Closes: #804705) + * From upstream: Fix outdated DNS Root servers (Closes: #865406) + * Drop xsltproc_dont_build_smb.conf.5.patch, as #750593 is marked fixed + (Closes: #776223) + + -- Mathieu Parent <sathieu@debian.org> Wed, 19 Jul 2017 22:53:50 +0200 + +samba (2:4.6.5+dfsg-5) unstable; urgency=medium + + * Remove bug_598313_upstream_7499-nss_wins-dont-clobber-daemons-logs.patch, + unused + * Remove samba-ad-dc.templates + * Remove upstart files on upgrade (Closes: #867688) + * glusterfs-common is only available on linux + * Remove the samba service + * Ensure /var/log/samba permissions are set (Closes: #711138) + + -- Mathieu Parent <sathieu@debian.org> Tue, 18 Jul 2017 23:29:44 +0200 + +samba (2:4.6.5+dfsg-4) unstable; urgency=high + + * This is a security release in order to address the following defects: + - CVE-2017-11103: Orpheus' Lyre KDC-REP service name validation + (Closes: #868209) + * Other fixes: + - Remove empty samba-common.maintscript (leading to empty preinst and + prerm) + + -- Mathieu Parent <sathieu@debian.org> Thu, 13 Jul 2017 14:38:32 +0200 + +samba (2:4.6.5+dfsg-3) unstable; urgency=medium + + * Remove upstart code + * Remove empty prerm for samba and samba-common-bin (Closes: #866258, + #866284) + * sysv: Use --pidfile in addition to --exec to avoid matching daemons in + containers (Closes: #810794) + * Standards-Version: 4.0.0 + - Use https form of the copyright-format URL (Debian Policy 4.0.0) + * Remove debian/bzr-builddeb.conf + * Remove empty debian/diversions + * Remove "ugly workaround to get the manpages on every architecture to be + identical", xsltproc now honour SOURCE_DATE_EPOCH + * Remove dh-exec shbang in libnss-winbind.install + * Remove empty debian/libsmbclient.manpages + * Remove pre-jessie maintscript snipsets + * Move to debhelper compat 10 (Major change: dh_installinit command now + defaults to --restart-after-upgrade) + * Remove unused samba-ad-dc package metadata (Closes: #866138) + * Fix "Non-kerberos logins fails on winbind 4.X when krb5_auth is configured + in PAM" (Closes: #739768) + + -- Mathieu Parent <sathieu@debian.org> Thu, 29 Jun 2017 09:45:59 +0200 + +samba (2:4.6.5+dfsg-2) unstable; urgency=medium + + * Upload to unstable + * Move runtime dependencies of vfs_ceph and vfs_snapper to Recommends + * Fix typo s/DESTIDR/DESTDIR/ in d/rules + * Enable vfs_glusterfs (Closes: #864862) + * Add libdbus-1-dev as Build-Depends to allow vfs_snapper to build (Closes: + #804781). Patch by Willy Vanlid. + + -- Mathieu Parent <sathieu@debian.org> Mon, 19 Jun 2017 23:56:56 +0200 + +samba (2:4.6.5+dfsg-1) experimental; urgency=medium + + * New upstream version (Closes: #859390) + - d/gbp.conf, d/watch: Change major version to 4.6 + - Bump Build-dependencies of talloc, tdb, tevent and ldb to resp. 2.1.9, + 1.3.12, O.9.31 and 1.1.29 + - Remove CVE-2017-7494.patch: applied upstream + - Add Build-Depends: libcmocka-dev (>= 1.0) + - Update d/*.install + - d/samba-common.docs: Roadmap removed upstream + * Update README.source, about importing major versions + * d/control cleanup: + - Remove Conflicts and Replaces on pre-wheezy samba4 packages + - Remove Conflicts, Breaks and Replaces on pre-wheezy samba packages + - Remove Conflicts, Breaks and Replaces on pre-jessie samba packages + - Remove Conflicts, Breaks and Replaces on (pre-jessie) samba4 packages + - Remove Conflicts on pre-jessie libldb1 package + - Remove Breaks on pre-jessie qtsmbstatus-server package + - Remove Replaces on pre-wheezy smbget package + - wrap-and-sort + * Add libcephfs-dev as b-d to build vfs_ceph (Closes: #856998). Patch from + Ubuntu + * Enable avahi support (Closes: #859875). Patch from Laurent Bigonville. + * Translations: + - Portuguese translation for debconf messages (Closes: #864172). Patch from + Rui Branco + - Hungarian translation for debconf messages (Closes: #708277) + * Properly quote subshell invocation in samba-common.preinst (Closes: #771689) + * Add Build-Depends: xfslibs-dev, for XFS quotas + + -- Mathieu Parent <sathieu@debian.org> Mon, 12 Jun 2017 08:09:43 +0200 + +samba (2:4.5.8+dfsg-2) unstable; urgency=high + + * CVE-2017-7494: rpc_server3: Refuse to open pipe names with / inside + + -- Mathieu Parent <sathieu@debian.org> Thu, 18 May 2017 11:53:47 +0200 + +samba (2:4.5.8+dfsg-1) unstable; urgency=high + + * New upstream version + - Drop CVE-2017-2619.patch: merged upstream + - Fix CVE-2017-2619 regression with "follow symlink = no" (Closes: #858564) + + -- Mathieu Parent <sathieu@debian.org> Sat, 01 Apr 2017 20:39:17 +0200 + +samba (2:4.5.6+dfsg-2) unstable; urgency=high + + * This is a security release in order to address the following defects: + - CVE-2017-2619: symlink race permits opening files outside share directory + + -- Mathieu Parent <sathieu@debian.org> Wed, 22 Mar 2017 08:03:34 +0100 + +samba (2:4.5.6+dfsg-1) unstable; urgency=medium + + * New upstream version + * Fix typo in smbd.service and winbind.service (s/nmb.service/nmbd.service) + (Closes: #857232) + + -- Mathieu Parent <sathieu@debian.org> Thu, 09 Mar 2017 15:42:37 +0100 + +samba (2:4.5.5+dfsg-1) unstable; urgency=medium + + * New upstream version + - Revert rewrite of the vfs_fruit module (Closes: #856561) + * Fix 'winbindd privileged socket directory' (Closes: #754339): + - Fix path from /var/run/samba/winbindd_privileged/ to + /var/lib/samba/winbindd_privileged/. + - Move mkdir+chgrp+chmod to postinst (to handle systemd also). + - Thanks to Jim Barber for the report. + * logrotate: Use delaycompress on all logs (Closes: #702201) + - Thanks to Matthew Gabeler-Lee for the proposed fix. + + -- Mathieu Parent <sathieu@debian.org> Sun, 05 Mar 2017 23:21:09 +0100 + +samba (2:4.5.4+dfsg-1) unstable; urgency=medium + + [ Mathieu Parent ] + * New upstream version + - Drop security-2016-12-19.patch, was 4.5.3 + * missing-build-dependency-for-dh_-command dh_python2 => dh-python + + [ Vincent Blut ] + * d/control: Suggest chrony as an alternative to ntp (Closes: #851727) + + [ Daniel A ] + * add gpgme support (Closes: #850908) + + -- Mathieu Parent <sathieu@debian.org> Wed, 25 Jan 2017 21:25:40 +0100 + +samba (2:4.5.2+dfsg-2) unstable; urgency=high + + * This is a security release in order to address the following defects: + - CVE-2016-2123 (Samba NDR Parsing ndr_pull_dnsp_name Heap-based Buffer + Overflow Remote Code Execution Vulnerability). + - CVE-2016-2125 (Unconditional privilege delegation to Kerberos servers in + trusted realms). + - CVE-2016-2126 (Flaws in Kerberos PAC validation can trigger privilege + elevation). + + -- Mathieu Parent <sathieu@debian.org> Sat, 17 Dec 2016 22:54:35 +0100 + +samba (2:4.5.2+dfsg-1) unstable; urgency=medium + + * New upstream version + - Remove CTDB-Fix-samba-eventscript.patch: merged + - d/rules: /usr/share/ctdb-tests is now /usr/share/ctdb/tests + * Update gbp.conf with debian-branch = master + + -- Mathieu Parent <sathieu@debian.org> Thu, 08 Dec 2016 20:21:52 +0100 + +samba (2:4.5.1+dfsg-2) unstable; urgency=medium + + * Upload to unstable + + -- Mathieu Parent <sathieu@debian.org> Mon, 05 Dec 2016 07:01:35 +0100 + +samba (2:4.5.1+dfsg-1) experimental; urgency=medium + + * New upstream version + - Refresh patches + - Remove bug_12283_segfault_tevent_internals.patch + - Remove gencache-Bail-out-of-stabilize-if-we-can-not-get-the.patch + - Adding libdsdb-garbage-collect-tombstones.so.0 to samba-libs.install + * CTDB: Fix samba eventscript + * nmbd requires a working network (Closes: #698056, #842056, #840608, + LP: #1635491) + * Be more verbose about masking samba-ad-dc.service (Closes: #841147) + * Remove Fix_parallel_build.patch, not working + + -- Mathieu Parent <sathieu@debian.org> Tue, 01 Nov 2016 13:54:29 +0100 + +samba (2:4.5.0+dfsg-1) experimental; urgency=medium + + * Upload to experimental + * New upstream version + + Remove patches: + - bug_601406_fix-perl-path-in-example.patch, similar applied + - waf_smbpasswd_location, applied + - Fix-privacy-breach-on-google.com.patch, doc moved out of source + - ctdb-Fix-detection-of-gnukfreebsd.patch, applied + - gcc_6.patch, applied + + Dumped dependencies + - libldb-dev (>= 2:1.1.27~) + - libtalloc-dev (>= 2.1.8~) + - libtdb-dev (>= 1.3.10~) + - libtevent-dev (>= 0.9.29~) + - python-talloc-dev (>= 2.1.8~) + + Install new files and update debian/ctdb.docs + + Update to libwbclient0.symbols + + Update samba-libs.lintian-overrides (libtevent-unix-util0 removed) + + /etc/default/ctdb is now /etc/ctdb/ctdbd.conf + * Add patch for https://bugzilla.samba.org/show_bug.cgi?id=12045 + * ctdb/wscript: Call CHECK_XSLTPROC_MANPAGES() before checking + XSLTPROC_MANPAGES. This should fix parallel builds, including + tests.reproducible-builds.org. Thanks HW42 on IRC + * Depends: lsb-base (>= 3.0-6), for ctdb and winbind as they source + /lib/lsb/init-functions + + -- Mathieu Parent <sathieu@debian.org> Sun, 23 Oct 2016 15:56:59 +0200 + +samba (2:4.4.6+dfsg-2) unstable; urgency=high + + * Remove uses of tevent internals. This fixes segfault. + Closes: #840382, #840298. + + -- Mathieu Parent <sathieu@debian.org> Wed, 12 Oct 2016 05:53:33 +0200 + +samba (2:4.4.6+dfsg-1) unstable; urgency=medium + + * New upstream release. + * Use epoch in samba-vfs-modules Breaks and Replaces (Closes: #833164) + * Only fix PIDFile in {nmbd,samba-ad-dc,smbd,winbind}.service (i.e. not + ctdb.service) Closes: #838000. + * logrotate: Only reload smbd when needed. Thanks Roland Hieber. + Closes: #838796. + + -- Mathieu Parent <sathieu@debian.org> Mon, 10 Oct 2016 22:23:45 +0200 + +samba (2:4.4.5+dfsg-3) unstable; urgency=medium + + [ Jelmer Vernooij ] + * Add strict dependencies on samba-libs, because of use of private + libraries without stable ABI across Samba binary packages. + * Add Breaks clauses for older versions of samba-libs and samba to + samba-vfs-modules, as some files have moved. Closes: #833164, + #832880 + + [ Mathieu Parent ] + * Remove /etc/systemd/system/samba-ad-dc.service (from postinst) on purge. + Closes: #832352 + * Fix PIDFile in systemd service files. Closes: #830909 + * Remove unused lintian overrides + * Use automatic debug packages (-dbgsym) (Closes: #819776) + * Remove Christian Perrier from uploaders (Closes: #836715). Thanks for all + you work, and thanks for bringing me in the team and as a DD. + * Update Turkish translation. Thanks Atila KOÇ. Closes: #791903 + * Drop dependency on samba-libs in libwbclient0 to avoid + circular dependency. + + -- Mathieu Parent <sathieu@debian.org> Fri, 09 Sep 2016 13:00:54 +0200 + +samba (2:4.4.5+dfsg-2) unstable; urgency=medium + + * Disable running of 'make quicktest' during build, as it takes very + long to run on x32 and enables building non-production NTVFS server. + Closes: #830571 + + -- Jelmer Vernooij <jelmer@debian.org> Sat, 09 Jul 2016 19:09:19 +0000 + +samba (2:4.4.5+dfsg-1) unstable; urgency=medium + + * New upstream release. + + Fixes CVE-2016-2119: Client side SMB2/3 required signing can be + downgraded. Closes: #830195 + + -- Jelmer Vernooij <jelmer@debian.org> Thu, 07 Jul 2016 10:51:40 +0000 + +samba (2:4.4.4+dfsg-3) unstable; urgency=medium + + * Add patch gcc_6.patch, fixing compatibility with gcc 6. + Closes: #812264 + + -- Jelmer Vernooij <jelmer@debian.org> Mon, 04 Jul 2016 12:20:56 +0000 + +samba (2:4.4.4+dfsg-2) unstable; urgency=medium + + * Mask samba-ad-dc.service unless needed (Closes: #828137) + * Fix kill path in systemd units (Closes: #828730) + + -- Mathieu Parent <sathieu@debian.org> Mon, 27 Jun 2016 21:37:58 +0200 + +samba (2:4.4.4+dfsg-1) unstable; urgency=medium + + * New upstream release. + * The "Thanks lintian" release + * Fixes: + - Ensure that dpkg-buildflags are passed, and enable all hardening + - systemd + + Enable systemd (sd_notify) on Linux, and install systemd files + + Remove obsolete syslog.target from service files + + Add documentation field to unit files + - Drop fix-cluster-build.diff: no more needed + - Use secure Vcs-* URLs + - Fix copyright file + - samba.postinst: command-with-path-in-maintainer-script update-inetd + - samba-common-bin: package-contains-empty-directory usr/lib/samba/ + - winbind: package-contains-empty-directory usr/lib/samba/nss_info/ + - Add Description to init files + * No-op fixes: + - d/control: Drop XS-Testsuite field + - Drop redundant "Priority: optional" fields + - Drop redundant "Section: net" fields + - Describe non-standard-dir-perm var/spool/samba/ + - Describe no_build_system.patch + - Remove README.build-upstream, as packaging/Debian/ is now empty + - Verify upstream tarball from uscan + - Update README.source and remove build-orig.sh + + -- Mathieu Parent <sathieu@debian.org> Mon, 13 Jun 2016 21:52:52 +0200 + +samba (2:4.4.3+dfsg-4) unstable; urgency=medium + + * Fix build with DEB_BUILD_OPTIONS=nocheck + * Still run "make quicktest" but ignore failures + + -- Mathieu Parent <sathieu@debian.org> Sat, 07 May 2016 13:18:53 +0200 + +samba (2:4.4.3+dfsg-3) unstable; urgency=medium + + * Skip raw.write tests for now as they fail on 32-bit + + -- Mathieu Parent <sathieu@debian.org> Fri, 06 May 2016 15:34:07 +0200 + +samba (2:4.4.3+dfsg-2) unstable; urgency=medium + + * Run quicktest during build + * Reproducibility: + - Drop no_build_options.patch as it breaks "make test" + - Remove unreproducible build environment instead + * Mention that patch waf_smbpasswd_location was submitted + * usershare.patch: Fix "usershare max shares" default in XML doc and in s4 + + -- Mathieu Parent <sathieu@debian.org> Tue, 03 May 2016 12:30:56 +0200 + +samba (2:4.4.3+dfsg-1) unstable; urgency=medium + + * Cleanup ctdb READMEs during 'clean' step. + * New upstream release. + + -- Jelmer Vernooij <jelmer@debian.org> Mon, 02 May 2016 14:12:46 +0000 + +samba (2:4.4.2+dfsg-2) unstable; urgency=medium + + * Merge in 4.3 package changes. + + -- Jelmer Vernooij <jelmer@debian.org> Wed, 27 Apr 2016 01:29:47 +0000 + +samba (2:4.4.2+dfsg-1) unstable; urgency=medium + + * New upstream release. + * Bump standards version to 3.9.8 (no changes). + * Drop build dependency on perl-modules; depend on perl instead. + * Upload to unstable. + + -- Jelmer Vernooij <jelmer@debian.org> Tue, 26 Apr 2016 23:29:54 +0000 + +samba (2:4.4.1+dfsg-1) experimental; urgency=medium + + * New upstream release + + Fixes (Patches by Stefan Metzmacher of SerNet and others on the Samba Team): + - CVE-2015-5370 (Multiple errors in DCE-RPC code) + - CVE-2016-2110 (Man in the middle attacks possible with NTLMSSP) + - CVE-2016-2111 (NETLOGON Spoofing Vulnerability) + - CVE-2016-2112 (LDAP client and server don't enforce integrity) + - CVE-2016-2113 (Missing TLS certificate validation) + - CVE-2016-2114 ("server signing = mandatory" not enforced) + - CVE-2016-2115 (SMB IPC traffic is not integrity protected) + - CVE-2016-2118 (SAMR and LSA man in the middle attacks possible) + * Additional regression fix for 'net ads join' to a Windows 2003 domain by metze + + -- Andrew Bartlett <abartlet+debian@catalyst.net.nz> Mon, 11 Apr 2016 16:09:59 +1200 + +samba (2:4.4.0+dfsg-1) experimental; urgency=medium + [ Andrew Bartlett ] + * New upstream release. + + -- Andrew Bartlett <abartlet+debian@catalyst.net.nz> Wed, 06 Apr 2016 17:08:20 +1200 + +samba (2:4.3.8+dfsg-1) unstable; urgency=low + + [ Jelmer Vernooij ] + * Add patch no_build_system.patch: drop host-specific define that + prevents reproducible builds. + * New upstream release. + + Drop patch + security-2016-04-12-prerequisite-v4-3-regression-fixes.metze01.txt, + now included upstream. + * Bump version in Replaces: samba-libs for samba-vfs-modules to + 4.3.2+dfsg-1, to fix jessie->stretch upgrades. Closes: #821070 + + -- Jelmer Vernooij <jelmer@debian.org> Sat, 16 Apr 2016 01:18:36 +0000 + +samba (2:4.3.7+dfsg-1) unstable; urgency=high + + * New upstream release. + + Fixes (Patches by Stefan Metzmacher of SerNet and others on the Samba Team): + - CVE-2015-5370 (Multiple errors in DCE-RPC code) + - CVE-2016-2110 (Man in the middle attacks possible with NTLMSSP) + - CVE-2016-2111 (NETLOGON Spoofing Vulnerability) + - CVE-2016-2112 (LDAP client and server don't enforce integrity) + - CVE-2016-2113 (Missing TLS certificate validation) + - CVE-2016-2114 ("server signing = mandatory" not enforced) + - CVE-2016-2115 (SMB IPC traffic is not integrity protected) + - CVE-2016-2118 (SAMR and LSA man in the middle attacks possible) + * Additional regression fix for 'net ads join' to a Windows 2003 domain by metze + + -- Andrew Bartlett <abartlet+debian@catalyst.net.nz> Wed, 13 Apr 2016 10:24:17 +1200 + +samba (2:4.3.6+dfsg-2) unstable; urgency=low + [ Mathieu Parent ] + * Fix FTBFS when built with dpkg-buildpackage -A (Closes: #818146). Patch by + Santiago Vila + * Drop samba from winbind depends and use samba-common* instead + (Closes: #732604) + * Add an override to script-not-executable etc/ctdb/events.d/10.external + * Add ufw integration (from Ubuntu) + * Don't build ctdb twice: + - Shorten build time + - Fix ctdb log path from /var/log/log.ctdb to /var/log/ctdb/log.ctdb + - Remove unused /usr/lib/*/ctdb/*.so files + + [ Steven Chamberlain ] + * ctdb: Fix detection of gnukfreebsd (Closes: #802621) + + [ Jelmer Vernooij ] + * Add no_build_options.patch: make package more reproducible by + disabling build options output. + + [ Andrew Bartlett ] + * Allow to build/run the AD DC provision/dbcheck against talloc + 2.1.6 (Closes: #820015) + + -- Mathieu Parent <sathieu@debian.org> Thu, 31 Mar 2016 22:26:11 +0200 + +samba (2:4.3.6+dfsg-1) unstable; urgency=medium + + * New upstream release. + + Fixes: + - CVE-2015-7560: Incorrect ACL get/set allowed on symlink path. + - CVE-2016-0771 (Out-of-bounds read in internal DNS server. + + -- Jelmer Vernooij <jelmer@debian.org> Sat, 27 Feb 2016 23:28:53 +0000 + +samba (2:4.3.5+dfsg-3) unstable; urgency=medium + + * Fix dhclient hook if samba is not installed. Thanks, Jan Braun. + Closes: #801976 + * Rebuild against current version of ldb in the archive. Closes: + #817036 + + -- Jelmer Vernooij <jelmer@debian.org> Tue, 08 Mar 2016 00:24:10 +0000 + +samba (2:4.3.5+dfsg-2) unstable; urgency=medium + + * Move strict ldb dependency to samba-dsdb-modules package, which + actually contains the modules. Closes: #816210 + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 06 Mar 2016 22:51:53 +0000 + +samba (2:4.3.5+dfsg-1) unstable; urgency=medium + + * New upstream release. + * Fixed usershare.patch to apply against new version. + * Loosen dependencies on ldb to ldb >= 1.1.21, per upstream. + * Drop patch sockets-with-htons.patch: applied upstream. + * Bump standards version to 3.9.7 (no changes). + + -- Jelmer Vernooij <jelmer@debian.org> Sat, 05 Mar 2016 15:56:42 +0000 + +samba (2:4.3.3+dfsg-2) unstable; urgency=medium + + [ Jelmer Vernooij ] + * Add dependency on libtevent-dev in samba-dev. + + [ Mathieu Parent ] + * Fix CTDB behavior since CVE-2015-8543 (Closes: #813406) + + -- Mathieu Parent <sathieu@debian.org> Thu, 04 Feb 2016 13:25:01 +0100 + +samba (2:4.3.3+dfsg-1) unstable; urgency=medium + + * New upstream release. Closes: #808133. + + Drop subunit dependency, no longer used. + + Drop ntdb dependencies, no longer used. + + Fixes: + - CVE-2015-5252: Insufficient symlink verification in smbd + - CVE-2015-5296: Samba client requesting encryption vulnerable + downgrade attack + - CVE-2015-5299: Missing access control check in shadow copy code + - CVE-2015-7540: Remote DoS in Samba (AD) LDAP server + - CVE-2015-8467: Denial of service attack against Windows Active Directory + server + - CVE-2015-3223: Denial of service in Samba Active Directory server + - CVE-2015-5330: Remote memory read in Samba LDAP server + * Remove libpam-smbpasswd, which is broken and slated for removal + upstream. Closes: #799840 + * Remove lib/zlib/contrib/dotzlib/DotZLib.chm from excluded files in + copyright; no longer shipped upstream. + * Remove wins2dns.awk example script. + * Remove the samba-doc package, and move examples files from it to + relevant other packages. Closes: #769385 + * Move samba-dsdb-modules back from Depends to Recommends, as using + Samba as a standalone server doesn't require the dsdb modules. + + -- Jelmer Vernooij <jelmer@debian.org> Fri, 18 Dec 2015 01:18:42 +0000 + +samba (2:4.3.0+dfsg-2) experimental; urgency=medium + + * Re-enable cluster support. + + Build samba-cluster-support as built-in library, since its dependencies + are broken. + + -- Jelmer Vernooij <jelmer@debian.org> Mon, 28 Sep 2015 00:34:51 +0000 + +samba (2:4.3.0+dfsg-1) experimental; urgency=medium + + * Fix watch file. + * New upstream release. + * Drop no_wrapper patch: applied upstream. + * Drop patch ctdb_sockpath.patch: applied upstream. + * Drop Fix-CTDB-build-with-PMDA patch: applied upstream. + + -- Jelmer Vernooij <jelmer@debian.org> Sat, 19 Sep 2015 01:59:36 +0000 + +samba (2:4.2.1+dfsg-1) experimental; urgency=medium + + [ Jelmer Vernooij ] + * New upstream release. + + Drop patch do-not-install-smbclient4-and-nmbclient4: applied upstream. + + Drop patch + bug_598313_upstream_7499-nss_wins-dont-clobber-daemons-logs.patch: + present upstream. + + Refresh patch 26_heimdal_compat.26_heimdal_compat. + + Add build-dependency on libarchive-dev. + * Drop samba_bug_11077_torturetest.patch: applied upstream. + * Drop dependency on ctdb - now bundled with Samba. + * Use bundled Heimdal as the system Heimdal doesn't contain the + changes required for Samba. + * Add patch heimdal-rfc3454.txt: patch in truncated rfc3454.txt for + building bundled heimdal. + * Drop patches 25_heimdal_api_changes and 26_heimdal_compat. + * Disable cluster support; it breaks the build. + * Add patch no_wrapper: avoid dependencies on + {nss,uid,socket}_wrapper. + * Move some libraries around. + * Move ownership of var/lib/samba and var/lib/samba/private to samba- + common, remove obsolete samba4.dirs. Closes: #793866 + * Remove ctdb-tests and ctdb-pcp-pmda packages as they contain problems + and unclear what they are useful for, now ctdb now longer provides + an external API. + + [ Mathieu Parent ] + * Merge ctdb source package + - initial merge + - libctdb-dev has been dropped + - ctdb-dbg renamed to ctdb-tests, debug files moved to samba-dbg + - ctdb-tests depends on python + * Fix CTDB socketpath parsing + * Fix CTDB build with PMDA + * ctdb: Fix privacy breach on google.com (from documentation) + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 07 Dec 2014 15:34:36 +0000 + +samba (2:4.1.20+dfsg-1) unstable; urgency=medium + + * New upstream release (last compatible with current OpenChange). + * samba_bug_11077_torturetest.patch: refresh. + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 20 Sep 2015 17:48:59 +0000 + +samba (2:4.1.17+dfsg-5) unstable; urgency=medium + + * Rebuild against new ldb. Closes: #799569 + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 20 Sep 2015 13:20:53 +0000 + +samba (2:4.1.17+dfsg-4) unstable; urgency=medium + + * Add pidl_reproducible.patch: Make pidl output reproducible. + + -- Jelmer Vernooij <jelmer@debian.org> Tue, 28 Apr 2015 00:10:21 +0000 + +samba (2:4.1.17+dfsg-3) unstable; urgency=medium + + * Rebuild against new ldb. Closes: #783424 + + -- Jelmer Vernooij <jelmer@debian.org> Mon, 27 Apr 2015 00:09:50 +0000 + +samba (2:4.1.17+dfsg-2) unstable; urgency=medium + + [ Andreas Beckmann ] + * Add samba.preinst to temporarily deactivate the old qtsmbstatusd + initscript which has dependencies incompatible with the new samba + initscript. This will ensure a clean upgrade path for samba if the + qtsmbstatus-server package was installed previously. (Closes: #779666) + + -- Ivo De Decker <ivodd@debian.org> Sat, 07 Mar 2015 13:09:23 +0100 + +samba (2:4.1.17+dfsg-1) unstable; urgency=high + + * New upstream release. Fixes: + - CVE-2014-8143: Elevation of privilege to Active Directory Domain + Controller. Closes: #776993 + - CVE-2015-0240: Unexpected code execution in smbd. Closes: #779033 + * Refresh patch add-so-version-to-private-libraries. + * Add new smbtorture test rpc.schannel_anon_setpw to detect the conditions + leading to CVE-2015-0240. + * Add breaks on qtsmbstatus-server (<< 2.2.1-3~). Closes: #775041 + * Build-depend on reverted ldb version (with increased epoch). + + -- Ivo De Decker <ivodd@debian.org> Mon, 23 Feb 2015 20:20:21 +0100 + +samba (2:4.1.13+dfsg-4) unstable; urgency=medium + + * Revert previous patch, since ldb has an active module version check. + Instead, just depend on ldb 1.1.18. Closes: #771991 + + -- Jelmer Vernooij <jelmer@debian.org> Wed, 10 Dec 2014 18:13:42 +0000 + +samba (2:4.1.13+dfsg-3) unstable; urgency=medium + + * Update debian/rules to allow support for multiple upstream ldb + versions, when verified. Closes: #771991 + + -- Jelmer Vernooij <jelmer@debian.org> Thu, 04 Dec 2014 21:03:54 +0100 + +samba (2:4.1.13+dfsg-2) unstable; urgency=medium + + * Mask /etc/init.d/samba init script for systemd. This should make systemd + ignore the samba init script. Thanks to Michael Biebl for the suggestion. + Closes: #740942 + * Disable samba init script on upgrade from wheezy to jessie. + Thanks again to Michael Biebl for the report. + Closes: #766690 + + -- Ivo De Decker <ivodd@debian.org> Sat, 25 Oct 2014 00:49:12 +0200 + +samba (2:4.1.13+dfsg-1) unstable; urgency=medium + + * New upstream release. + * Bump standards version to 3.9.6 (no changes). + + -- Ivo De Decker <ivodd@debian.org> Tue, 21 Oct 2014 20:22:19 +0200 + +samba (2:4.1.11+dfsg-2) unstable; urgency=medium + + * Updated Italian translation. Thanks Luca Monducci. Closes: #760743 + * Use HTTP in watch file, as ftp.samba.org is not working reliably for + me. + * Use Excluded-Files in debian/copyright for DFSG-nonfree files. + * Update Dutch translation. Thanks Frans Spiesschaert. Closes: #763650 + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 07 Sep 2014 20:52:27 +0200 + +samba (2:4.1.11+dfsg-1) unstable; urgency=high + + * New upstream release. Fixes: + + CVE-2014-3560: Remote code execution in nmbd. Closes: #756759 + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 03 Aug 2014 03:47:07 +0200 + +samba (2:4.1.9+dfsg-2) unstable; urgency=medium + + [ Jelmer Vernooij ] + * Depend on libgnutls28-dev rather than libgnutls-dev. Closes: #753146 + * Remove outdated-autotools-helper-file overrides for config.guess and + config.sub; files are no longer present upstream. + * Add branch to Vcs-Git header. + * samba.smbd.upstart: Remove leftover code for RUN_MODE=inetd, which + was already removed elsewhere. + * Move dsdb-module library from samba-dsdb-modules to samba-libs, to + prevent circular dependencies between samba-dsdb-modules and samba- + libs. This is necessary since dsdb-module is now used by the dcerpc- + server library. + + [ Debconf translations ] + * New Brazilian Portugese translation from Adriano Rafael Gomes. + Closes: #752719 + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 29 Jun 2014 19:43:52 +0200 + +samba (2:4.1.9+dfsg-1) unstable; urgency=high + + * New upstream security release. Fixes: + - CVE-2014-0244: nmbd denial of service + - CVE-2014-3493: smbd denial of service: server crash/memory corruption + + -- Ivo De Decker <ivo.dedecker@ugent.be> Mon, 23 Jun 2014 18:33:27 +0200 + +samba (2:4.1.8+dfsg-1) unstable; urgency=medium + + [ Jelmer Vernooij ] + * Remove smbd and nmbd from required-start and required-stop in + samba.init. Closes: #739887 + + [ Ivo De Decker ] + * Remove workaround for #745233. + * New upstream release. Fixes: + - CVE-2014-0239: dns: Don't reply to replies. Closes: #749845 + - CVE-2014-0178: Malformed FSCTL_SRV_ENUMERATE_SNAPSHOTS response. + * Use the upstream version of the smb.conf.5 manpage, instead of building + it. This is an ugly temporary workaround because xsltproc crashes on some + architectures when building this manpage (due to #750593). + This fixes the FTBFS, and should make samba installable with the new ldb + version. Closes: #750541, 750796 + + -- Ivo De Decker <ivo.dedecker@ugent.be> Sun, 08 Jun 2014 23:37:53 +0200 + +samba (2:4.1.7+dfsg-2) unstable; urgency=medium + + * Build-depend on heimdal-dev instead of libkrb5-dev. + * Add versioned build-dep on libgmp10 for now, which should be pulled in by + libhogweed2, to be able to build in outdated build environments (like on + most buildds). This is a workaround for #745233. + + -- Ivo De Decker <ivo.dedecker@ugent.be> Sun, 20 Apr 2014 13:44:39 +0200 + +samba (2:4.1.7+dfsg-1) unstable; urgency=medium + + * New upstream release. + * Remove readline63.patch, integrated upstream. + * Add build-dep on libkrb5-dev, no longer pulled in by libcups2-dev. + * Don't try to delete Parse/Yapp/Driver.pm, which is no longer installed. + + -- Ivo De Decker <ivo.dedecker@ugent.be> Sat, 19 Apr 2014 13:39:09 +0200 + +samba (2:4.1.6+dfsg-1) unstable; urgency=high + + * New upstream security release. Fixes: + - CVE-2013-4496: password lockout not enforced for SAMR password changes + - CVE-2013-6442: smbcacls can remove a file or directory ACL by mistake + * Backport fix for readline 6.3 from master + + -- Ivo De Decker <ivo.dedecker@ugent.be> Sat, 15 Mar 2014 12:13:59 +0100 + +samba (2:4.1.5+dfsg-1) unstable; urgency=medium + + [ Jelmer Vernooij ] + * Fix watch file. + + [ Ivo De Decker ] + * New upstream release. + * Remove the part of patch 26_heimdal_compat integrated upstream. + + -- Ivo De Decker <ivo.dedecker@ugent.be> Sat, 22 Feb 2014 23:17:59 +0100 + +samba (2:4.1.4+dfsg-3) unstable; urgency=medium + + * Move samba.dckeytab module to samba package, as it relies on hdb. + Closes: #736405, #736430 + + -- Jelmer Vernooij <jelmer@debian.org> Fri, 24 Jan 2014 23:35:14 +0000 + +samba (2:4.1.4+dfsg-2) unstable; urgency=medium + + [ Jelmer Vernooij ] + * Depend on newer version of ctdb, as Samba won't build against older + versions without --enable-old-ctdb. + * Bump standards version to 3.9.5 (no changes). + * Move libpac, db_glue and hdb module from samba-libs to samba package + to reduce size and dependency set of libs package. + * Fix compatibility with newer versions of the Heimdal HDB API. + + Update 26_heimdal_compat: Fix initialization of HDB plugin. Thanks Jeff + Clark. Closes: #732342 + + Add dependency on specific version of the Heimdal HDB API. + Closes: #732344 + + [ Steve Langasek ] + * dhcp3-client is superseded by dhcp-client; update the references in + the package. Closes: #736070. + * Move the dhcp client hook from /etc/dhcp3 to /etc/dhcp. + Closes: #649100. + * debian/bin/xsltproc: don't use $FAKETIME as the variable name in our + wrapper script, this seems to make faketime unhappy. + + -- Jelmer Vernooij <jelmer@debian.org> Sat, 18 Jan 2014 20:26:35 +0000 + +samba (2:4.1.4+dfsg-1) unstable; urgency=medium + + * New upstream release. + * Update version of talloc build-deps to 2.0.8. + * python-samba: add depends on python-ntdb. + + -- Ivo De Decker <ivo.dedecker@ugent.be> Sat, 18 Jan 2014 14:07:15 +0100 + +samba (2:4.1.3+dfsg-2) unstable; urgency=medium + + * Add debug symbols for all binaries to samba-dbg. Closes: #732493 + * Add lintian overrides for empty prerm scripts. + + -- Ivo De Decker <ivo.dedecker@ugent.be> Fri, 27 Dec 2013 12:39:54 +0100 + +samba (2:4.1.3+dfsg-1) experimental; urgency=low + + [ Jelmer Vernooij ] + * New upstream release. + + Drop 0002-lib-replace-Allow-OS-vendor-to-assert-that-getpass-i.patch: + upstream no longer uses getpass. + * Add source dependency on libntdb1, and stop passing --disable-ntdb, + which has been removed. + * Remove handling for SWAT, which is no longer shipped upstream. + * Split VFS modules out from samba-libs into a separate binary + package. + * Move service and process_model modules from the samba-libs to the + samba package. Prevents dependencies on libkdc2-heimdal and + libhdb9-heimdal. + + [ Ivo De Decker ] + * Add build-dep on python-ntdb. + * Add build-dep on libncurses5-dev. + * Add depends on python-ntdb to samba. + * New upstream release. + + -- Ivo De Decker <ivo.dedecker@ugent.be> Mon, 09 Dec 2013 23:24:27 +0100 + +samba (2:4.0.13+dfsg-2) UNRELEASED; urgency=low + + [ Steve Langasek ] + * Check for alternative's presence before calling update-alternatives + --remove-all, instead of silently ignoring all errors from + update-alternatives. + + [ Debconf translations ] + * Spanish (Javier Fernández-Sanguino). Closes: #731800 + + -- Steve Langasek <vorlon@debian.org> Mon, 09 Dec 2013 11:13:59 -0800 + +samba (2:4.0.13+dfsg-1) unstable; urgency=high + + [ Steve Langasek ] + * Move update-alternatives upgrade removal handling to the postinst, where + it belongs. Closes: #730090. + * Really remove all references to encrypted passwords: the + samba-common.config script still included references, which could cause + upgrade failures in some cases. Closes: #729167. + + [ Ivo De Decker ] + * New upstream security release. Fixes: + - CVE-2013-4408: DCE-RPC fragment length field is incorrectly checked + - CVE-2012-6150: pam_winbind login without require_membership_of + restrictions + * Add empty prerm scripts for samba and samba-common-bin.prerm, to allow + upgrades from earlier versions with broken prerm script (bug introduced in + 2:4.0.10+dfsg-3) + * Don't fail in postinst when removing old alternatives fails. + + [ Jelmer Vernooij ] + * Fix invocations of 'update-alternatives --remove-all'. Closes: #731192 + + -- Ivo De Decker <ivo.dedecker@ugent.be> Mon, 09 Dec 2013 18:34:07 +0100 + +samba (2:4.0.12+dfsg-1) unstable; urgency=low + + [ Ivo De Decker ] + * New upstream release. + + [ Debconf translations ] + * Thai (Theppitak Karoonboonyanan). Closes: #728525 + * Norwegian BokmÃ¥l (Bjørn Steensrud). Closes: #729070 + * German (Holger Wansing). Closes: #729210 + + [ Jelmer Vernooij ] + * Add 26_heimdal_compat: Fix compatibility with newer versions of + Heimdal. + + -- Ivo De Decker <ivo.dedecker@ugent.be> Sun, 24 Nov 2013 07:48:20 +0100 + +samba (2:4.0.11+dfsg-1) unstable; urgency=high + + * New upstream security release. Fixes: + - CVE-2013-4475: ACLs are not checked on opening an alternate data stream + on a file or directory + - CVE-2013-4476: Private key in key.pem world readable + * Move world-readable private key file on upgrade to allow + auto-regeneration. + * Add check in samba-ad-dc init script for wrong permission on private key + file that would prevent samba to start. + * Update samba-libs.lintian-overrides for moved libtorture0. + + -- Ivo De Decker <ivo.dedecker@ugent.be> Mon, 11 Nov 2013 15:42:40 +0100 + +samba (2:4.0.10+dfsg-4) unstable; urgency=low + + [ Christian Perrier ] + * Mark one debconf string as non-translatable + + [ Debconf translations ] + * French updated (Christian Perrier). + * Swedish (Martin Bagge / brother). Closes: #727186 + * Hebrew (Omer Zak). + * Japanese (Kenshi Muto). Closes: #727218 + * Indonesian (Al Qalit). Closes: #727543 + * Russian (Yuri Kozlov). Closes: #727612 + * Esperanto (Felipe Castro). Closes: #727619 + * Polish (MichaÅ‚ KuÅ‚ach). Closes: #727646 + * Danish (Joe Hansen). Closes: #727764 + * Czech (Miroslav Kure). Closes: #728100 + * Basque (Iñaki Larrañaga Murgoitio). Closes: #728315 + + [ Jelmer Vernooij ] + * Move libtorture0 to samba-testsuite to reduce size of samba-libs and + prevent dependency on libsubunit0. + + [ Ivo De Decker ] + * Handle move of tdb files to private dir in samba-libs.preinst. + Closes: #726472 + * Also do the tdb move in libpam-smbpass.preinst, to avoid breaking the pam + module if the upgrade fails. + + -- Ivo De Decker <ivo.dedecker@ugent.be> Sat, 02 Nov 2013 11:27:25 +0100 + +samba (2:4.0.10+dfsg-3) unstable; urgency=low + + [ Ivo De Decker ] + * Remove Sesse from uploaders. Thanks for your work on samba4. + * Include /etc/pam.d/samba in samba-common. It got lost somewhere in the + samba4 merge. Closes: #726183 + * Remove unused alternatives links on upgrade in samba-common-bin.prerm. + * Add support for 'status' in samba-ad-dc init script. + * Fix umask in make_shlibs to avoid lintian error + control-file-has-bad-permissions. + * Enable verbose build log. + * Run xsltproc under faketime to get the same date for manpages on different + architectures in Multi-Arch: same packages. Closes: #726314 + * Restore build-dep on libcups2-dev, which got lost in the samba4 merge. + This should restore the cups printing functionality. Closes: #726726 + * Add wrapper for cups-config to filter out + -L/usr/lib/${DEB_HOST_MULTIARCH}, to work around build-failure. + * Also add other build-deps which were present in samba 2:3.6.19-1. + * if the same tdb file is present in /var/lib/samba and + /var/lib/samba/private, abort the upgrade to work around #726472 for now. + * Document swat removal. Closes: #726751 + + [ Steve Langasek ] + * Don't fail on errors from testparm in the samba init script. + Closes: #726326 + * debian/patches/bug_221618_precise-64bit-prototype.patch: adjust the LFS + handling to work independently of header include order. Closes: #727065. + + -- Ivo De Decker <ivo.dedecker@ugent.be> Tue, 22 Oct 2013 08:10:31 +0200 + +samba (2:4.0.10+dfsg-2) unstable; urgency=low + + * First upload the unified samba 4.x package to unstable. + Thanks to everyone who worked on these packages all these years. + * Remove Noël from uploaders. Thanks for your work on the samba packages + * Add myself to uploaders. + + -- Ivo De Decker <ivo.dedecker@ugent.be> Sat, 12 Oct 2013 11:05:55 +0200 + +samba (2:4.0.10+dfsg-1) experimental; urgency=low + + * Team upload. + + [ Ivo De Decker ] + * Update vcs urls to point to samba instead of samba4. + * New upstream release. + * Limit build-dep on libaio-dev to linux architectures. + * Merge init script changes from 3.6 packages. + + [ Steve Langasek ] + * Don't put useless symlinks to nss modules in the libnss-winbind package. + * Add lintian overrides for another set of wrong lintian errors for the + NSS modules. + + -- Ivo De Decker <ivo.dedecker@ugent.be> Thu, 10 Oct 2013 21:56:08 +0200 + +samba (2:4.0.9+dfsg-1) experimental; urgency=low + + * Team upload. + + [ Steve Langasek ] + * The samba-ad-dc upstart job should be installed unconditionally, not just + in Ubuntu. + * Don't exclude our private libraries from the shlibs generation. + * Port debian/autodeps.py to python3 and build-depend on python3 so we can + invoke it correctly from debian/rules. + + [ Jelmer Vernooij ] + * Bump standards version to 3.9.4 (no changes). + * Suggest libwireshark-dev for libparse-pidl-perl, as it is necessary + to build wireshark dissectors generated by pidl. + * samba-ad-dc: Drop suggests for removed packages swat2 and samba-gtk. + * samba: Remove inetd servers from suggests; inetd support was dropped + in 3.6.16-1. + * Fix database errors during upgrade. Closes: #700768 + * Integrate libraries in samba-libs + + [ Ivo De Decker ] + * New upstream release. + * Merge contents of samba-ad-dc into samba. + * Remove systemd support for now, as it is broken. Closes: #719477 + * Add lintian override for samba-libs: package-name-doesnt-match-sonames. + * Add missing depends for dev packages. + * Generate correct shlibs for both public and private libs. + + [ Jeroen Dekkers ] + * Drop 10_messaging_subsystem patch. + * Add patch to not install smbclient4 and nmblookup4 and remove + samba4-clients binary package. + + -- Ivo De Decker <ivo.dedecker@ugent.be> Sun, 22 Sep 2013 17:19:44 +0200 + +samba (2:4.0.8+dfsg-1) experimental; urgency=low + + [ Christian Perrier ] + * Remove all mention of "Samba 4" and "experimental version of Samba" + in packages' description. Samba version 4 is now production-ready. + + [ Andrew Bartlett ] + * Update build-dependencies on Samba libraries using autodeps.py + * New upstream security release. Closes: #718781 + Fixes CVE-2013-4124: Denial of service - CPU loop and memory allocation + + [ Ivo De Decker ] + * New upstream release + * refresh patches for new upstream version + * remove patches integrated upstream + * Update build-dependencies for new upstream version + * Add replaces for python-samba for packages that take over files from it. + Closes: #719212 + + -- Ivo De Decker <ivo.dedecker@ugent.be> Sun, 11 Aug 2013 23:45:16 +0200 + +samba (2:4.0.6+dfsg-1) experimental; urgency=low + + * Team upload. + + [ Andrew Bartlett ] + * Converted to full AD DC package on the basis of the 3.6 package + - Samba now can be an Active Directory Domain controller + - The samba4-* packages are replaced by this package. + - This package now uses the s3fs file server by default, not the ntvfs + file server used in the samba4 packages. + * Provides a new library based package + - Upstream's new build system uses libraries extensively, so new + packages reflect that. + - This provides the libraries that Openchange and other projects depend on + * Move binary files out of /var/lib/samba to /var/lib/samba/private, + where they belong according to upstream Samba: + - schannel_store.tdb + - idmap2.tdb + - passdb.tdb + - secrets.tdb + * Remove most of the samba4 references, except for binaries ending in 4 + * Removed debconf support for encrypted passwords + * Samba 3.x users upgrading can either upgrade to an AD DC or continue + using Samba without major changes. + + [ Christian Perrier ] + * Move libnss_winbind.so.2 and libnss_wins.so.2 to /lib as in 3.6.* + * Use the same set of configure arguments than 3.6.15 (except those + eventually specific to version 4 and above) + * Add libctdb-dev to build dependencies as we're building with cluster + support just like 3.6 packages + * Re-introduce mksmbpasswd for compatibility with 3.* packages + + [ Ivo De Decker ] + * Specify all paths using configure options, so that we can finally get rid + of the fhs patch. Closes: #705449 + + [ Steve Langasek ] + * Make samba-common Conflicts: swat, which is now obsolete and no longer + built from samba 4.0; the old versions of swat in the archive are + incompatible with smb.conf from samba 4.0, so force them off the system + to avoid configuration corruption. + + -- Ivo De Decker <ivo.dedecker@ugent.be> Thu, 20 Jun 2013 21:51:49 +0200 + +samba4 (4.0.3+dfsg1-0.1) experimental; urgency=low + + [ Andrew Bartlett ] + * Non-maintainer upload. + * New upstream relese: 4.0.3 + + Fixes CVE-2013-0172 Samba 4.0.0 as an AD DC may provide authenticated users + with write access to LDAP directory objects + + Fixes many other ACL related issues in the AD DC + + Drop 08_waf_python_config as it is now upstream. + * Fix the forced use of NTVFS by setting the required options in the smb.conf + at configure time. + * Add depenencies to ensure python-samba requires exactly this binary version + of our core libraries. Closes: #700348 + + -- Andrew Bartlett <abartlet@samba.org> Sat, 16 Feb 2013 17:06:34 +0100 + +samba4 (4.0.0+dfsg1-1) experimental; urgency=low + + [ Martin Pitt ] + * debian/tests/control: Fix dependency: python-samba4 does not exist, it's + python-samba. Closes: #695854 + + [ Jelmer Vernooij ] + * New upstream release: 4.0.0! + + Add 08_waf_python_config to cope with python-config no longer + being a script. + * Add 25_heimdal_api_changes, to update Samba to work with the + current Heimdal in Sid. Patch from + Samuel Cabrero Alamán <scabrero@zentyal.com>. Closes: #686227 + * Add 11_force_ntvfs: Force the use of NTVFS, until the version of smbd in + the archive is new enough. Closes: #694697 + * Drop dependency on libsmbclient; instead, build private copy. + + -- Jelmer Vernooij <jelmer@debian.org> Thu, 13 Dec 2012 16:27:20 +0100 + +samba4 (4.0.0~rc6+dfsg1-1) experimental; urgency=low + + * New upstream release. + + Drop 08_heimdal_config_h and 11_system_heimdal, now applied upstream. + + -- Jelmer Vernooij <jelmer@debian.org> Tue, 04 Dec 2012 14:39:40 +0100 + +samba4 (4.0.0~rc5+dfsg1-1) experimental; urgency=low + + * New upstream release. + * Add autopkgtest header. Closes: #692671 + * Use Multi-Arch for winbind4. + + -- Jelmer Vernooij <jelmer@debian.org> Thu, 08 Nov 2012 15:13:43 +0100 + +samba4 (4.0.0~rc4+dfsg1-1) experimental; urgency=low + + * New upstream release. + + Bump minimum ldb version to 1.1.13. + * Switch to Git as VCS. + * Remove DM-Upload-Allowed field. + * Depend on heimdal-multidev rather than heimdal-dev. + + Add 11_system_heimdal to support building with system heimdal. + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 28 Oct 2012 16:21:43 +0100 + +samba4 (4.0.0~rc3+dfsg1-1) experimental; urgency=low + + * New upstream release. + + -- Jelmer Vernooij <jelmer@debian.org> Tue, 16 Oct 2012 14:53:19 +0200 + +samba4 (4.0.0~rc2+dfsg1-2) experimental; urgency=low + + * Depend on at least ldb 1.1.12. Closes: #689594 + * Suggest ntp daemon for ntpsignd integration. + * Support specifying 'none' as server role to disable provision. + Closes: #690138 + * Prompt user for administrator password. Closes: #690139 + * Bump debconf level of server role to 'high'. + + -- Jelmer Vernooij <jelmer@debian.org> Thu, 04 Oct 2012 13:22:40 +0200 + +samba4 (4.0.0~rc2+dfsg1-1) experimental; urgency=low + + * New upstream release. + + -- Jelmer Vernooij <jelmer@debian.org> Tue, 25 Sep 2012 03:34:08 +0200 + +samba4 (4.0.0~beta2+dfsg1-3) unstable; urgency=low + + * Fix setup when no domain is set. Closes: #681048 + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 05 Aug 2012 16:52:02 +0200 + +samba4 (4.0.0~beta2+dfsg1-2) unstable; urgency=low + + * Use ntvfs while debian ships an old version of Samba 3. Closes: #679678 + * Don't attempt to add shares to the configuration if it doesn't + exist. Closes: #681050 + + -- Jelmer Vernooij <jelmer@debian.org> Tue, 10 Jul 2012 11:52:44 +0200 + +samba4 (4.0.0~beta2+dfsg1-1) unstable; urgency=low + + * New upstream release. + * Update Slovak translation. Thanks Ivan Masár. Closes: #677906 + * Add build dependency on libacl1-dev. + + -- Jelmer Vernooij <jelmer@debian.org> Mon, 18 Jun 2012 00:49:12 +0200 + +samba4 (4.0.0~beta1+dfsg1-3) unstable; urgency=high + + * Prevent adding share with invalid name when used in domain controller mode. + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 17 Jun 2012 17:00:00 +0200 + +samba4 (4.0.0~beta1+dfsg1-2) unstable; urgency=low + + * Create leading directories in addshare script. Closes: #677643 + * Use attr/attributes.h on GNU/kFreeBSD. Fixes finding of ATTR_ROOT. + + -- Jelmer Vernooij <jelmer@debian.org> Sat, 16 Jun 2012 01:42:10 +0200 + +samba4 (4.0.0~beta1+dfsg1-1) unstable; urgency=medium + + * New upstream release. + * Add 08_heimdal_config_h: Fixes compatibility with newer versions of + Heimdal. Closes: #674918 + * Use standard spelling of domain controller in debconf templates. + Closes: #670413 + * Switch to debhelper 9. + * samba4-clients: Drop conflicts with smbclient; upstream has renamed + the Samba4-specific smbclient and nmblookup binaries. + + -- Jelmer Vernooij <jelmer@debian.org> Wed, 30 May 2012 18:42:06 +0200 + +samba4 (4.0.0~alpha20+dfsg1-1) unstable; urgency=medium + + * New upstream release. + + No longer installs libkdc-policy.so. LP: #887537 + + -- Jelmer Vernooij <jelmer@debian.org> Tue, 01 May 2012 15:02:19 +0200 + +samba4 (4.0.0~alpha19+dfsg1-7) unstable; urgency=low + + * Only update smb.conf if it exists. Closes: #670560 + * Automatically add shares required for active directory controllers if they + don't exist. Closes: #670558 + + -- Jelmer Vernooij <jelmer@debian.org> Thu, 26 Apr 2012 19:59:26 +0200 + +samba4 (4.0.0~alpha19+dfsg1-6) unstable; urgency=low + + * Rebuild against ldb 1.1.6. + + -- Jelmer Vernooij <jelmer@debian.org> Fri, 20 Apr 2012 12:47:15 +0200 + +samba4 (4.0.0~alpha19+dfsg1-5) unstable; urgency=low + + * Use dbcheck when upgrading from recent versions of Samba4, as it's + both more reliable and quicker than upgradeprovision. + * Move samba-dsdb-modules from Recommends to Depends, as LDAP server + support has been dropped. Closes: #669331 + + -- Jelmer Vernooij <jelmer@debian.org> Thu, 19 Apr 2012 17:33:33 +0200 + +samba4 (4.0.0~alpha19+dfsg1-4) unstable; urgency=low + + * Fix pattern matching line in setoption.py. Thanks Hleb Valoshka. + Closes: #669015 + * setoption.py: Preserve mode on smb.conf file. + + -- Jelmer Vernooij <jelmer@debian.org> Mon, 16 Apr 2012 17:33:07 +0200 + +samba4 (4.0.0~alpha19+dfsg1-3) unstable; urgency=low + + * Convert setoption.pl to Python to avoid dependency on perl-modules. + Closes: #668800 + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 15 Apr 2012 15:50:57 +0200 + +samba4 (4.0.0~alpha19+dfsg1-2) unstable; urgency=low + + * Correctly import server role and realm from existing smb.conf file. + LP: #936891 LP: #832465 Closes: #659775 + * Force correct realm during upgradeprovision. LP: #728864 + + -- Jelmer Vernooij <jelmer@debian.org> Fri, 13 Apr 2012 16:47:37 +0200 + +samba4 (4.0.0~alpha19+dfsg1-1) unstable; urgency=low + + * New upstream release. + + Drop patches applied upstream: 06_upgradedns, 08_smb2_deps. + + Cope with missing sysvol folders during provision upgrade. LP: #930370 + + Depend on tdb 1.2.10. + + Depend on ldb 1.1.5. + + Fixes CVE-2012-1182: PIDL based autogenerated code allows overwriting + beyond of allocated array. + * Fix replaces: samba-common field in samba4-common-bin. + * Update Catalan debconf translation. Thanks, Jordi Mallach. + Closes: #663737 + + -- Jelmer Vernooij <jelmer@debian.org> Wed, 11 Apr 2012 16:58:39 +0200 + +samba4 (4.0.0~alpha18.dfsg1-4) unstable; urgency=low + + * Add patch 08_smb2_deps: Remove (unnecessary) dependencies on various + private Samba 3 libraries, for which proper package Depends: lines were + missing. Closes: #665295 + * Add dependency on tdb-tools. This will be removed once upstream + removes the use of tdbbackup in provision. Closes: #664658 + + -- Jelmer Vernooij <jelmer@debian.org> Wed, 28 Mar 2012 16:20:21 +0200 + +samba4 (4.0.0~alpha18.dfsg1-3) unstable; urgency=low + + * Fix compatibility with newer versions of Heimdal. Fixes FTBFS. + Closes: #664820 + + -- Jelmer Vernooij <jelmer@debian.org> Wed, 21 Mar 2012 14:11:29 +0100 + +samba4 (4.0.0~alpha18.dfsg1-2) unstable; urgency=low + + * Add Replaces: python-samba to libsmbclient-raw0 as some + private libraries have moved. Thanks Axel Beckert. Closes: #663641 + + -- Jelmer Vernooij <jelmer@debian.org> Tue, 13 Mar 2012 16:39:12 +0100 + +samba4 (4.0.0~alpha18.dfsg1-1) unstable; urgency=low + + [ Jelmer Vernooij ] + * New upstream release. + + Depend on newer versions of ldb. + + Depend on tevent >= 0.9.15. + + Sanitizes NetBIOS names. LP: #938592 + + Re-adds support for 'security = domain' parsing. LP: #916556 + * Fix typo in recommendations of samba4: samba4-dsdb-modules -> + samba-dsdb-modules. + * Recommend attr package for Samba4. + * Create util.h -> samba_util.h symlink for backwards compatibility. + * Add dependency on libbsd-dev, used for strlcat and strlcpy. + * Extracts waf source code. Closes: #654500 + + [ Debconf translations ] + * Russian (Yuri Kozlov). Closes: #651583 + * Portuguese (Miguel Figueiredo). Closes: #653557 + * German (Holger Wansing). Closes: #653714 + * Norwegian BokmÃ¥l (Bjørn Steensrud). Closes: #654284 + * Spanish (Javier Fernández-Sanguino). Closes: #656403 + * Danish (Joe Hansen). Closes: #656785 + * Dutch (Jeroen Schot). Closes: #657469 + * Hebrew (Omer Zak). + * Polish (MichaÅ‚ KuÅ‚ach). Closes: #659570 + * Czech (Miroslav Kure). Closes: #659573 + * Turkish (Ä°smail BAYDAN). Closes: #659575 + * Japanese (Kenshi Muto). Closes: #659978 + * Esperanto (Felipe Castro) + + [ Jelmer Vernooij ] + * Rename upgradedns to less generic samba_upgradedns. + * Bump standards version to 3.9.3 (no changes). + * Use DEP-5 for copyright file. + * Indonesian (Mahyuddin Susanto). Closes: #660031 + * Italian (Luca Monducci). Closes: #660150 + * Use samba-tool to retrieve configuration options from debconf. + LP: #936891, Closes: #659775 + * Add really basic autopkgtest test. + * Fix bundled libraries for samba.samba3 python module. LP: #889869 + + -- Jelmer Vernooij <jelmer@debian.org> Mon, 12 Mar 2012 19:01:00 +0100 + +samba4 (4.0.0~alpha17.dfsg2-1) unstable; urgency=low + + * Remove more non-free IETF files. Closes: #547280 + * Rebuild for newer version of ldb. + + -- Jelmer Vernooij <jelmer@debian.org> Sat, 03 Dec 2011 01:41:49 +0100 + +samba4 (4.0.0~alpha17.dfsg1-3) unstable; urgency=low + + * Install libmemcache.so, libutil_str.so and various other private libraries + required by the samba3 module in python-samba. LP: #889864, LP: #889869 + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 13 Nov 2011 17:03:29 +0100 + +samba4 (4.0.0~alpha17.dfsg1-2) unstable; urgency=low + + * Include upstart file to eliminate delta with Ubuntu. + + -- Jelmer Vernooij <jelmer@debian.org> Fri, 11 Nov 2011 16:13:58 +0100 + +samba4 (4.0.0~alpha17.dfsg1-1) unstable; urgency=low + + * Strip non-free IETF RFC files. Closes: #547280 + * Rebuild against newer ldb. Closes: #648326 + * Updated Swedish debconf translation. Thanks Martin Bagge. + Closes: #644942 + * Updated French debconf translation. Thanks Christian Perrier. + Closes: #644465 + + -- Jelmer Vernooij <jelmer@debian.org> Fri, 11 Nov 2011 03:16:37 +0100 + +samba4 (4.0.0~alpha17-3) unstable; urgency=low + + * Upload to unstable. Closes: #642905 + * Use default python version rather than 2.7. + + -- Jelmer Vernooij <jelmer@debian.org> Tue, 27 Sep 2011 00:11:31 +0200 + +samba4 (4.0.0~alpha17-2) experimental; urgency=low + + * In -dev package dependencies, depend on a specific version of other + Samba dev packages. + + -- Jelmer Vernooij <jelmer@debian.org> Sat, 24 Sep 2011 23:10:30 +0200 + +samba4 (4.0.0~alpha17-1) experimental; urgency=low + + * New upstream release. + * Add libsmbclient-{raw0,dev} packages, required for winexe. + * Add libsamba-credentials0 and libsamba-credentials-dev packages for + new public library for credentials management. + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 18 Sep 2011 15:14:42 +0200 + +samba4 (4.0.0~alpha17~git20110807.dfsg1-1) experimental; urgency=low + + * New upstream snapshot. + * Depend on newer version of ldb. Closes: #636961 + * Update Indonesian Debconf translation. Thanks Mahyuddin Susanto. + Closes: #608552 + * Preserve server role set in smb.conf. LP: #815586 + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 07 Aug 2011 23:37:37 +0200 + +samba4 (4.0.0~alpha17~git20110801.dfsg1-1) experimental; urgency=low + + * Improve outdated package descriptions. Closes: #486370 + * New upstream release. + * Bump standards version to 3.9.2 (no changes). + * Add new libsamdb-dev package, required by openchange which relies on the + samdb.pc file. + + No header files are shipped yet, but an upstream fix is pending. + * Recommend bind9utils in samba4 package. + * Remove complex dependency loop between library packages. Closes: #598842 + + Disable currently unfinished ldb share module. + + Split dcerpc server libraries out into libdcerpc-server{0,-dev} to + cut dependency loop. + + New samba-dsdb-modules package with all DSDB related LDB modules. + * Move libwinbind-client library to libgensec0. Closes: #623327 + * Add support for multi-arch. + * Switch to new style debhelper. + * Fix symbolic link for ldb modules. Closes: #632974 + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 31 Jul 2011 20:16:03 +0200 + +samba4 (4.0.0~alpha15.dfsg1-1) experimental; urgency=low + + * New upstream snapshot. + + -- Jelmer Vernooij <jelmer@debian.org> Fri, 22 Apr 2011 02:57:04 +0200 + +samba4 (4.0.0~alpha15~git20110410.dfsg1-1) experimental; urgency=low + + * New upstream snapshot. + + Drop patch now applied upstream: 02_backupkey_private.diff + * Switch to dh_python2. Closes: #617059 + + -- Jelmer Vernooij <jelmer@debian.org> Sat, 05 Mar 2011 14:44:25 +0100 + +samba4 (4.0.0~alpha15~git20110224.dfsg1-2) experimental; urgency=low + + * Depend on newer version of Heimdal which exposes more hx509 symbols. + Fixes FTBFS. + * Tighten libldb1 dependency for LDB modules. + * Depend on newer version of pyldb. Closes: #615631 + + -- Jelmer Vernooij <jelmer@debian.org> Mon, 28 Feb 2011 03:52:35 +0100 + +samba4 (4.0.0~alpha15~git20110224.dfsg1-1) experimental; urgency=low + + * New upstream release. + + Avoids unnecessary setlocale call to "C". LP: #519025, #519025 + * Fix dependency on newer version of ldb. Closes: #614466 + * Add missing dependency on python-samba, required for testparm. LP: #641082 + * Use libwbclient. LP: #714344, Closes: #611214 + * Make sure /var/run/samba exists. LP: #646037 + + -- Jelmer Vernooij <jelmer@debian.org> Wed, 23 Feb 2011 00:35:59 +0100 + +samba4 (4.0.0~alpha15~git20110124.dfsg1-2) experimental; urgency=low + + * Build-depend on newer version of heimdal-multidev with fixed kdc.h. + * Build-depend on versioned libkdc2-heimdal which includes kdc_log. Closes: #611112 + + -- Jelmer Vernooij <jelmer@debian.org> Tue, 25 Jan 2011 09:22:16 -0800 + +samba4 (4.0.0~alpha15~git20110124.dfsg1-1) experimental; urgency=low + + * New upstream snapshot. + + Removes unresolved symbols from libraries. + Closes: #596690, #599075, #602855. LP: #658116, #592882, #646042 + * Add dependency on comerr-dev. + * Update Spanish Debconf translation. Thanks Ricardo Fraile. Closes: #596075 + * Update Danish debconf translation. Thanks Joe Dalton. Closes: + #598779 + * Re-remove non-free IETF RFCs, add test to prevent future regression. + Closes: #547280 + * Depend on libreadline-dev rather than libreadline5-dev. Closes: #553846 + * Upgrade provision data between releases. Closes: #600117 + + -- Jelmer Vernooij <jelmer@debian.org> Fri, 15 Oct 2010 01:32:48 +0200 + +samba4 (4.0.0~alpha14~bzr13684.dfsg1-1) unstable; urgency=low + + * New upstream snapshot. + + Depend on libsubunit-dev. + * Support talloc 2.0.1. + * Update dependency for ldb to be >= 0.9.14. Closes: #596745 + * Support parallel builds. + + -- Jelmer Vernooij <jelmer@debian.org> Tue, 28 Sep 2010 09:46:54 +0200 + +samba4 (4.0.0~alpha13+git+bzr12785.dfsg1-1) experimental; urgency=low + + * Install provision scripts to /usr/share/samba/setup. + * Move nsstest from samba4 to winbind4. + * Support building against tdb 1.2.1. + + -- Jelmer Vernooij <jelmer@debian.org> Fri, 10 Sep 2010 17:45:20 +0200 + +samba4 (4.0.0~alpha13+git+bzr12687.dfsg1-1) experimental; urgency=low + + * New upstream snapshot. + * Mark as compatible with older versions of tdb (>= 1.2.2). + + -- Jelmer Vernooij <jelmer@debian.org> Wed, 08 Sep 2010 03:30:03 +0200 + +samba4 (4.0.0~alpha13+git+bzr12670.dfsg1-1) experimental; urgency=low + + * Add missing dependency on pkg-config. + * Require subunit >= 0.0.6, older versions have a broken tap2subunit. + * Debconf translations: + - Swedish (Martin Bagge). Closes: #586819 + * New upstream snapshot. + - Fixes symbols for LDB modules. Closes: #594763, #594771, #594773. + * Require tdb 1.2.3. Closes: #595644 + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 05 Sep 2010 17:34:46 +0200 + +samba4 (4.0.0~alpha13+git+bzr12292.dfsg1-1) experimental; urgency=low + + * New upstream snapshot. + + Fixes provision to be able to find the data path again. + * Depend on libreadline-dev rather than libreadline5-dev. Closes: #553846 + * Suggest swat2. + * Migrate to Bazaar. + * Bump standards version to 3.9.1 (no changes). + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 22 Aug 2010 02:38:51 +0200 + +samba4 (4.0.0~alpha13+git20100618.dfsg1-1) experimental; urgency=low + + [ Jelmer Vernooij ] + * New upstream snapshot. Closes: #578009, #577880 + + Add dependency on python-dnspython. + + Removes last Python string exception. Closes: #585327 + + Installs all display specifiers. Closes: #548911 + + [ Christian Perrier ] + * Debconf translations: + - Swedish (Martin Bagge). Closes: #552734 + - Russian (Yuri Kozlov). Closes: #563346 + - Spanish (Omar Campagne). Closes: #579099 + + -- Jelmer Vernooij <jelmer@debian.org> Sun, 28 Feb 2010 02:33:37 +0100 + +samba4 (4.0.0~alpha8+git20100227.dfsg1-1) experimental; urgency=low + + * Fix sections of libndr-standard0 and libndr0. + * New upstream snapshot. + + -- Jelmer Vernooij <jelmer@debian.org> Mon, 22 Feb 2010 11:19:07 +0100 + +samba4 (4.0.0~alpha8+git20100222.dfsg1-1) experimental; urgency=low + + [ Christian Perrier ] + * Change "Provides:" in init script to avoid conflicting Provides + with samba. Closes: #547209 + * Swedish debconf translation (Martin Bagge). Closes: #552734 + + [ Jelmer Vernooij ] + * Depend on specific version of libldb. Closes: #562389 + * Build against system Heimdal and remove the copy of Heimdal from the + Samba 4 source tree, since it contains non-free IETF RFC/I-D. + Closes: #547280 + * Bump standards version to 3.8.4. + * Switch to dpkg-source 3.0 (quilt) format + + -- Jelmer Vernooij <jelmer@debian.org> Wed, 03 Feb 2010 15:17:20 +0100 + +samba4 (4.0.0~alpha8+git20090912-1) unstable; urgency=low + + * Upload to unstable. + * Fix nmblookup.1.gz filename for alternatives. + * New upstream snapshot. + + Add new binary packages libndr-standard0 and libndr-standard-dev. + * Bump standards version to 3.8.3. + * Remove unused patch system. + + -- Jelmer Vernooij <jelmer@debian.org> Sat, 12 Sep 2009 13:28:33 +0200 + +samba4 (4.0.0~alpha8+git20090718-1) experimental; urgency=low + + * New upstream snapshot. + * The server package now suggests a version of bind9 that supports + update-policy. + + -- Jelmer Vernooij <jelmer@debian.org> Sat, 18 Jul 2009 17:34:30 +0200 + +samba4 (4.0.0~alpha8~git20090620-1) experimental; urgency=low + + * Support building against Python2.6. + * Add missing dependency on tdb >= 1.1.3. (Closes: #517171) + * Add missing dependencies on tdb-dev and libtalloc-dev to + libldb-samba4-dev. (Closes: #525885) + * Use newer version of tevent. (Closes: #531480, #533457, #533455) + * New upstream snapshot. + * Bump standards version to 3.8.2. + * Reorganization to let Samba 3 and Samba 4 co-exist on the same system: + + Depend on samba-common for smb.conf, /etc/samba/gdbcommands, + /usr/share/samba/{panic-action,*.dat}. + + Rename samba4-common to samba4-common-bin. + * samba4-testsuite now recommends subunit, since it can output subunit + streams. + * Document license for Active Directory schemas. + * Fix init script to run samba rather than smbd. (Closes: #522646) + * Removed libldb-samba4-{dev,0}, now using libldb{-dev,0} since there + are no longer any differences. + + -- Jelmer Vernooij <jelmer@debian.org> Thu, 18 Jun 2009 00:19:44 +0200 + +samba4 (4.0.0~alpha7~20090225-1) experimental; urgency=low + + * Build-depend on pkg-config, as we no longer seem to pull that in + through any other dependencies. (Closes: #516882) + + -- Jelmer Vernooij <jelmer@debian.org> Wed, 25 Feb 2009 04:04:36 +0100 + +samba4 (4.0.0~alpha7~20090223-1) experimental; urgency=low + + * Add build dependency on libpopt-dev, so the system libpopt is always used + rather than the one included by Samba. + * Use the alternatives system for the smbstatus, nmblookup, net and testparm + binaries as well as various data files. + * Make the samba4 and samba4-testsuite packages conflict with + samba-tools. (Closes: #506236) + * Build against external libtevent. + + -- Jelmer Vernooij <jelmer@debian.org> Sat, 21 Feb 2009 17:46:41 +0100 + +samba4 (4.0.0~alpha6-1) experimental; urgency=low + + * New upstream release. + + -- Jelmer Vernooij <jelmer@debian.org> Tue, 20 Jan 2009 02:59:15 +0100 + +samba4 (4.0.0~alpha5+20090105-1) experimental; urgency=low + + * New upstream snapshot. + + -- Jelmer Vernooij <jelmer@debian.org> Mon, 05 Jan 2009 21:08:53 +0100 + +samba4 (4.0.0~alpha5+20081126-1) experimental; urgency=low + + * New upstream snapshot. + + -- Jelmer Vernooij <jelmer@samba.org> Wed, 26 Nov 2008 03:48:41 +0100 + +samba4 (4.0.0~alpha5+20081101-1) experimental; urgency=low + + * New upstream snapshot. + + -- Jelmer Vernooij <jelmer@samba.org> Sat, 01 Nov 2008 14:40:09 +0100 + +samba4 (4.0.0~alpha5+20081031-1) experimental; urgency=low + + * New upstream snapshot. + + -- Jelmer Vernooij <jelmer@samba.org> Fri, 31 Oct 2008 00:10:41 +0100 + +samba4 (4.0.0~alpha5+20081014-1) experimental; urgency=low + + * Fix typo in description. (Closes: 500811) + * New upstream snapshot. + + -- Jelmer Vernooij <jelmer@samba.org> Thu, 09 Oct 2008 18:41:59 +0200 + +samba4 (4.0.0~alpha5+20080930-1) experimental; urgency=low + + * New upstream snapshot. + + -- Jelmer Vernooij <jelmer@samba.org> Tue, 30 Sep 2008 16:19:22 +0200 + +samba4 (4.0.0~alpha5+20080825-1) experimental; urgency=low + + * Add watch file. + * Use policy-compliant sysconfdir and localstatedir. (Closes: #495944) + + -- Jelmer Vernooij <jelmer@samba.org> Mon, 25 Aug 2008 17:42:44 +0200 + +samba4 (4.0.0~alpha4~20080727-1) experimental; urgency=low + + [ Steve Langasek ] + * Add missing dependency on libparse-yapp-perl to libparse-pidl-perl. + + [ Jelmer Vernooij ] + * Make samba4-common conflict with samba-common. (Closes: #492088) + * New Slovak translation. (Closes: #487889) + * New Thai translation from Theppitak Karoonboonyanan. (Closes: #486614) + * New Vietnamese translation from Clytie Siddall. (Closes: #486618) + * New Bulgarian translation from Damyan Ivanov. (Closes: #486626) + * New Japanese translation from Kenshi Muto. (Closes: #486648) + * New Galician translation from Jacobo Tarrio. (Closes: #486701) + * New Turkish translation from Mehmet TURKER. (Closes: #487244) + * New Czech translation from Miroslav Kure. (Closes: #487265) + * New Arabic translation from Ossama Khayat. (Closes: #487322) + * New German translation from Holger Wansing. (Closes: #487542) + * New Italian translation from Luca Monducci. (Closes: #487720) + * New Portugese translation from the Portuguese Translation Team. + (Closes: #487753) + * New Korean translation from Sunjae Park. (Closes: #487894) + * New Lithuanian translation from Gintautas Miliauskas. (Closes: #487895) + * New Romanian translation from Eddy PetriÈ™or. (Closes: #488874) + + -- Jelmer Vernooij <jelmer@samba.org> Sun, 27 Jul 2008 15:38:41 +0200 + +samba4 (4.0.0~alpha4~20080617-1) experimental; urgency=low + + * Fixed maintainer email address. + * New upstream snapshot. + * Remove dependency on unpackaged libevents in ldb pkg-config file. + + -- Jelmer Vernooij <jelmer@samba.org> Mon, 16 Jun 2008 21:29:43 +0200 + +samba4 (4.0.0~alpha4~20080616-1) experimental; urgency=low + + * Fix dependency of libsamba-hostconfig-dev on libsamba-hostconfig0. + * Fix dependency of libldb-samba4-dev on libldb-samba4-0. + * Remove tdb binaries as they're already packaged elsewhere. + (Closes: #485619, #486270) + * New upstream snapshot. + * New French translation from Christian Perrier. (Closes: #486072) + + -- Jelmer Vernooij <jelmer@samba.org> Sat, 14 Jun 2008 20:39:13 +0200 + +samba4 (4.0.0~alpha4~20080522-1) experimental; urgency=low + + * New upstream snapshot. (Closes: #478328) + + -- Jelmer Vernooij <jelmer@samba.org> Thu, 22 May 2008 02:25:05 +0200 + +samba4 (4.0.0~alpha4~20080403-1) experimental; urgency=low + + * Rename source package to samba4. + + -- Jelmer Vernooij <jelmer@samba.org> Mon, 28 Jan 2008 17:23:58 +0100 + +samba (4.0.0~alpha3~20080120-1) experimental; urgency=low + + * New upstream snapshot. + + -- Jelmer Vernooij <jelmer@samba.org> Sat, 19 Jan 2008 22:34:08 +0100 + +samba (4.0.0~alpha2~svn26294-1) experimental; urgency=low + + * New upstream snapshot. + * Set Vcs-Svn field. + + -- Jelmer Vernooij <jelmer@samba.org> Sat, 19 Jan 2008 22:32:28 +0100 + +samba (4.0.0~~tp5-1) experimental; urgency=low + + * New upstream release. + * Set homepage field. + + -- Jelmer Vernooij <jelmer@samba.org> Sun, 25 Nov 2007 16:28:02 +0000 + +samba (4.0.0~~svn22819-1) experimental; urgency=low + + * New upstream snapshot. + + -- Jelmer Vernooij <jelmer@samba.org> Wed, 09 May 2007 15:28:50 +0200 + +samba (4.0.0~~svn19515-1) experimental; urgency=low + + * New upstream versions (svn snapshots of r19515). + + -- Jelmer Vernooij <jelmer@samba.org> Mon, 30 Oct 2006 16:45:36 +0100 + +samba (3.9.1+4.0.0tp2-1) experimental; urgency=low + + * New upstream version (tech preview 2). + + [ Jelmer Vernooij ] + * Remove setntacl utility (it doesn't do anything). + * Include oLschema2ldif.1 in the ldb-tools package. + * Enable shared library building. + * Put ldb, tdb, gtksamba, talloc and gensec libraries into seperate binary packages. + * Pass fewer options for paths to configure + * Adapt to new paths from upstream + + -- Jelmer Vernooij <jelmer@samba.org> Thu, 23 Mar 2006 01:13:32 +0100 + +samba (3.9.1+4.0.0tp1-1) experimental; urgency=low + + * New upstream version (tech preview 1). + + [ Steinar H. Gunderson ] + * Forward-port panic-action script from the Samba 3 packaging. + * Patch the smb.conf provisioning template (only used by swat in the + Debian packaging) to use the panic-action script by default. + * Patch the samba-common postinst to generate smb.conf files with the + same setting. + * Include ntlm_auth.1 and smbd.8 man pages in the samba package. + * Make the samba dependency on samba-common versioned. + * Install /usr/bin/setntacl manually; the upstream install target doesn't + seem to do it anymore. + * Ask for the realm (and give it to the upgrade script) when upgrading from + Samba 3; it can't be easily autodetected. (Note that upgrade still seems + to be broken for now.) + + [ Jelmer Vernooij ] + * Remove gwsam utility. + * Include gwcrontab.1 and gepdump.1 man pages in the samba-gtk-frontends + package. + * Remove ldbtest utility from ldb-tools package. + + -- Steinar H. Gunderson <sesse@debian.org> Tue, 24 Jan 2006 16:01:59 +0100 + +samba4 (3.9.0-SVN-build-6710-1) unstable; urgency=low + + * Newer upstream version + + -- Jelmer Vernooij <jelmer@samba.org> Thu, 12 May 2005 14:04:05 +0200 + +samba4 (3.9.0-SVN-build-655-1) unstable; urgency=low + + * Initial release. + + -- Jelmer Vernooij <jelmer@samba.org> Thu, 13 May 2004 01:38:41 +0200 + +samba (3.9.0+SVN12946-1) experimental; urgency=low + + * New upstream version. + * Fix upgrades from Samba 3 giving too few parameters to provision(). + (Closes: #348079) + * Add sections to binary packages to match the archive: + * libparse-pidl-perl: perl + * samba-dev: devel + * samba-gtk-frontends: x11 + * Adjust our export procedure we get the Subversion revision number in + include/version.h (and thus in the build itself), and document how in + README.building. + * Remove "reload" option from the init script, since Samba 4 doesn't + understand SIGHUP yet. + + -- Steinar H. Gunderson <sesse@debian.org> Sun, 15 Jan 2006 13:43:43 +0100 + +samba (3.9.0+SVN12856-1) experimental; urgency=low + + * New upstream version. + * Move testparm from samba into samba-common. + * Make samba-common Architecture: any. + * Make samba-common replace/conflict samba (<= 3.9.0+SVN12739-1). + * Make samba-clients depend on samba-common. + * Make samba-common depend on debconf. + * Replace debconf dependencies with ${misc:Depends}, to automatically + get the debconf-2.0 alternative right. + * Include the newuser binary in samba-server package. + * Add missing Build-Depends on: libgnutls-dev, libreadline5-dev, + libpam0g-dev. All were causing silent build failures (ie. the package + was simply built without the features). + * Remove Build-Depends on libldap-dev. + * Include NEWS file. + + -- Steinar H. Gunderson <sesse@debian.org> Wed, 11 Jan 2006 22:08:32 +0100 + +samba (3.9.0+SVN12739-1) experimental; urgency=low + + * Move /usr/lib/samba/setup from samba-common to samba. + * Make samba replace samba-common (<= 3.9.0+SVN12726-1) + * Add a missing db_stop in samba.postinst, probably causing problems + starting the daemon in some cases. + * Add orphan files from /usr/bin (and relevant manpages) into their + correct packages: + * ldb-tools: ldbrename, ldbtest, oLschema2ldif. + * samba: ntlm_auth. + * samba-clients: getntacl. + * samba-gtk-frontends: gwcrontab. + * winregistry-tools: winreg. + * samba3dump and tdbtorture remain orphans. + * Add new executable /usr/bin/testparm to samba package. + * Add /var/lib/samba directory to samba package; it's needed by + testparm. + * Rewrite configuration/bootstrapping to be able to install the client + only and still get a usable smb.conf. The basic idea is: + * samba-common looks for an smb.conf. If there is none, it asks for + realm and domain and generates a skeleton smb.conf. + * If samba notices an upgrade from Samba 3, it asks whether the user + wants to upgrade. If not, it leaves everything alone (and broken). + * Otherwise, samba asks whether the user wants to set up a PDC. If yes, + it adds "server role = pdc" to smb.conf and provisions the server. + * Removed unused file samba.conffiles. + * Run dh_installdebconf on architecture-independent packages as well, now + that samba-common has a config script. + * Let samba-clients conflict/replace samba-common (<< 3.9.0), as they share + /usr/bin/net. + + -- Steinar H. Gunderson <sesse@debian.org> Fri, 6 Jan 2006 14:25:50 +0100 + +samba (3.9.0+SVN12726-1) experimental; urgency=low + + * First upload to Debian main. + + * Package renaming to get more in line with Samba 3 packaging: + * Rename samba-server package to just samba, for consistency with the + Samba 3 packaging. + * Rename samba.samba.init to samba.init, now that the init script and the + server package are called the same. + * Rename samba-swat to swat, and add a dependency from swat to samba. + + * debian/rules changes: + * Change SOURCEPATH to reflect that we now have the packaging in debian/, + not packaging/debian/. This will have to be reverted whenever upstream + syncs with us. + * Removed debmake comment, it's hardly relevant any more. + * Removed comment that there aren't any architecture-independent packages + (because there are). + * Remove redundant "package=samba" variable. + * Do "make pch ; make all" instead of "make proto ; -make pch ; make all"; + some build system bug prevents us from just doing "make pch all", but + since we're more or less guaranteed a recent gcc version, the pch target + shouldn't fail, so we won't allow it to. + * Remove autogen.sh call from configure; it should be done in the + upstream tarball, not in maintainer scripts. + + * debian/control changes: + * Copied Uploaders: line from Samba 3 packaging, adding myself. + * Rename samba-client package to samba-clients. + * Make samba-clients Replaces/Conflicts smbclient. + * Build-depend on docbook-xml, not just docbook-xsl -- the documentation + needs data from both to build. + * Move the samba binary package to the top, so it's the one receiving + the README.* files, among others. + + * Maintainer script changes: + * Attempt to upgrade from Samba 3 if that's what the user tries to do. + * Copy upgrade script into /usr/lib/samba/setup. + * Check for upgrade from << 3.9.0 in config, and ask the user for upgrade + if relevant. + * Check for upgrade from << 3.9.0 in postinst, and upgrade if the user + wished to. + * Only provision in samba.postinst if we're doing a fresh install. + * Support purging properly in postrm, both for samba and samba-common + (adapted from the Samba 3 packaging). + * Don't ask about an administrator password -- just let the provisioning + scripts make up a random one. + * Updated README.Debian to show the user how to change the password. + * Make samba recommend ldb-tools. + * Install README.building along with all the other documentation. + * Don't try to ask about the "done" question, which we nuked in a previous + release. + + * Updated debian/copyright. + * Added Samba copyright holders. + * Noted that talloc, ldb and tdb are under the LGPL. + * Added copyright holders and licensing for the packaging itself. + + * Remove a few unused files in the packaging. + * Change debhelper compatibility level to 5. + * Update versioned depends accordingly. + * Don't give --pidfile to start-stop-daemon when stopping -- current + versions of Samba 4 won't die when the parent is killed. + * Updated README.debian somewhat, and renamed to use a capital D. + * Rewritten README.building, to reflect the magic that has to be done + with the package in another repository. + * Update po/POTFILES.in to reflect name change (from samba4-server -> + samba-server -> samba). + + -- Steinar H. Gunderson <sesse@debian.org> Thu, 5 Jan 2006 21:27:13 +0100 + +samba (3.9.0+SVN12395-1) unstable; urgency=low + + * New snapshot, drop 4 suffix + + -- Jelmer Vernooij <jelmer@samba.org> Tue, 20 Dec 2005 13:38:26 +0100 + +samba4 (3.9.0+SVN12312-1) unstable; urgency=low + + * New upstream snapshot. + + -- Jelmer Vernooij <jelmer@samba.org> Mon, 27 Jun 2005 11:25:57 +0200 + +samba (2:3.6.19-1) unstable; urgency=low + + * Team upload. + * New upstream release + + -- Ivo De Decker <ivo.dedecker@ugent.be> Wed, 25 Sep 2013 20:01:48 +0200 + +samba (2:3.6.18-1) unstable; urgency=low + + * Team upload. + + [ Steve Langasek ] + * Split the samba init script into nmbd and smbd init scripts, for better + alignment with how init systems other than sysvinit work. This also + drops the override of the arguments to update-rc.d in debian/rules, + no longer needed in the post-insserv world. + * Add upstart jobs from Ubuntu for smbd, nmbd, and winbind. + + [ Ivo De Decker ] + * New upstream release + + -- Ivo De Decker <ivo.dedecker@ugent.be> Tue, 20 Aug 2013 22:06:45 +0200 + +samba (2:3.6.17-1) unstable; urgency=high + + * Team upload. + * New upstream security release. Closes: #718781 + Fixes CVE-2013-4124: Denial of service - CPU loop and memory allocation + + -- Ivo De Decker <ivo.dedecker@ugent.be> Mon, 05 Aug 2013 13:46:23 +0200 + +samba (2:3.6.16-2) unstable; urgency=high + + * Team upload. + * Make build-dep on libtevent-dev explicit. + * Fix waf-as-source.patch to make sure unpacking works in recent build + environment. Closes: #716932 + + -- Ivo De Decker <ivo.dedecker@ugent.be> Tue, 16 Jul 2013 22:01:04 +0200 + +samba (2:3.6.16-1) unstable; urgency=low + + * Team upload. + + [ Steve Langasek ] + * Drop support for running smbd from inetd; this is not well-supported + upstream, and can't correctly handle all of the long-running services + that are needed as part of modern samba. Closes: #707622. + + [ Ivo De Decker ] + * New upstream release + + -- Ivo De Decker <ivo.dedecker@ugent.be> Wed, 19 Jun 2013 21:05:07 +0200 + +samba (2:3.6.15-1) unstable; urgency=high + + * Team upload. + * New upstream bugfix release. Closes: #707042 + * Update VCS URL's for new git repo. + * The recommends for the separate libnss-winbind and libpam-winbind + packages needed for the upgrade of winbind from squeeze to wheezy are no + longer needed. Lowering them to suggests. + Closes: #706434, #674853 + + -- Ivo De Decker <ivo.dedecker@ugent.be> Thu, 09 May 2013 11:55:03 +0200 + +samba (2:3.6.14-1) unstable; urgency=low + + * Team upload. + * New upstream release + + -- Ivo De Decker <ivo.dedecker@ugent.be> Sat, 04 May 2013 22:02:15 +0200 + +samba (2:3.6.13-2) experimental; urgency=low + + * Team upload. + * Move binary files out of /etc/samba to /var/lib/samba, + where they belong according to the FHS: + - schannel_store.tdb + - idmap2.tdb + - MACHINE.sid + Closes: #454770 + + -- Ivo De Decker <ivo.dedecker@ugent.be> Sun, 21 Apr 2013 12:54:03 +0200 + +samba (2:3.6.13-1) experimental; urgency=low + + * Team upload. + * New upstream release + * samba: Suggests winbind. Closes: #689857 + + -- Ivo De Decker <ivo.dedecker@ugent.be> Mon, 18 Mar 2013 21:29:58 +0100 + +samba (2:3.6.12-1) experimental; urgency=low + + * Team upload. + * Security update, fixing the following issues: + - CVE-2013-0213: Clickjacking issue in SWAT + - CVE-2013-0214: Potential XSRF in SWAT + * New upstream release + * Install pkgconfig file in libsmbclient-dev. Closes: #700643 + + -- Ivo De Decker <ivo.dedecker@ugent.be> Sun, 17 Feb 2013 22:25:34 +0100 + +samba (2:3.6.10-1) experimental; urgency=low + + * New upstream release + + -- Christian Perrier <bubulle@debian.org> Sat, 15 Dec 2012 08:03:03 +0100 + +samba (2:3.6.9-1) experimental; urgency=low + + * New upstream release + + -- Christian Perrier <bubulle@debian.org> Thu, 01 Nov 2012 08:17:29 +0100 + +samba (2:3.6.8-1) experimental; urgency=low + + * New upstream release. + + -- Christian Perrier <bubulle@debian.org> Tue, 18 Sep 2012 07:13:41 +0200 + +samba (2:3.6.7-1) experimental; urgency=low + + * New upstream release. + + -- Christian Perrier <bubulle@debian.org> Sat, 11 Aug 2012 21:37:38 +0200 + +samba (2:3.6.6-3) unstable; urgency=low + + [ Ansgar Burchardt ] + * debian/rules: Use xz compression for binary packages. + Closes: #683899 + + -- Christian Perrier <bubulle@debian.org> Sun, 05 Aug 2012 12:19:12 +0200 + +samba (2:3.6.6-2) unstable; urgency=low + + * Restore the DHCP hook. + + -- Steve Langasek <vorlon@debian.org> Wed, 27 Jun 2012 09:31:15 -0700 + +samba (2:3.6.6-1) unstable; urgency=low + + [ Ivo De Decker ] + * Only enable swat in inetd.conf on first install. Closes: #658245 + * Minor lintian fixes. + * Remove DHCP hook. Closes: #652942, #629406, #649100 + * Don't reload smbd when running from inetd. Closes: #678741 + * Don't start smbd when guest account doesn't exist. Closes: #653382 + * Only export public symbols in libsmbclient and libwbclient. + + [ Christian Perrier ] + * New upstream version + + -- Christian Perrier <bubulle@debian.org> Wed, 27 Jun 2012 06:03:17 +0200 + +samba (2:3.6.5-7) unstable; urgency=low + + * Allow installing smbclient package together with newer versions of + samba4-clients, which no longer ship the smbclient and nmblookup + binaries. + + -- Jelmer Vernooij <jelmer@debian.org> Mon, 11 Jun 2012 13:19:24 +0200 + +samba (2:3.6.5-6) unstable; urgency=high + + [ Ivo De Decker ] + * Update symbols file for linux-only symbols in libsmbclient. This should + fix the FTBFS on kfreebsd and hurd. Closes: #676170 + * Enable ctdb for non-linux archs. + * Remove old if-up script during upgrade. + + -- Christian Perrier <bubulle@debian.org> Wed, 06 Jun 2012 19:10:02 +0200 + +samba (2:3.6.5-5) unstable; urgency=low + + [ Christian Perrier ] + * Make libpam-winbind depend on libnss-winbind. + + [ Ivo De Decker ] + * Update symbols file for libsmbclient and libwbclient0 + * Add lintian overrides for examples in samba-doc + * libpam-winbind: change Depends on libnss-winbind to Recommends + * libnss-winbind: Suggests libpam-winbind + * Update package description for winbind, libpam-winbind and libnss-winbind + to better reflect their content + * Backport vfs_shadow_copy2 from master, to allow shadow copy to work + without wide links + + [ Luk Claes ] + * Ship wbclient.pc file in multiarch safe directory (Closes: #674215). + + [ Sam Morris ] + * Add libutil_drop_AI_ADDRCONFIG.patch that allows running nmbd when + no network interfaces have been assigned an address, therefore + removing the need for an if-up script. Closes: #640668,#640508 + + -- Christian Perrier <bubulle@debian.org> Sun, 03 Jun 2012 20:00:56 +0200 + +samba (2:3.6.5-3) unstable; urgency=low + + [ Luk Claes ] + * Ship wbclient.pc so cifs-utils can be built again (Closes: #672733). + * Activate parallel building. Might need DEB_BUILD_OPTIONS as usual. + + [ Christian Perrier ] + * Add Breaks and Replaces on libpam-winbind for newly created + libnss-winbind. Thanks to Colin Watson for pointing this and shame + on me for not properly checking the transition. Closes: #673122 + + -- Christian Perrier <bubulle@debian.org> Thu, 17 May 2012 10:34:38 +0200 + +samba (2:3.6.5-2) unstable; urgency=low + + * The yearly "SambaXP bug cleaning party" release. 11 years + SambaXP, 20 years Samba and counting... + * Make samba-common "Multi-Arch: foreign" + * Adapt patch in upstream #7499 and stop nss_wins clobbering other + daemon's logfiles. Closes: #598313 + * Add some mention about some use for the user information in Kerberos + environments in the smbspool manpage. Closes: #387266 + * Drop link to no longer provided "Using Samba" documentation in + HTML documentation summary file. Closes: #604768 + * Provide WHATSNEW.txt in samba-doc too as it is linked from the + documentation summary file. Do not compress that file. + * Fix link to WHATSNEW.txt in HTML documentation summary file. This + is the second part of the fix for #604768 + * Use lp_state_dir() instead of get_dyn_STATEDIR() in + fhs-filespaths.patch as the latter does indeed hardcode the + location for passdb.tdb and secrets.tdb to /var/lib/samba + (the compile-time option for state directory and NOT the configurable + value). This is left to "state directory" instead of "private dir" + at least as of now, because if doesn't change anything to the + current behaviour, but allows the files' location to be configurable + through "state directory" (and not "private dir"). + Closes: #249873 + * Disable useless smbtorture4 build. Thanks to Ivo De Decker for the patch. + Closes: #670561 + * Add upstream commit that adds waf source to the buildtools/ + directory. As upstream will, one day or another, merge this, I + prefer this over removing the waf binary and repack upstream + tarball. + Closes: #654499 + * Build-Conflict with python-ldb and python-ldb-dev to avoid build + failures when some versions of these packages are locally installed. + Closes: #657314 + * Rename fix-samba.ldip-syntax.patch to fix-samba.ldif-syntax.patch + * Split NSS modules into a new libnss-winbind binary package. + Closes: #646292 + * Add a NEWS.Debian entry about the libnss-winbind split and, while at + it, add an entry for libpam-winbind too (as it will affect upgrades + from squeeze). + * Drop code that was moving files around in samba.postinst and + winbind.postinst for pre-squeeze versions of the package. + * Drop code that was modifying a deprecated "passdb backend" setting + in smb.conf for pre-squeeze versions of the package (in + samba-common.config). + * Add Should-Start dependency to winbind init script to guarantee + that the samba init script is started before winbind if present. + Closes: #638066 + * Provide a (basic) manpage to smbtorture(1). Closes: #528735 + * Turkish debconf translation update (Atila KOÇ). Closes: #672447 + * Drop the code that generates an smbpasswd file from the system's + user list. This adds very long delays on systems with many users, + including those with external user backends. It also makes much + less sense nowadays and the use of libpam-smbpass can easily + fill most of the needs. Closes: #671926 + * Merged from Ubuntu: + - Set 'usershare allow guests', so that usershare admins are + allowed to create public shares in addition to authenticated + ones. + - add map to guest = Bad user, maps bad username to guest access. + This allows for anonymous user shares. Closes: #672497 + + -- Christian Perrier <bubulle@debian.org> Sat, 12 May 2012 14:30:58 +0200 + +samba (2:3.6.5-1) unstable; urgency=low + + * New upstream release. Fixes CVE-2012-2111: Incorrect permission + checks when granting/removing privileges can compromise file + server security. + * Build-Depend on debhelper >= 9~ (which is in unstable for a few + months now) + * Use "set -e" in maintainer scripts instead of passing -e in the + shebang line + * Update Standards to 3.9.3 (checked, no change) + + -- Christian Perrier <bubulle@debian.org> Tue, 01 May 2012 08:07:39 +0200 + +samba (2:3.6.4-1) unstable; urgency=low + + [ Christian Perrier ] + * Two changes in the previous version should indeed read: + - samba.postinst: Avoid scary pdbedit warnings on first import. + - samba-common.postinst: Add more informative error message for the case + where smb.conf was manually deleted. + Closes: #664509 + + [ Jelmer Vernooij ] + * New upstream release. + + Fixes CVE-2012-1182: PIDL based autogenerated code allows overwriting + beyond of allocated array. + + -- Jelmer Vernooij <jelmer@debian.org> Wed, 11 Apr 2012 23:25:41 +0200 + +samba (2:3.6.3-2) unstable; urgency=low + + [ Christian Perrier ] + * Fix example samba.ldif syntax. Closes: #659963 + * Set minimal version of tdb ot 1.2.6 in Build-Depends + (thanks, backports!) + * Lower priority of debconf question to medium after some pondering. + After all, we have a sane default. Closes: #662801 + * Merge some Ubuntu patches: + - samba.config: Avoid scary pdbedit warnings on first import. + - samba.postinst: Add more informative error message for the case + where smb.conf was manually deleted. + + [ Maarten Bezemer ] + * Removed references to the testprns command from documentation + * Added notes that the smbsh command is not available in this package + Closes: #662243 + + [ Debconf translations ] + * Indonesian (Arief S Fitrianto). Closes: #660312 + * Slovak (Ivan Masár). Closes: #661125 + + [ Steve Langasek ] + * Use Debian copyright-format 1.0 in debian/copyright. + + -- Christian Perrier <bubulle@debian.org> Mon, 12 Mar 2012 20:49:24 +0100 + +samba (2:3.6.3-1) unstable; urgency=low + + [ Christian Perrier ] + * New upstream release + * Fixes CVE-2012-0817: + The Samba File Serving daemon (smbd) in Samba versions + 3.6.0 to 3.6.2 is affected by a memory leak that can + cause a server denial of service. + + [ Debconf translations ] + * Polish (MichaÅ‚ KuÅ‚ach). Closes: #657770 + + -- Christian Perrier <bubulle@debian.org> Tue, 31 Jan 2012 22:09:39 +0100 + +samba (2:3.6.2-1) unstable; urgency=low + + * New upstream release + * Drop bug_601406_fix-perl-path-in-example.patch (applied upstream) + + -- Christian Perrier <bubulle@debian.org> Fri, 27 Jan 2012 21:38:52 +0100 + +samba (2:3.6.1-3) unstable; urgency=low + + [ Sam Hartman ] + * Increase libkrb5-dev dependency to avoid depending on + krb5_locate_kdc, Closes: #650541 + + [ Steve Langasek ] + * Fix the libpam-winbind description to more accurately identify the + protocols being used by nss_wins. Closes: #650091. + + -- Christian Perrier <bubulle@debian.org> Thu, 01 Dec 2011 21:56:52 +0100 + +samba (2:3.6.1-2) unstable; urgency=low + + * Merge changes from 3.5.11~dfsg-4 and unreleased -5 in unstable branch + * debian/patches/initialize_password_db-null-deref: Avoid null + dereference in initialize_password_db(). Closes LP: #829221. + * Mark samba-common Multi-Arch: foreign. + + -- Christian Perrier <bubulle@debian.org> Sun, 27 Nov 2011 19:06:39 +0100 + +samba (2:3.6.1-1) experimental; urgency=low + + * New upstream release + + -- Christian Perrier <bubulle@debian.org> Sat, 22 Oct 2011 10:56:17 +0200 + +samba (2:3.6.0-1) experimental; urgency=low + + * New upstream release + * Resync with packaging changes in 3.5 branch between 3.5.8~dfsg1 + and 3.5.11~dfsg-1 + * Drop wbc_async.h from libwbclient-dev as, according to upstream's + commit c0a7c9f99188ebb3cd27094b9364449bcc2f80d8, " its only user is + smbtorture3" + + -- Christian Perrier <bubulle@debian.org> Thu, 11 Aug 2011 09:14:53 +0200 + +samba (2:3.6.0~rc3-1) experimental; urgency=low + + * New upstream version + + -- Christian Perrier <bubulle@debian.org> Fri, 29 Jul 2011 23:11:10 +0200 + +samba (2:3.6.0~rc2-1) experimental; urgency=low + + * New upstream version + + -- Christian Perrier <bubulle@debian.org> Tue, 07 Jun 2011 23:09:41 +0200 + +samba (2:3.6.0~rc1-2) experimental; urgency=low + + * Use --with-nmbdsocketdir=/var/run/samba to have nmbd socket file + in an existing directory. Closes: #628121 + + -- Christian Perrier <bubulle@debian.org> Fri, 27 May 2011 15:35:44 +0200 + +samba (2:3.6.0~rc1-1) experimental; urgency=low + + * New upstream release + + -- Christian Perrier <bubulle@debian.org> Thu, 19 May 2011 22:26:08 +0200 + +samba (2:3.6.0~pre3-1) experimental; urgency=low + + [ Christian Perrier ] + * New upstream release + * add "#include "fcntl.h"" to idmap_tdb2.c to get it compiled + * samba-doc-pdf: add Samba3-HOWTO.pdf from pre1 as it + was forgotten upstream + * libwbclient0.symbols: dropped several symbols related to + asynchronous actions that weren't working anyway (according + to Kai Blin at SambaXP) + + [ Mathieu Parent ] + * Build against libctdb-dev (>= 1.10+git20110412) to have required control: + CTDB_CONTROL_SCHEDULE_FOR_DELETION. + + -- Christian Perrier <bubulle@debian.org> Mon, 09 May 2011 11:29:52 +0200 + +samba (2:3.5.11~dfsg-4) unstable; urgency=low + + * Lintian override for libpam-winbind; it's not a shared library so doesn't + really need the pre-depends on multiarch-support. + * export DEB_BUILD_MAINT_OPTIONS := hardening=+bindnow, taken from Ubuntu. + + -- Steve Langasek <vorlon@debian.org> Fri, 21 Oct 2011 16:01:29 -0700 + +samba (2:3.5.11~dfsg-3) unstable; urgency=low + + * Split winbind into separate packages, winbind and libpam-winbind, + with the latter marked Multi-Arch: same and the former marked + Multi-Arch: foreign, so that we can install multiple copies of the + pam module and nss modules on the same system. + + -- Steve Langasek <vorlon@debian.org> Fri, 21 Oct 2011 20:00:13 +0000 + +samba (2:3.5.11~dfsg-2) unstable; urgency=low + + * Don't export DEB_HOST_ARCH_OS in debian/rules, this is only used locally. + * Use dh_links instead of manually creating directories and symlinks from + debian/rules. + * Switch from dh_movefiles to dh_install and adjust for debhelper compat + level 7, in preparation for moving to dh(1). + * Where possible, use dh_installman and dh_install's support for target + directories instead of moving files around in debian/rules. + * We don't need to mess with perms on usr/include/libsmbclient.h anymore + in debian/rules, the upstream install target gets it right + * Use debian/clean instead of removing left-behind files by hand in the + clean target + * Convert debian/rules to dh(1). + * Don't run debconf-updatepo on clean; not worth the divergence in + debian/rules anymore :) + * Don't install debian/README.build in the package; this is really only + relevant in the source. + * Bump to debhelper compat level 9 and build libraries for multiarch. + * Drop Makefile.internal from libsmbclient-dev examples so that we can mark + libsmbclient-dev Multi-Arch: same. + * Bump build-depends on debhelper to 8.9.4, so we ensure we have + dpkg-buildflags by default and get full build hardening enabled out of + the box - critical for a server like samba. + * Use DH_ALWAYS_EXCLUDE instead of passing override options to + dh_installexamples. + * Pass --sourcedirectory=source3 to dh instead of having to pass it to each + dh_auto_* command. + * Ironically, this means that we have to manually disable dh_auto_test, + which now finds the makefile targets but doesn't work unless we build an + extra wrapper library into our binaries that we don't want. + * Drop a few configure options from debian/rules that shadow the built-in + defaults. + * debian/libsmbclient.lintian-overrides: yes, we know the package name + doesn't match the soname - and it never should until there's an ABI + change. + + -- Steve Langasek <vorlon@debian.org> Fri, 07 Oct 2011 21:36:43 -0700 + +samba (2:3.5.11~dfsg-1) unstable; urgency=low + + * New upstream release + + -- Christian Perrier <bubulle@debian.org> Fri, 05 Aug 2011 20:12:01 +0200 + +samba (2:3.5.10~dfsg-1) unstable; urgency=low + + * New upstream release + * Security update, fixing the following issues: + - CVE-2011-2694: possible XSS attack in SWAT + - CVE-2011-2522: Cross-Site Request Forgery vulnerability in SWAT + + -- Christian Perrier <bubulle@debian.org> Thu, 28 Jul 2011 12:19:01 +0200 + +samba (2:3.5.9~dfsg-1) unstable; urgency=low + + * New upstream release + * Add "--quiet" to start-stop-daemon call in reload target in init + script. Closes: #572483 + * Add examples/LDAP in examples for the samba package. With this, + samba.schema will be provided in some way in the package. + This very partially addresses #190162 + * patches/bug_221618_precise-64bit-prototype.patch: precise + 64bits prototype in libsmbclient-dev. Closes: #221618 + * patches/no-unnecessary-cups.patch: dropped after upstream + changes to printing code + * Update Standards to 3.9.2 (checked, no change) + * Add build-arch and build-indep targets in debian/rules + + -- Christian Perrier <bubulle@debian.org> Sat, 18 Jun 2011 07:08:00 +0200 + +samba (2:3.5.8~dfsg-5) unstable; urgency=low + + * Fix "tdb2.so undefined symbol: dyn_get_STATEDIR" by fixing a typo + in fhs-filespath.patch. Closes: #629183, LP: #789097 + + -- Christian Perrier <bubulle@debian.org> Sat, 04 Jun 2011 13:48:32 +0200 + +samba (2:3.5.8~dfsg-4) unstable; urgency=low + + [ Debconf translations ] + * Spanish (Omar Campagne). Closes: #627813 + * Swedish (Martin Bagge / brother). Closes: #627849 + * Brazilian Portuguese (Adriano Rafael Gomes). Closes: #627866 + + [ Christian Perrier ] + * bug_601406_fix-perl-path-in-example.patch: fix path to perl + binary in example file. Closes: #601406 + + -- Christian Perrier <bubulle@debian.org> Fri, 27 May 2011 12:23:05 +0200 + +samba (2:3.5.8~dfsg-3) unstable; urgency=low + + [ Debconf translations ] + * Italian (Luca Monducci). Closes: #626674 + * Dutch (Vincent Zweije). Closes: #627519 + * Czech (Miroslav Kure). Closes: #627442 + + -- Christian Perrier <bubulle@debian.org> Tue, 24 May 2011 22:40:04 +0200 + +samba (2:3.5.8~dfsg-2) unstable; urgency=low + + [ Jelmer Vernooij ] + * Add libwbclient-dev package. + * Build against external libtdb. + * Bump standards version to 3.9.1 (no changes). + + [ Mathieu Parent ] + * Builddep on libctdb-dev or ctdb < 1.10 + + [ Christian Perrier ] + * Use db_settitle in debconf questions and make these + titles translatable. Closes: #560318 + * Test the presence of testparm before trying to use it in init script + Closes: #606320 + * Add cups to Should-{Start,Stop} in LSB headers of + samba init script to guarantee that CUPS is started + before samba. Closes: #619132 + * Drop libsmbclient-dev useless dependency on samba-common + Closes: #597987 + + [ Debconf translations ] + * French (Christian Perrier) + * Japanese (Kenshi Muto). Closes: #626474 + * Galician (Miguel Anxo Bouzada). Closes: #626477 + * Thai (Theppitak Karoonboonyanan). Closes: #626487 + * Russian (Yuri Kozlov). Closes: #626523 + * Danish (Joe Hansen). Closes: #626531 + * Esperanto (Felipe Castro). Closes: #626558 + * Hebrew (Eran Cohen). Closes: #626638 + * BokmÃ¥l, (Bjørn Steensrud). + * Italian (Luca Monducci). Closes: #626674 + * Finnish (Tapio Lehtonen). Closes: #626890 + * Portuguese (Miguel Figueiredo). Closes: #627224 + * German (Holger Wansing). Closes: #627354 + * Czech (Miroslav Kure). Closes: #627442 + + -- Christian Perrier <bubulle@sesostris.kheops.frmug.org> Sun, 22 May 2011 21:15:21 +0200 + +samba (2:3.5.8~dfsg-1) unstable; urgency=low + + * New upstream release. This fixes the following bugs: + - Winbind leaks gids with idmap ldap backend (upstrem #7777) + Closes: #613624 + - printing from Windows 7 fails with 0x000003e6 + Closes: #617429 + * smb.conf(5) restored from samba 3.5.6 as a workaround to upstream + #7997 + + -- Christian Perrier <bubulle@debian.org> Tue, 08 Mar 2011 22:38:32 +0100 + +samba (2:3.5.7~dfsg-1) unstable; urgency=low + + [ Christian Perrier ] + * New upstream release + * Security update, fixing the following issue: + - CVE-2011-0719: denial of service by memory corruption + * Use architecture wildcard "linux-any" in build dependencies + Closes: #563372 + + -- Christian Perrier <bubulle@debian.org> Tue, 01 Mar 2011 20:59:34 +0100 + +samba (2:3.5.6~dfsg-5) unstable; urgency=low + + * Fix FTBFS on Hurd. Closes: #610678 + * Only try parsing dhcpd.conf is it's not empty, + in dhclient-enter-hooks.d/samba. Closes: #594088. + + -- Christian Perrier <bubulle@debian.org> Sat, 05 Feb 2011 13:50:22 +0100 + +samba (2:3.5.6~dfsg-4) unstable; urgency=low + + * Fix pam_winbind file descriptor leak with a patch + proposed in https://bugzilla.samba.org/show_bug.cgi?id=7265. + Upstream claim is that #7265 is fixed in 3.5.6 but our bug submitter + confirmed it is not while the patch applied here fixes the file + descriptor leak. + Closes: #574468 + + [ Debconf translations ] + * Brazilian Portuguese (Adriano Rafael Gomes). Closes: #607402 + + -- Christian Perrier <bubulle@debian.org> Sat, 15 Jan 2011 18:06:22 +0100 + +samba (2:3.5.6~dfsg-3) unstable; urgency=low + + [ Julien Cristau ] + * Bump libwbclient0 shlibs to match the newest version in the symbols file. + * Mark libwbclient0 as breaking other samba packages with versions older + than 2:3.4.1, as they were linked against libtalloc1 instead of + libtalloc2, and the combination causes crashes (closes: #593823). + + -- Christian Perrier <bubulle@debian.org> Mon, 06 Dec 2010 20:14:04 +0100 + +samba (2:3.5.6~dfsg-2) unstable; urgency=low + + [ Steve Langasek ] + * Fix debian/rules update-archs target to not add extra spaces on every + invocation... + + [ Debconf translations ] + * Catalan (Jordi Mallach). Closes: #601101 + * Japanese (Kenshi Muto). Closes: #601364 + * Bulgarian (Damyan Ivanov). Closes: #601366 + * Hebrew (Omer Zak). Closes: #601633 + * Kurdish (Erdal Ronahî). Closes: #601719 + * Dutch (Remco Rijnders). Closes: #602220 + * Greek (Konstantinos Margaritis). + + [ Christian Perrier ] + * Include upstream's patch for "gvfsd-smb (Gnome vfs) fails to copy + files from a SMB share using SMB signing.". Backported from + to be released 3.5.7 version + Closes: #605729 + + -- Christian Perrier <bubulle@debian.org> Sat, 04 Dec 2010 07:44:22 +0100 + +samba (2:3.5.6~dfsg-1) unstable; urgency=low + + * New upstream release. Fixes the following Debian bug: + - rpcclient readline segfault. Closes: #597203 + + -- Christian Perrier <bubulle@debian.org> Sun, 10 Oct 2010 09:59:37 +0200 + +samba (2:3.5.5~dfsg-1) unstable; urgency=high + + [ Christian Perrier ] + * New upstream release. Security release fixing: + - CVE-2019-3069: Buffer overrun vulnerability in sid_parse. + Closes: #596891. + * Fix comment in swat's postinst. It is not turned off by default + Closes: #596040 + * Drop transition code from (pre-etch) 3.0.20b-3 version in swat postinst + + [ Steve Langasek ] + * debian/control: winbind needs libpam-runtime (>= 1.0.1-6) for + pam-auth-update. Closes: #594325. + + [ Debconf translations ] + * Arabic (Ossama Khayat). Closes: #596164 + + -- Christian Perrier <bubulle@debian.org> Tue, 14 Sep 2010 23:03:35 +0200 + +samba (2:3.5.4~dfsg-2) unstable; urgency=low + + * Release to unstable + + [ Debconf translations ] + * Danish (Joe Dalton). Closes: #592789. + * Galician (Jorge Barreiro). Closes: #592809 + + [ Steve Langasek ] + * debian/patches/fhs-filespaths.patch, debian/samba.postinst, + debian/winbind.postinst: move some files from /etc/samba to + /var/lib/samba where they belong: MACHINE.SID, schannel_store.tdb, + and idmap2.tdb. + + -- Christian Perrier <bubulle@debian.org> Tue, 07 Sep 2010 17:47:32 +0200 + +samba (2:3.6.0~pre1-1) experimental; urgency=low + + * New upstream release + + -- Christian Perrier <bubulle@debian.org> Wed, 04 Aug 2010 01:39:11 +0200 + +samba (2:3.5.4~dfsg-1) experimental; urgency=low + + * New upstream release + + -- Christian Perrier <bubulle@debian.org> Tue, 29 Jun 2010 22:00:53 +0200 + +samba (2:3.5.3~dfsg-1) experimental; urgency=low + + * New upstream release. Fixes the following bugs: + - smbclient segfaults when used against old samba "security = share" + Closes: #574886 + * Drop duplicate build dependency on ctdb + + -- Christian Perrier <bubulle@debian.org> Wed, 19 May 2010 22:07:49 +0200 + +samba (2:3.5.2~dfsg-2) experimental; urgency=low + + * Resync changes with changes in trunk between 3:3.4.4~dfsg-1 and + 2:3.4.7~dfsg-2 + + -- Christian Perrier <bubulle@debian.org> Tue, 04 May 2010 17:13:47 +0200 + +samba (2:3.5.2~dfsg-1) experimental; urgency=low + + * New upstream release + * Bugs fixed upstream: + - Fix parsing of the gecos field + Closes: #460494 + + -- Christian Perrier <bubulle@debian.org> Thu, 08 Apr 2010 19:48:07 +0200 + +samba (2:3.5.1~dfsg-1) experimental; urgency=low + + * New upstream release. Security fix: all smbd processes inherited + CAP_DAC_OVERRIDE capabilities, allowing all file system access to be + allowed even when permissions should have denied access. + + -- Christian Perrier <bubulle@debian.org> Tue, 09 Mar 2010 10:54:01 +0100 + +samba (2:3.5.0dfsg-1) experimental; urgency=low + + * New upstream release. Not using "3.5.0~dfsg" as version number + because we used a "higher" version number in previous versions. + + -- Christian Perrier <bubulle@debian.org> Tue, 02 Mar 2010 22:03:15 +0100 + +samba (2:3.5.0~rc3~dfsg-1) experimental; urgency=low + + * New upstream release candidate + + -- Christian Perrier <bubulle@debian.org> Sat, 20 Feb 2010 08:36:57 +0100 + +samba (2:3.5.0~rc2~dfsg-1) experimental; urgency=low + + * New upstream pre-release + * Use new --with-codepagedir option. Consequently drop + codepages-location.patch + * Drop "Using Samba" from the samba-doc file list as it was + removed upstream. + + -- Christian Perrier <bubulle@debian.org> Sun, 31 Jan 2010 11:53:48 +0100 + +samba (2:3.5.0~rc1~dfsg-1) experimental; urgency=low + + [ Christian Perrier ] + * New upstream pre-release + + -- Christian Perrier <bubulle@debian.org> Fri, 15 Jan 2010 23:31:01 +0100 + +samba (2:3.4.8~dfsg-2) unstable; urgency=low + + [ Steve Langasek ] + * Drop the per-release smb.conf templates, only needed for upgrade paths + that are no longer supported. + * Call /etc/init.d/samba directly from the logrotate script instead of + using invoke-rc.d, to address the irony that the only package I work on + that *has* a logrotate script is inconsistent with my position in + bug #445203. + * Fix a bashism in the samba postinst that can cause the package + installation to fail under dash. LP: #576307. + * Add symlink from /etc/dhcp/dhclient-enter-hooks.d to + /etc/dhcp3/dhclient-enter-hooks.d for the hook location of the new + isc-dhcp-client package. Closes: #585056. + + [ Christian Perrier ] + * Don't copy system accounts from /etc/passwd to + /var/lib/samba/passdb.tdb. Closes: #502801 + * Update Standards to 3.9.0 (checked, no change) + * Backport patch for upstream bug #7139 to fix "owner of file not + available with kerberos" + Closes: #586337 + + -- Steve Langasek <vorlon@debian.org> Wed, 14 Jul 2010 11:59:28 -0700 + +samba (2:3.4.8~dfsg-1) unstable; urgency=low + + [ Christian Perrier ] + * New upstream release + * Bugs fixed upstream: + - Fix writing with vfs_full_audit. Closes: #574011 + * Drop deprecated 'share modes' parameter from default smb.conf + Closes: #580561 + * Enable PIE during configure. Closes: #509135 + * Avoid winbind's logrotate script to fail when there is no + /var/run/samba directory. Closes: #569926 + * Add explanations about "passdb backend" default setting change + Closes: #553904 + + [ Debconf translations ] + * Spanish (Omar Campagne). Closes: #579011 + + -- Christian Perrier <bubulle@debian.org> Wed, 12 May 2010 05:45:52 +0200 + +samba (2:3.4.7~dfsg-2) unstable; urgency=low + + [ Christian Perrier ] + * Drop smbfs package (now provided by cifs-utils as a dummy transition + package) + + [ Debconf translations ] + * Portuguese (Miguel Figueiredo). Closes: #575958 + + [ Steve Langasek ] + * winbind.prerm: don't forget to remove the PAM profile on package + removal :/ + * Fix winbind.pam-config to not interfere with password changes for + non-winbind accounts. Closes: #573323, LP: #546874. + * debian/samba.if-up, debian/rules: add an if-up.d script for samba to + try to start nmbd, if it's not running because /etc/init.d/samba ran + before the network was up at boot time. Closes: #576415, LP: #462169. + * debian/samba.if-up: allow "NetworkManager" as a recognized address + family... it's obviously /not/ an address family, but it's what gets + sent when using NM, so we'll cope for now. + + -- Christian Perrier <bubulle@debian.org> Sat, 17 Apr 2010 07:49:49 +0200 + +samba (2:3.4.7~dfsg-1) unstable; urgency=low + + [ Steve Langasek ] + * Add a PAM profile for pam_winbind. Closes: #566890, LP: #282751. + * Add the correct versioned build dependency on libtalloc-dev as + we need 2.0.1 to build samba. Closes: #572603 + * Add avr32 to arches with a build dependency on ctdb. Closes: #572126 + + [ Christian Perrier ] + * New upstream release. Security fix: all smbd processes inherited + CAP_DAC_OVERRIDE capabilities, allowing all file system access to be + allowed even when permissions should have denied access. + + -- Christian Perrier <bubulle@debian.org> Tue, 09 Mar 2010 10:52:24 +0100 + +samba (2:3.4.6~dfsg-1) unstable; urgency=low + + * New upstream release + + -- Christian Perrier <bubulle@debian.org> Fri, 26 Feb 2010 22:39:50 +0100 + +samba (2:3.4.5~dfsg-2) unstable; urgency=low + + [ Steve langasek ] + * Revert the "bashisms" fix from version 2:3.3.0~rc2-4; "local foo=bar" + is explicitly allowed by Policy now, and this change introduced a + syntax error. Closes: #566946. + + [ Christian Perrier ] + * No longer maker (u)mount.cifs setuid root. Add a notice + about this in the package's NEWS.Debian file + Closes: #567554 + * Use dh_lintian instead of manual install of lintian overrides + * Updated Standards to 3.8.4 (checked, no change) + + -- Christian Perrier <bubulle@debian.org> Sat, 13 Feb 2010 14:36:33 +0100 + +samba (2:3.4.5~dfsg-1) unstable; urgency=low + + * New upstream release. Bugs fixed by this release: + - Memory leak in smbd. Closes: #538819, #558453 + * Declare a versioned dependency of winbind and samba on libwbclient0 + Closes: #550481 + * A few lintian fixes: + * Drop /var/run/samba from samba-common. The directory is created + by init scripts when needed. + * No longer prepend a path to the mksmbpasswd call in samba.postinst. + This prevents the local administrator to use a replacement version + for some local reason. + + -- Christian Perrier <bubulle@debian.org> Sat, 23 Jan 2010 12:16:42 +0100 + +samba (2:3.4.4~dfsg-1) unstable; urgency=low + + * New upstream version. + * Drop all RFC files from upstream source, therefore using a "~dfsg" + suffix to upstream version number. + * Bugs fixed upstream: + - fixed list of workgroup servers in libsmbclient. + Closes: #555462, #561148 + - fixed documentation of the credentials file format in + mount.cifs(8). Closes: #552250 + + -- Christian Perrier <bubulle@debian.org> Thu, 14 Jan 2010 20:16:34 +0100 + +samba (2:3.4.3-2) unstable; urgency=low + + [ Christian Perrier ] + * Switch to source format 3.0 (quilt) + * Better adapt "add machine script" example to adduser + Thanks to Heiko Schlittermann for the suggestion + Closes: #555466 + + [ Steve Langasek ] + * The "I hate non-declarative alternatives" upload: + - debian/samba{,-common}.prerm: don't call update-alternatives --remove + on upgrade, /do/ call it on other invocations of the prerm script. If + these tools ever go away, the removal needs to be handled on upgrade by + the maintainer scripts of the new package version. + - debian/samba{,-common-bin}.postinst: call update-alternatives + unconditionally, don't second-guess the maintainer script arguments. + - debian/samba.postinst: call update-alternatives after the debconf + handling, not before; debconf triggers a re-exec of the script so + anything done before invoking debconf is wasted because it will be + re-done, and if there's already a debconf frontend running when this + is called, the not-redirected update-alternatives output will confuse + it. Closes: #558116. + - debian/samba-common.prerm: move to samba-common-bin, this is the package + that owns these binaries. + + -- Christian Perrier <bubulle@debian.org> Thu, 17 Dec 2009 16:53:13 +0100 + +samba (2:3.4.3-1) unstable; urgency=low + + * New upstream release. This fixes the following bugs: + - Do not attempt to update /etc/mtab if it is + a symbolic link. Closes: #408394 + * Bump Standards-Version to 3.8.3 (checked) + + -- Christian Perrier <bubulle@debian.org> Sat, 31 Oct 2009 14:32:07 +0100 + +samba (2:3.4.2-1) unstable; urgency=high + + * New upstream release. Security update. + * CVE-2009-2813: + Connecting to the home share of a user will use the root of the + filesystem as the home directory if this user is misconfigured to + have an empty home directory in /etc/passwd. + * CVE-2009-2948: + If mount.cifs is installed as a setuid program, a user can pass it + a credential or password path to which he or she does not have + access and then use the --verbose option to view the first line of + that file. + * CVE-2009-2906: + Specially crafted SMB requests on authenticated SMB connections + can send smbd into a 100% CPU loop, causing a DoS on the Samba + server. + + -- Christian Perrier <bubulle@debian.org> Sat, 03 Oct 2009 08:30:33 +0200 + +samba (2:3.4.1-2) unstable; urgency=low + + * ./configure --disable-avahi, to avoid accidentally picking up an avahi + dependency when libavahi-common-dev is installed. + + -- Steve Langasek <vorlon@debian.org> Sat, 26 Sep 2009 00:01:12 -0700 + +samba (2:3.4.1-1) unstable; urgency=low + + [ Christian Perrier ] + * New upstream release. This fixes the following bugs: + - smbd SIGSEGV when breaking oplocks. Thanks to Petr Vandrovec + for the clever analysis and collaboration with upstream. + Closes: #541171 + - Fix password change propagation with ldapsam. Closes: #505215 + - Source package contains non-free IETF RFC/I-D. Closes: #538034 + * Turn the build dependency on libreadline5-dev to libreadline-dev + to make further binNMUs easier when libreadline soname changes + Thanks to Matthias Klose for the suggestion + + [ Steve Langasek ] + * Don't build talloctort when using --enable-external-talloc; and don't + try to include talloctort in the samba-tools package, since we're + building with --enable-external-talloc. :) Closes: #546828. + + -- Steve Langasek <vorlon@debian.org> Mon, 21 Sep 2009 22:20:22 -0700 + +samba (2:3.4.0-5) unstable; urgency=low + + * Move /etc/pam.d/samba back to samba-common, because it's shared with + samba4. Closes: #545764. + + -- Steve Langasek <vorlon@debian.org> Tue, 08 Sep 2009 18:43:17 -0700 + +samba (2:3.4.0-4) unstable; urgency=low + + [ Steve Langasek ] + * debian/samba.pamd: include common-session-noninteractive instead of + common-session, to avoid pulling in modules specific to interactive + logins such as pam_ck_connector. + * debian/control: samba depends on libpam-runtime (>= 1.0.1-11) for the + above. + * rename debian/samba.pamd to debian/samba.pam and call dh_installpam + from debian/rules install, bringing us a smidge closer to a stock + debhelper build + * don't call pyversions from debian/rules, this throws a useless error + message during build. + * fix up the list of files that need to be removed by hand in the clean + target; the majority of these are now correctly handled upstream. + * debian/rules: fix the update-arch target for the case of unversioned + build-deps. + * Pull avr32 into the list of supported Linux archs. Closes: #543543. + * Fix LSB header in winbind.init; thanks to Petter Reinholdtsen for the + patch. Closes: #541367. + + [ Christian Perrier ] + * Use DEP-3 for patches meta-information + + [ Steve Langasek ] + * Change swat update-inetd call to use --remove only on purge, + and --disable on removal. + * Add missing build-dependency on pkg-config, needed to fix libtalloc + detection + * debian/patches/external-talloc-support.patch: fix the Makefile so it + works when using external talloc instead of giving a missing-depend + error. + * debian/patches/autoconf.patch: resurrect this patch, needed for the + above. + * debian/rules: build with --without-libtalloc + --enable-external-libtalloc, also needed to fix the build failure. + + -- Steve Langasek <vorlon@debian.org> Mon, 07 Sep 2009 22:58:29 -0700 + +samba (2:3.4.0-3) unstable; urgency=low + + [ Steve Langasek ] + * debian/control: samba-common-bin has no reason to depend on + libpam-modules. + + [ Christian Perrier ] + * Fix "invalid argument" when trying to copy a file from smb share + Use an upstream patch that will be included in 3.4.1 + Closes: #536757 + + -- Christian Perrier <bubulle@debian.org> Fri, 21 Aug 2009 11:08:43 +0200 + +samba (2:3.4.0-2) unstable; urgency=low + + [ Debconf translations ] + * German. Closes: #536433 + + [ Steve Langasek ] + * Enable the ldap idmap module; thanks to Aaron J. Zirbes. Closes: #536786. + + [ Jelmer Vernooij ] + * Properly rename smbstatus.1 for alternatives. Closes: #534772 + + -- Christian Perrier <bubulle@debian.org> Sun, 02 Aug 2009 12:20:51 +0200 + +samba (2:3.4.0-1) unstable; urgency=low + + [ Christian Perrier ] + * New upstream release: first upload to unstable for 3.4 + * Correct dependencies for samba-common-bin. Closes: #534595 + + [ Debconf translations ] + * Czech. Closes: #534793 + * Russian. Closes: #534796 + + -- Christian Perrier <bubulle@debian.org> Tue, 07 Jul 2009 20:42:19 +0200 + +samba (2:3.4.0~rc1-1) experimental; urgency=low + + * New upstream version. That fixes the following bugs: + - Remove pidfile on clean shutdown. Closes: #299433, #454112 + * Drop swat-de.patch that was applied upstream + * Bump debhelper compatibility level to 6 and declare a versioned + dependency on debhelper >= 6.0.0 + + -- Christian Perrier <bubulle@debian.org> Sat, 20 Jun 2009 18:43:20 +0200 + +samba (2:3.4.0~pre2-1) experimental; urgency=low + + [ Jelmer Vernooij ] + * Split binaries out of samba-common into samba-common-bin. + Closes: #524661 + + [ Christian Perrier ] + * New upstream version. That fixes the following bugs: + - Do not limit the number of network interfaces. Closes: #428618 + - Fix Connect4 in samr.idl. Closes: #526229 + * "Using samba" is back. + * Drop non-linux-ports.patch that was integrated upstream + * Drop smbpasswd-syslog.patch that was integrated upstream + * Drop smbclient-link.patch that was integrated upstream + + [ Debconf translations ] + * Italian. Closes: #529350 + + -- Christian Perrier <bubulle@debian.org> Sat, 06 Jun 2009 11:45:35 +0200 + +samba (2:3.4.0~pre1-1) experimental; urgency=low + + * New upstream pre-release + * "Using samba" is dropped from upstream source. Therefore, drop + debian/samba-doc.doc-base.samba-using + + -- Christian Perrier <bubulle@debian.org> Wed, 20 May 2009 18:50:35 +0200 + +samba (2:3.3.6-1) unstable; urgency=high + + * New upstream release. Security release. + * CVE 2009-1886: Fix Formatstring vulnerability in smbclient + * CVE 2009-1888: Fix uninitialized read of a data value + + -- Christian Perrier <bubulle@debian.org> Fri, 26 Jun 2009 18:21:51 +0200 + +samba (2:3.3.5-1) unstable; urgency=low + + [ Steve Langasek ] + * debian/patches/undefined-symbols.patch: fix up patch so that it's + suitable for submission upstream. + * debian/patches/proper-static-lib-linking.patch: apply the rules to + vfstest, ldbrename, nss_wins, pam_winbind, pam_smbpass, and + rpc_open_tcp. + + [ Debconf translations ] + * Italian. Closes: #529350 + + [ Christian Perrier ] + * New upstream version + * Lintian fixes: + - Declare versioned dependency on debhelper to fit what we have in + debian/compat + - samba.postinst: do not call mksmbpasswd with an absolute path + * Upgrade Standard to 3.8.2 (checked, no change) + * Upgrade debhelper compatibility level to 6 + + -- Christian Perrier <bubulle@debian.org> Sat, 20 Jun 2009 08:01:16 +0200 + +samba (2:3.3.4-2) unstable; urgency=low + + [ Christian Perrier ] + * Do no compile with clustering support on non-Linux platforms + Closes: #528382 + + [ Debconf translations ] + * Basque. Closes: #528757 + + -- Christian Perrier <bubulle@debian.org> Sat, 16 May 2009 17:31:09 +0200 + +samba (2:3.3.4-1) unstable; urgency=low + + [ Christian Perrier ] + * New upstream release: + - Fixed daily winbind crash when retrieving users from an ADS server + Closes: #522907. + * Add idmap_tdb2 module to winbind package + * No longer shrink "dead" code from smbd, winbindd and vfstest as it prevents + VFS modules to properly load. Closes: #524048. + + [ Debconf translations ] + * Bengali added. + + [ Steve Langasek ] + * Recommend logrotate instead of depending on it. Closes: #504219. + + -- Christian Perrier <bubulle@debian.org> Sat, 02 May 2009 10:06:16 +0200 + +samba (2:3.3.3-1) unstable; urgency=low + + * New upstream release: + - Fix map readonly. Closes: #521225 + - Add missing whitespace in mount.cifs error message. Closes: #517021 + - Includes our patch to fix detection of GNU ld version. As a + consequence, we dropped fix_wrong_gnu_ld_version_check.patch + - Fix segfault in lookup_sid. Closes: #521408 + + -- Christian Perrier <bubulle@debian.org> Sat, 11 Apr 2009 10:12:23 +0200 + +samba (2:3.3.2-2) unstable; urgency=low + + [ Steve Langasek ] + * libcap2-dev is only available on Linux, so make this build-dependency + conditional. Closes: #519911. + + [ Christian Perrier ] + * Switch samba-dbg to "Section: debug" + * Update debian/copyright for year 2009. Thanks to debian-devel + for the reminder. + * Dropping Adam Conrad from Uploaders + * Dropping Eloy Paris from Uploaders with special thanks for his tremendous + work maintaining the package between 1997 and 2004. + + [ Mathieu Parent ] + * ensure clustering is enabled with --with-cluster-support=yes + * build-depends on ctdb >= 1.0.73. Closes: #520202. + * samba suggests ctdb + + [ Debconf translations ] + * Esperanto updated. Closes: #519237. + + -- Christian Perrier <bubulle@debian.org> Sun, 29 Mar 2009 09:23:35 +0200 + +samba (2:3.3.2-1) unstable; urgency=low + + [ Christian Perrier ] + * New upstream release. Closes: #519626 + - mounts with -o guest will now automatically try to connect anonymously. + Closes: #423971. + - fix for brokenness when using 'force group'. Closes: #517760. + - fix for saving files on Samba shares using MS Office 2007. + LP: #337037. + * Re-fix slave links for manual pages in samba-common. Closes: #517204. + + [ Steve Langasek ] + * Add missing debhelper token to libpam-smbpass.prerm. + + -- Christian Perrier <bubulle@debian.org> Sun, 15 Mar 2009 12:16:48 +0100 + +samba (2:3.3.1-1) unstable; urgency=low + + [ Christian Perrier ] + * New upstream release. Closes: #516981 + Upstream fixes in that release: + - Fixed various spelling errors/typos in manpages + Closes: #516047 + - Fix renaming/deleting of files using Windows clients. + Closes: #516160 + - Fix syntax error in mount.cifs(8). Closes: #454799 + * Use a slave alternative for smbstatus.1 even though that manpage + is not provided by samba4 + + [ Jelmer Vernooij ] + * Fix slave links for manual pages in samba-common. Closes: #517204. + + [ Steve Langasek ] + * Add Vcs-{Browser,Svn} fields to debian/control. + * When populating the sambashare group, it's not an error if the user + simply doesn't exist; test for this case and let the install continue + instead of aborting. LP: #206036. + * debian/libpam-smbpass.pam-config, debian/libpam-smbpass.postinst, + debian/libpam-smbpass.files, debian/rules: provide a config block + for the new PAM framework, allowing this PAM module to + auto-configure itself + * debian/control: make libpam-smbpass depend on + libpam-runtime (>= 1.0.1-2ubuntu1) for the above + * debian/patches/fix_wrong_gnu_ld_version_check.patch: new patch to fix + wrong detection of the GNU ld version, so that the symbol export scripts + will be properly applied when building. + * refresh debian/libsmbclient.symbols for 3.3.1. + + -- Steve Langasek <vorlon@debian.org> Mon, 02 Mar 2009 00:30:35 -0800 + +samba (2:3.3.0-4) unstable; urgency=low + + [ Steve Langasek ] + * Build-Depend on libcap2-dev. Closes: #515851. + * debian/patches/fhs-filespaths-debatable.patch: Add a missing prototype + for cache_path, which causes nearly undiagnoseable crashes when building + with -fPIE, because of a wrong return type! LP: #330626. + + [ Debconf translations ] + * Belarusian added. Closes: #516052. + * Traditional Chinese updated. Closes: #516594 + * Swedish updated. Closes: #516681. + + [ Mathieu Parent ] + * enable clustering by default (CTDB). Closes: #514050 + + -- Steve Langasek <vorlon@debian.org> Tue, 24 Feb 2009 16:58:58 -0800 + +samba (2:3.3.0-3) unstable; urgency=low + + [ Steve Langasek ] + * Re-add smb.conf fixes that were dropped in the 3.3.0 merge to unstable. + * Make samba conflict with samba4, not with itself. + + [ Debconf translations ] + * Vietnamese updated. Closes: #515235. + * Slovak updated. Closes: #515240. + + -- Steve Langasek <vorlon@debian.org> Mon, 16 Feb 2009 07:15:47 -0800 + +samba (2:3.3.0-2) unstable; urgency=low + + * Upload to unstable + + -- Christian Perrier <bubulle@debian.org> Sat, 14 Feb 2009 13:38:14 +0100 + +samba (2:3.2.5-4) unstable; urgency=low + + * Fix segfault whan accessign some NAS devices running old versions of Samba + Closes: #500129 + * Fix process crush when using gethostbyname_r in several threads + Closes: #509101, #510450 + + -- Christian Perrier <bubulle@debian.org> Thu, 08 Jan 2009 05:59:17 +0100 + +samba (2:3.2.5-3) unstable; urgency=high + + * Security update + * Fix Potential access to "/" in setups with registry shares enabled + This fixes CVE-2009-0022, backported from 3.2.7 + * Fix links in HTML documentation index file. + Closes: #508388 + * Drop spurious docs-xml/smbdotconf/parameters.global.xml.new + file in the diff. Thanks to the release managers for spotting it + + -- Christian Perrier <bubulle@debian.org> Sun, 21 Dec 2008 08:09:31 +0100 + +samba (2:3.2.5-2) unstable; urgency=low + + * Fix typo in bug number in a comment for the default smb.conf file + Closes: #507620 + * Document the need to set appropriate permissions on the printer + drivers directory, in the default smb.conf file. Also change + the example group from ntadmin to lpadmin + Closes: #459243 + * Add missing rfc2307.so and sfu*.so links that prevent using the + 'winbind nss info' feature properly + Thans to Martin Dag Nilsson for reporting and Jelmer Jaarsma for + the patch. Closes: #506109 + + -- Christian Perrier <bubulle@debian.org> Sat, 13 Dec 2008 13:56:07 +0100 + +samba (2:3.2.5-1) unstable; urgency=high + + * New upstream version. Security-only release. + This addresses CVE-2008-4314: potentially leaking + arbitrary memory contents to malicious clients. + * Better document cases where using a "master" file for smb.conf + is a bad idea. Closes: #483187 + * Insert example "add machine script" and "add group script" scripts + in the default smb.conf. Closes: #349049 + * Move homepage URL to Homepage filed in debian/control + + -- Christian Perrier <bubulle@debian.org> Thu, 27 Nov 2008 11:36:35 +0100 + +samba (2:3.3.0-1) experimental; urgency=low + + * New upstream release. Fixes the following bugs: + - smb file deletion gvfs. Closes: #510564 + - smbclient du command does not recuse properly. Closes: #509258 + - mention possible workgroup field in credential files in mount.cifs(8) + Closes: #400734 + - bashism in /usr/share/doc/samba-doc/examples/perfcounter/perfcountd.init + Closes: #489656 + - describe '-g' option in smbclient man page. Closes: #510812 + - fix swat status table layout. Closes: #511275 + + [ Jelmer Vernooij ] + * Use alternatives for the smbstatus, nmblookup, net and + testparm binaries and various data files in samba-common + to allow installation of Samba 3 together with Samba 4. + * Add myself to uploaders. + + [ Christian Perrier ] + * Add mbc_getOptionCaseSensitive@Base, smbc_setOptionCaseSensitive@Base, + smbc_set_credentials@Base, smbc_urldecode@Base and smbc_urlencode@Base to + libsmbclient's symbols file with 3.3.0 as version number + * Also add 18 symbols to libwbclient0's symbols file with 3.3.0 as + version number + + -- Christian Perrier <bubulle@debian.org> Fri, 30 Jan 2009 21:41:49 +0100 + +samba (2:3.3.0~rc2-4) experimental; urgency=low + + [ Steve Langasek ] + * Revert one of the template depersonalization changes from the -2 upload, + because it loses important context + + [ Christian Perrier ] + * Use double quotation marks in debconf templates + * Add 'status" option to init scripts. Thansk to Dustin Kirkland for + providing the patch. Closes: #488275 + * Move WHATSNEW.txt, README, Roadmap to samba-common. Closes: #491997 + * [Lintian] Add ${misc:Depends} to dependencies of binary packages + that didn't have it already as we're using debhelper in the source + package + * [Lintian] Don't ignore errors in swat.postrm + * [Lintian] Fix "local foo=bar" bashisms in samba-common.dhcp, samba.config + and samba-common.config + * smb.conf.5-undefined-configure.patch: fix syntax error in smb.conf(5) + Closes: #512843 + + [ Debconf translations ] + * Asturian added. Closes: #511730 + + -- Christian Perrier <bubulle@debian.org> Sat, 24 Jan 2009 16:04:57 +0100 + +samba (2:3.3.0~rc2-3) experimental; urgency=low + + * Fix around the libsmbclient/libsmbclient-dev descriptions, which got + swapped in the last upload. + * Drop a boilerplate sentence from the samba-common, smbclient, swat, + samba-doc, samba-doc-pdf, samba-dbg, and libwbclient0 descriptions + that's not relevant for these packages. + * Hyphenate "command-line" in the smbclient short description. + * Fix up the smbclient description, which got crossed with the smbfs one. + * Fix the smbfs description, which was not actually fixed in the previous + upload. Really closes: #496206. + * Further minor adjustments to the description of the swat package. + * Fix various inaccuracies in the winbind package description. + * Clarify in the description that samba-tools are extra, only useful for + testing. + + -- Steve Langasek <vorlon@debian.org> Tue, 30 Dec 2008 18:42:05 -0800 + +samba (2:3.3.0~rc2-2) experimental; urgency=low + + [ Steve Langasek ] + * Handle clearing out netbios settings whenever the DHCP server has gone + away. Closes: #299618. + + [ Christian Perrier ] + * Point the correct document about password encryption in debconf templates + Corrected in translations as well. Closes: #502838 + * Reword debconf templates to avoid mentioning the local host as a "server". + Closes: #171177 + * Use this opportunity for other minor rewording: + - replace "SMB" by "SMB/CIFS" + - more strongly discouraging the use of plain text passwords + - unpersonnalization + * Reword the libpam-smbpass package description + Thanks to Justin B. Rye for the very useful suggestions + Closes: #496196 + * Improve the package descriptions by rewording the description overhaul + Also improve the specific information for samba and samba-dbg + Thanks again to Justin B. Rye for the invaluable help + Closes: #496200 + * Improve libsmbclient package description. Closes: #496197 + * Improve libwbclient0 package description. Closes: #496199 + * Improve samba-doc package description. Closes: #496202 + * Improve samba-tools package description. Closes: #496203 + * Improve samba-common package description. Closes: #496204 + * Improve smbclient package description. Closes: #496205 + * Improve smbfs package description. Closes: #496206 + * Improve swat package description. Closes: #496207 + * Improve winbind package description. Closes: #496208 + * Improve samba-doc-pdf package description. Closes: #496211 + * Update French debconf translation + + -- Christian Perrier <bubulle@debian.org> Mon, 29 Dec 2008 11:50:04 +0100 + +samba (2:3.3.0~rc2-1) experimental; urgency=low + + * New upstream release + + -- Christian Perrier <bubulle@debian.org> Wed, 17 Dec 2008 08:22:18 +0100 + +samba (2:3.3.0~rc1-2) experimental; urgency=low + + * Provide idmap_adex and idmap_hash in winbind. + Thanks to Jelmer Jaarsma for reporting and providing a patch + + -- Christian Perrier <bubulle@debian.org> Thu, 04 Dec 2008 19:59:23 +0100 + +samba (2:3.3.0~rc1-1) experimental; urgency=low + + * New upstream release + + -- Christian Perrier <bubulle@debian.org> Fri, 28 Nov 2008 10:51:32 +0100 + +samba (2:3.3.0~pre2-1) experimental; urgency=low + + * New upstream release. + + -- Christian Perrier <bubulle@debian.org> Fri, 07 Nov 2008 20:52:36 +0100 + +samba (2:3.2.4-1) unstable; urgency=low + + [ Steve Langasek ] + * New upstream release. + - debian/rules: we don't need to move cifs.upcall around, it's now + installed to the right place upstream. + - Fixed in this release: + - typo in cifs.upcall.8. Closes: #501499 + + [ Christian Perrier ] + * Create /var/lib/samba in samba-common. Thanks to Thierry Carrez for + the patch. Closes: #499359 + + -- Christian Perrier <bubulle@debian.org> Sat, 18 Oct 2008 08:20:31 +0200 + +samba (2:3.2.3-3) unstable; urgency=low + + [ Steve Langasek ] + * Add missing manpage for cifs.upcall; thanks to Per Olofsson for pointing + this out. Closes: #497857. + * Georgian debconf translation added. Closes: #498426 + * Polish debconf translation added. Thanks to Åukasz Paździora. + + [ Jelmer Vernooij ] + * Add ldb-tools to Suggests: of samba. Closes: #488384 + + -- Christian Perrier <bubulle@debian.org> Fri, 03 Oct 2008 20:37:19 +0200 + +samba (2:3.2.3-2) unstable; urgency=low + + [ Christian Perrier ] + * Fix FTBFS on GNU/kFreeBSD. Closes: #496880 + + -- Steve Langasek <vorlon@debian.org> Sat, 30 Aug 2008 00:46:07 -0700 + +samba (2:3.2.3-1) unstable; urgency=high + + * High-urgency upload for security fix + * New upstream release + - Fix "/usr/lib/cups/backend/smb does not try port 139 anymore by default" + Closes: #491881 + - Fix the default permissions on ldb databases. Addresses + CVE-2008-3789; closes: #496073. + - debian/rules, debian/smbfs.files: build with cifs.upcall, + newly introduced to replace cifs.spnego + - debian/rules: no more need to rename libsmbclient.so to + libsmbclient.so.0, or libwbclient.so to libwbclient.so.0 + + [ Noèl Köthe ] + * fixing lintian warning "build-depends-on-1-revision" + + -- Steve Langasek <vorlon@debian.org> Wed, 27 Aug 2008 10:19:59 -0700 + +samba (2:3.2.1-1) unstable; urgency=low + + [ Steve Langasek ] + * Build-depend on keyutils only on the linux archs. Closes: #493401. + * New patch debian/patches/shrink-dead-code.patch: throw all .o files into + a .a archive as a first pass before linking the final executables, so + that the executables don't end up with quite so much unused code bloating + the system. Not applied to net or ntlm_auth, which have particularly + hairy linking needs. Partially addresses: bug #474543; no code was + harmed in the making of this patch. + * Build-depend on libcups2-dev | libcupsys2-dev, to facilitate backports. + + [ Christian Perrier ] + * New upstream release + - Fix trusted domain handling in Winbindd. Closes: #493752 + - Fix for print jobs that continued to show as active after printing + had completed. Closes: #494899. + + -- Steve Langasek <vorlon@debian.org> Thu, 14 Aug 2008 16:13:24 -0700 + +samba (2:3.2.0-4) unstable; urgency=low + + * Brown paper bag bug: add a change to debian/patches/fhs-filespaths.patch + that went missing somehow, causing samba to look for secrets.tdb in + /etc/samba instead of /var/lib/samba where it's been for years. No + migration handling added, because this was only present in unstable for + about a day. Thanks to Rick Nelson for pointing this out. + + -- Steve Langasek <vorlon@debian.org> Mon, 21 Jul 2008 17:39:48 -0700 + +samba (2:3.2.0-3) unstable; urgency=low + + * Upload to unstable. + * debian/patches/proper-static-lib-linking.patch: fix SMB_LIBRARY macro + and Makefile.in to properly avoid linking .a libraries into other .a + libraries, since this bloats the libraries without providing any useful + functionality. + * Version the build-dependency on libtalloc-dev, to ensure we're building + against a package with the right symbols. + * Add debian/libsmbclient.symbols and debian/libwbclient0.symbols, to get + more fine-grained versioned library dependencies + * Bump the shlibs version for libsmbclient to 2:3.2.0, as new symbols + have been added. + * Re-add docs/registry to samba-doc, restored upstream + * Move schannel_store.tdb out of /etc/samba to /var/lib/samba, where it + belongs according to the FHS. Closes: #454770. + + -- Steve Langasek <vorlon@debian.org> Sun, 20 Jul 2008 15:38:10 -0700 + +samba (2:3.2.0-2) experimental; urgency=low + + * Fix up the copyright file to correctly document that we're now under + GPLv3, not GPLv2. + + -- Steve Langasek <vorlon@debian.org> Tue, 08 Jul 2008 12:21:47 -0700 + +samba (2:3.2.0-1) experimental; urgency=low + + [ Christian Perrier ] + * New samba-tools package to provide all "torture" tools: + smbtorture msgtest masktest locktest locktest2 nsstest vfstest + pdbtest talloctort replacetort tdbtorture smbconftort + * Upgrade Standard to 3.8.0 (checked) + * Merged from unstable: + * Drop "invalid users = root" from the default smb.conf file + as it differs from upstream's behaviour and upstream is fairly + noisy about this choice of ours. Closes: #462046 + * Drop commented "guest account = nobody". This is already upstream's + default + * Remove versioned Build-Depends when satisfied in etch (actually all + versioning in Build-Depends) + * Remove Conflicts with non-existing packages + * Drop dpkg-dev and binutils from Build-Depends, since the versioned + build-dep is no longer needed and these are both Build-Essential + * Mini-policy for settings in smb.conf: + - don't explicitly set settings to their default value + - commented settings with the default value are commented with "#" + - commented settings with a non-default value are commented with ";" + * Apply this policy to "socket options". Closes: #476104 + * No longer gratuitously use /usr/lib/libsmbclient.so.0.1 but a more logical + libsmbclient.so.0 as upstream doesn't assign versions + * Add idmap_*(8) man pages (idea taken from SerNet packages) + * Create the entire set of directories needed by clients for + Point-and-Click printing (including old clients!) in + /var/lib/samba/printers (idea taken from SerNet packages) + * Update copyright and README.debian information for current and past + maintainers. Remove redundant mention of Tridge (the copyright is enough) + * Add doc-base files for samba-doc-pdf. Closes: #451685 + * add a soft dependency on slapd in init script to allow + proper operation when dependency-based boot sequence is enabled. + Thanks to Petter Reinholdtsen for reporting and providing a patch + Closes: #478800 + * Rename libcupsys2-dev to libcups2-dev in build dependencies + * Localize SWAT in German. Closes: #487681 + + [ Debconf translations ] + * Merged from unstable: + * Kurdish. Closes: #480151 + * Romanian updated. Closes: #488709. + + [ Steve Langasek ] + * New upstream release + * Merged from unstable: + * debian/patches/no-unnecessary-cups.patch: don't try to connect to a + cups server when we know that no printers are configured. + Closes: #479512. + + [ Jelmer Vernooij ] + * Merged from unstable: + * Fix bashism in smbtar. (Closes: #486056) + + [ Peter Eisentraut ] + * Merged from unstable: + * Removed myself from Uploaders + + -- Christian Perrier <bubulle@debian.org> Sun, 06 Jul 2008 09:59:07 +0200 + +samba (2:3.2.0~rc2-1) experimental; urgency=low + + [ Christian Perrier ] + * New upstream release + + [ Steve Langasek ] + * Enable building of cifs.spnego for the smbfs package, adding a + build-dependency on keyutils-dev, to allow kerberos-based authentication + of cifs mounts. Closes: #480663, LP: #236830. + + -- Christian Perrier <bubulle@debian.org> Thu, 12 Jun 2008 17:17:38 +0200 + +samba (2:3.2.0~rc1-2) experimental; urgency=low + + * Reupload to experimental. Sigh. + + -- Christian Perrier <bubulle@debian.org> Sat, 31 May 2008 11:08:14 +0200 + +samba (1:3.2.0~rc1-1) unstable; urgency=low + + * New upstream version + * debian/samba-doc.doc-base.samba-using: index file is no named toc.html + + -- Christian Perrier <bubulle@debian.org> Fri, 30 May 2008 20:22:57 +0200 + +samba (1:3.2.0~pre3-1) experimental; urgency=low + + * New upstream version + * debian/patches/fix-manpage-htmlchars.patch: dropped as fixed upstream + * docs/registry removed from samba-doc as missing from upstream tarball + (upstream bug #5421) + * debian/samba-doc.doc-base.samba-using: The index (and only) file + is now book.html + + -- Christian Perrier <bubulle@debian.org> Sat, 26 Apr 2008 08:20:21 +0200 + +samba (1:3.2.0~pre2-2) experimental; urgency=low + + [ Christian Perrier ] + * Upload to experimental with an epoch as the earlier version + accidentally went to unstable. + + [ Peter Eisentraut ] + * Removed myself from Uploaders + + -- Christian Perrier <bubulle@debian.org> Sun, 06 Apr 2008 20:38:35 +0200 + +samba (3.2.0~pre2-1) unstable; urgency=low + + * New upstream (pre-)release. It closes the following bugs: + - typos in net.8. Closes: #460487, #460491 + - mention insmb.conf(5) that logging still occurs when + "syslog only" is enabled and "syslog=0". Closes: #311300 + - bad link in HTML docs. Closes: #358479 + - enhance a useless and confusing debug message in pdb_ldap + Closes: #448546 + - mention the correct default debug level in smbclient(1) + Closes: #292371 + - no longer mention that "ip" parameter can use the host name + in mount.cifs(8). Closes: #296057 + - wrong spelling of "its own" in source comments fixed + Closes: #448686 + - fix "ldapsam_getgroup: Did not find group" debug message + Closes: #448546 + - fix smbclient(1): useless use of cat. Closes: #429349 + + [ Steve Langasek ] + * debian/patches/fix-manpage-htmlchars.patch: patch all the manpages from + 3.2.0pre2, which ended up with html entity encodings embedded in them + by mistake. This patch is expected to go away again for 3.2.0pre3. + * fix up the FHS patches for the new upstream release: + - debian/patches/fhs-newpaths.patch has been merged upstream, drop it. + - debian/patches/fhs-filespaths.patch has been mostly applied; only one + path usage remains inconsistent, and a new .tdb has been added with + the wrong path so fix this up here too. + - debian/patches/fhs-filespaths-debatable.patch: updated for some new + uses of lock_path() which we map to cache_path(). + - debian/patches/fhs-assignpaths.patch: patch source/m4/check_path.m4 + instead of source/configure.in. + * debian/patches/smbstatus-locking.patch: merged upstream + * debian/patches/smbpasswd-syslog.patch: updated to account for new + calls to logging functions + * Handle the new libraries available in samba 3.2: ship libwbclient as a + shared library, link against the system libtalloc (adding a + build-dependency on libtalloc-dev - which is actually sort of kludgy + because this only works as long as the system libtalloc has the same + soname as the one within the samba tree, this should be fixed to + properly build against the system libtalloc), and suppress generation + of the tdb and netapi libraries which aren't useful to us right now. + + -- Christian Perrier <bubulle@debian.org> Wed, 05 Mar 2008 22:45:28 +0100 + +samba (2:3.0.31-1) unstable; urgency=medium + + * New upstream release + + -- Christian Perrier <bubulle@debian.org> Sat, 12 Jul 2008 16:57:09 +0200 + +samba (2:3.0.30-4) unstable; urgency=low + + [ Christian Perrier ] + * Rename libcupsys2-dev to libcups2-dev in build dependencies + * Localize SWAT in German. Closes: #487681 + + [ Jelmer Vernooij ] + * Fix bashism in smbtar. (Closes: #486056) + + [ Jamie Strandboge ] + * debian/patches/upstream_bug5517.patch: adjust cli_negprot() to properly + calculate buffer sizes. This bug was introduced in the fix for + CVE-2008-1105. Closes: #488688 + + [ Debconf translations ] + * Romanian updated. Closes: #488709. + + -- Christian Perrier <bubulle@debian.org> Sun, 06 Jul 2008 11:43:53 +0200 + +samba (2:3.0.30-3) unstable; urgency=low + + [ Christian Perrier ] + * add a soft dependency on slapd in init script to allow + proper operation when dependency-based boot sequence is enabled. + Thanks to Petter Reinholdtsen for reporting and providing a patch + Closes: #478800 + + [ Steve Langasek ] + * debian/patches/no-unnecessary-cups.patch: don't try to connect to a cups + server when we know that no printers are configured. Closes: #479512. + + -- Christian Perrier <bubulle@debian.org> Tue, 10 Jun 2008 21:03:51 +0200 + +samba (2:3.0.30-2) unstable; urgency=high + + * Brown paper bag releae with epoch increased after yet another + accidental upload of 3.2.0 to unstable. Sigh and apologies to + autobuilders. + + -- Christian Perrier <bubulle@debian.org> Sat, 31 May 2008 12:08:50 +0200 + +samba (1:3.0.30-1) unstable; urgency=high + + * New upstream release: fix a heap overflow when parsing SMB responses in + client code. (CVE-2008-1105). Closes: #483410 + + -- Christian Perrier <bubulle@debian.org> Wed, 28 May 2008 22:38:44 +0200 + +samba (1:3.0.29-1) unstable; urgency=low + + * New upstream release + + -- Christian Perrier <bubulle@debian.org> Thu, 22 May 2008 07:31:55 +0200 + +samba (1:3.0.28a-3) unstable; urgency=low + + * The "bug hunting at SambaXP" release + * Drop "invalid users = root" from the default smb.conf file + as it differs from upstream's behaviour and upstream is fairly + noisy about this choice of ours. Closes: #462046 + * Drop commented "guest account = nobody". This is already upstream's + default + * Remove versioned Build-Depends when satisfied in etch (actually all + versioning in Build-Depends) + * Remove Conflicts with non-existing packages + * Drop dpkg-dev and binutils from Build-Depends, since the versioned + build-dep is no longer needed and these are both Build-Essential + * Mini-policy for settings in smb.conf: + - don't explicitly set settings to their default value + - commented settings with the default value are commented with "#" + - commented settings with a non-default value are commented with ";" + * Apply this policy to "socket options". Closes: #476104 + * No longer gratuitously use /usr/lib/libsmbclient.so.0.1 but a more logical + libsmbclient.so.0 as upstream doesn't assign versions + * Add idmap_*(8) man pages (idea taken from SerNet packages) + * Create the entire set of directories needed by clients for + Point-and-Click printing (including old clients!) in + /var/lib/samba/printers (idea taken from SerNet packages) + * Update copyright and README.debian information for current and past + maintainers. Remove redundant mention of Tridge (the copyright is enough) + * Add doc-base files for samba-doc-pdf. Closes: #451685 + * Kurdish debconf translation. Closes: #480151 + + -- Christian Perrier <bubulle@debian.org> Wed, 16 Apr 2008 23:14:46 +0200 + +samba (1:3.0.28a-2) unstable; urgency=low + + [ Peter Eisentraut ] + * Removed myself from Uploaders + + [ Steve Langasek ] + * debian/patches/manpage-encoding.patch: fix up the manpage synopses to + not use embedded iso8859-1 non-break spaces, there is a roff escape + sequence that we should use instead. Closes: #470844. + + [ Christian Perrier ] + * Reupload with an epoch to supersede an accidental upload of 3.2.0 + in unstable + + -- Christian Perrier <bubulle@debian.org> Sat, 05 Apr 2008 11:59:23 +0200 + +samba (3.0.28a-1) unstable; urgency=low + + [ Christian Perrier ] + * New upstream release. This fixes the following Debian bugs: + - Prevent nmbd from shutting down when no network + interfaces can be located. Closes: #433449 + * Debian patches dropped as applied upstream: + - make-distclean.patch + - linux-cifs-user-perms.patch + - cifs-umount-same-user.patch + - get_global_sam_sid-non-root.patch + - chgpasswd.patch + - cups.patch + * Fix doc-base section from Apps/Net to Network + * Fix copyright in debian/copyright + * Updated Standards-Version to 3.7.3 (no changes needed) + * [Lintian] No longer use -1 revision for the libacl-dev build + dependency + + [ Steve Langasek ] + * Merge smb.conf changes from Ubuntu: + - correct an inconsistency inthe winbind enum comment + - correct default and example settings to use the canonical names for all + options, rather than historical synonyms + - clarify the comment for 'max log size'. + Thanks to Chuck Short and Richard Laager. + * Add an additional sed command to samba-common.postinst to cleverly + pick up any shares that have been appended to the default smb.conf + and exclude them from the ucf diff. + + -- Christian Perrier <bubulle@debian.org> Fri, 14 Mar 2008 21:28:16 +0100 + +samba (3.0.28-4) unstable; urgency=low + + [ Steve Langasek ] + * Brown paper bag: fix samba-common.files to list all of the smb.conf + templates, not just the current one. Closes: #470138. + * Drop debian/patches/gcc42-arm-workaround.patch, which should have been + dropped in the previous upload + + -- Steve Langasek <vorlon@debian.org> Sun, 09 Mar 2008 04:09:26 -0700 + +samba (3.0.28-3) unstable; urgency=low + + * Drop the arm optimization workaround, as the compiler is now reported + to be fixed. + * Add missing eventlogadm(8) manpage. + * Refresh the list of Linux architectures from type-handling, to pick up + libacl-dev on armel. Closes: #465121. + * Convert handling of smb.conf to use ucf, so that we can sanely manage + syntax changes going forward. + * In the process, fix the dhcp handling to allow proper reconfiguration + via debconf. + + [ Debconf translations ] + * Indonesian added. Closes: #469976 + + -- Steve Langasek <vorlon@debian.org> Sat, 08 Mar 2008 17:11:16 -0800 + +samba (3.0.28-2) unstable; urgency=low + + [ Steve Langasek ] + * Drop some further code in samba-common.postinst that's specific to + pre-3.0 upgrades. + * Make the mount.smbfs wrapper a bash script instead of a POSIX sh script, + so we can use bash array variables and cope with arguments containing + embedded spaces (such as share names). Thanks to Julian Gilbey + <jdg@debian.org> for the patch. Closes: #457105. + * debian/patches/gcc42-arm-workaround.patch: work around an arm compiler + problem by building rpc_parse/parse_prs.o with -O0 on this architecture. + Thanks to Martin Michlmayr for helping to pin down the problem file. + Closes: #445566. + * mount.smbfs: map the smbfs "guest" option to "guest,sec=none", which is + a closer approximation of the semantics with cifs. + + -- Christian Perrier <bubulle@debian.org> Sat, 05 Jan 2008 09:46:06 +0100 + +samba (3.0.28-1) unstable; urgency=high + + * New upstream release. Security fix + * Fix a remote code execution vulnerability when running as a domain + logon server (PDC or BDC). (CVE-2007-6015) + + -- Christian Perrier <bubulle@debian.org> Tue, 11 Dec 2007 00:12:11 +0530 + +samba (3.0.27a-2) unstable; urgency=low + + * debian/patches/disable-weak-auth.patch: disable plaintext authentication + on the client, and lanman authentication on both client and server, by + default since these are only needed for Win9x or Samba with encrypted + passwords disabled and are potential password attack vectors. This + change is backported from Samba 3.2. LP: #163194. + * Don't build the userspace tools for the deprecated smbfs kernel driver + anymore; instead, use a shell wrapper around mount.cifs that translates + option names between the smbfs and cifs drivers. + Closes: #169624, #256637, #265468, #289179, #305210, #410075; + LP: #29413 + * debian/panic-action: detect when we're on an Ubuntu system and direct bug + reporters to Launchpad instead of to the Debian BTS. Closes: #452940. + * debian/samba.init: call log_progress_msg separately for each daemon on + stop rather than passing a second arg to log_daemon_msg, for greater + compatibility with both Debian and Ubuntu LSB initscript implementations. + Closes: #453350. + * Drop smbldap-tools to Suggests:, consistent with the textbook meaning of + recommends/suggests which is now implemented correctly in apt. + Closes: #453144. + * Get rid of the build-dependency on type-handling: + - add a new target, "update-archs", to be invoked by hand to refresh + the list of known Linux architectures for the libacl1-dev + build-dep; this avoids the clean target making changes to + debian/control + - rework the sed line so that it works in-place on debian/control, + so we can get rid of debian/control.in as well and just update + debian/control directly + Closes: #340570. + + -- Steve Langasek <vorlon@debian.org> Tue, 04 Dec 2007 18:35:29 -0800 + +samba (3.0.27a-1) unstable; urgency=low + + [ Steve Langasek ] + * New upstream release + - fix regression with smbfs clients, introduced by the security fix in + 3.0.27. Closes: #451839. + - debian/patches/cifs-umount-trailing-slashes.patch: merged upstream. + * Drop the deprecated "printer admin" example from the default smb.conf. + Closes: #451273. + * Add a *new* debian/patches/cups.patch to *enable* cups as the default + printing system, because since the original introduction of this patch + in Debian there was a regression upstream that caused cups to never be + selected as the default print system. + * Set the default value for the workgroup question to "WORKGROUP" in + samba-common.templates, not just in the template smb.conf, so that the + debconf question comes out right every time; and always treat this + as a high-priority debconf question instead of selecting the + priority based on whether there's an existing value, since there's + now *always* an existing value but the value doesn't tell us + anything meaningful about the user's preference. Closes: #451271. + * Drop some code from samba.postinst that only applies to upgrades from + pre-3.0 (i.e., pre-sarge) packages + + [ Christian Perrier ] + * Update the "built by" part of README.debian + * Remove the very outdated parts of README.debian + + -- Steve Langasek <vorlon@debian.org> Fri, 23 Nov 2007 13:04:52 -0800 + +samba (3.0.27-1) unstable; urgency=low + + * New upstream version + - fixes a remote code execution vulnerability when running nmbd as a + WINS server. (CVE-2007-5398; closes: #451385) + - fixes a buffer overflow in nmbd when running as a domain controller + during processing of GETDC logon server requests. (CVE-2007-4572) + + [ Steve Langasek ] + * fhs.patch: net usershares should also be stored under /var/lib, not under + /var/run. No transition handling in maintainer scripts, since this + feature is not activated by default. + * get_global_sam_sid-non-root.patch: avoid calling get_global_sam_sid() + from smbpasswd -L or pam_smbpass when running as non-root, to avoid a + foreseeable panic. Closes: #346547, #450738. + * usershare.patch: enable "user shares" by default in the server with a + default limit of 100, to support user shares on both upgrades and new + installs with no need to munge config files. Thanks to Mathias Gug + <mathiaz@ubuntu.com> for the patch. Closes: #443230. + * On Ubuntu, support autopopulating the sambashare group using the existing + members of the admin group; no equivalent handling is done on Debian, + because there doesn't seem to be an appropriate template group we can use + that wouldn't be considered a privilege escalation for those users. + * Update Samba to explicitly use the C locale when doing password changes, + to account for Linux-PAM's recently adopted i18n support. + Closes: #451272. + * Enforce creation of the pid directory (/var/run/samba) in the samba + init script, for compatibility with systems that use a tmpfs for + /var/run. Closes: #451270. + * debian/patches/cups.patch, debian/NEWS: drop the patch to force bsd + as the default printing system, as CUPS is now the dominant/default + printing system for Linux. + + [ Debconf translations ] + * Hebrew added. Closes: #444054 + + [ Christian Perrier ] + * Split fhs.patch into 3 separate patches to make upstream integration + easier: + - fhs-newpaths.patch: introduce new paths + - fhs-filespaths.patch: assign files to new paths + - fhs-assignpaths.patch: assign paths to FHS-compatible locations + * Compile with DNS update support. Thanks to Matthias Gug for + reporting and contributions from Launchpad's #156686 + Closes: #449422 + + -- Steve Langasek <vorlon@debian.org> Thu, 15 Nov 2007 11:46:17 -0800 + +samba (3.2.0~pre1-1) experimental; urgency=low + + * New upstream (pre-)release + + [ Steve Langasek ] + * fhs.patch: net usershares should also be stored under /var/lib, not under + /var/run. No transition handling in maintainer scripts, since this + feature is not activated by default. + * Update smbstatus-locking.patch to use db_open() instead of + tdb_open(), per upstream recommendation. + * Use talloc_strdup() and talloc_asprintf() instead of static strings in + data_path(), state_path(), and cache_path(), as suggested by Volker + Lendecke. + + [ Debconf translations ] + * Hebrew added. Closes: #444054 + + [ Christian Perrier ] + * Split fhs.patch into 4 separate patches to make upstream integration + easier: + - fhs-newpaths.patch: introduce new paths + - fhs-filespaths.patch: assign files to new paths + - fhs-filespaths-debatable.patch: assign files to new paths (part that + seems more difficult to be integrated upstream) + - fhs-assignpaths.patch: assign paths to FHS-compatible locations + + -- Christian Perrier <bubulle@debian.org> Sun, 21 Oct 2007 09:14:42 +0200 + +samba (3.0.26a-1) unstable; urgency=low + + * New upstream release. + * Remove the samba-common/unsupported-passdb debconf template and + the associated code in samba-common.postinst, that deals with pre-etch + versions transition + * Remove the samba/tdbsam template and the remaining line referencing + it (for no need) in samba.postinst. That code was removed in 3.0.23c-2 + and was dealing with pre-3.0 transitions. + + -- Christian Perrier <bubulle@debian.org> Sun, 16 Sep 2007 10:16:29 +0200 + +samba (3.0.26-1) unstable; urgency=high + + * New upstream release: security update for CVE-2007-4138: + incorrect primary group assignment for domain users using the rfc2307 or + sfu winbind nss info plugin. + + -- Christian Perrier <bubulle@debian.org> Tue, 11 Sep 2007 19:16:32 +0200 + +samba (3.0.25c-1) unstable; urgency=low + + [ Noèl Köthe ] + * new upstream released from 2007-08-20 + - added smbfs deprecation information to help and manpage + Closes: #360384 + - fixed winbind leaking file descriptors + Closes: #410663 + - fixed smbpasswd fails with errorcode SUCCESS as normal user + Closes: #155345 + + [ Christian Perrier ] + * Drop the (upstream unmaintained) python bindings (python-samba package) + * swat: turn the dependency on samba-doc to a Recommends: + Thanks to Peter Eisentraut for dealing with that issue and bringing it + back. Closes: #391742 + + -- Christian Perrier <bubulle@debian.org> Sun, 26 Aug 2007 14:57:16 +0200 + +samba (3.0.25b-2) unstable; urgency=low + + [ Steve Langasek ] + * Don't start nmbd if 'disable netbios' is set in the config. + Closes: #429429. + * missing_userspace_bugzilla999.patch: always use opt_gid and opt_uid, + set to those of the invoking user, when called as non-root. + Closes: #431661. + * Fix up fhs.patch for some new FHS regressions: + - make sure all references to winbindd_idmap.tdb look in /var/lib/samba + - make sure all references to winbindd_cache.tdb look in /var/cache/samba + - share_info.tdb belongs in /var/lib/samba; this is a regression + introduced in 3.0.23-1, so fix up this path on samba upgrade + - move the ADS "gpo" cache directory to /var/cache/samba + - move idmap_cache.tdb to /var/cache/samba, and fix up the path on + winbind upgrade + * linux-cifs-user-perms.patch: also support setting a default uid and gid + value when mount.cifs is called as non-root + * cifs-umount-trailing-slashes.patch: canonicalize mount point names when + umount.cifs is called, to avoid unnecessarily leaving entries behind in + /etc/mtab if invoked with a trailing slash in the mount point name + * cifs-umount-same-user.patch: the CIFS_IOC_CHECKMOUNT ioctl check + in umount.cifs assumed that errors would return a value > 0, when in fact + the return value on failure is -1. Correct this assumption, which was + allowing any user to unmount shares mounted by other users. + * smbpasswd-syslog.patch: Fix pam_smbpass to no longer call openlog() + and closelog(), since this will interfere with syslogging behavior + of the calling application. Closes: #434372. + * swat should depend only on inet-superserver, not update-inetd, per + Marco d'Itri. + + [ Christian Perrier ] + * debian/panic-action: bail out if there's no "mail" command + Patch from the Ubuntu samba packagers. + * debian/smb.conf: use the comment from Ubuntu package for the "valid users" + setting of [homes] as a basis for ours. Ubuntu's wording is better. + + [ Peter Eisentraut ] + * Don't ignore errors from make distclean, as per lintian check + + [ Debconf translations ] + * Gujarati updated. Closes: #436215 + + -- Steve Langasek <vorlon@debian.org> Fri, 17 Aug 2007 18:38:58 -0700 + +samba (3.0.25b-1) unstable; urgency=low + + * New upstream version + * Bugs fixed upstream: + - correct default mentioned for "store dos attribute" in smb.conf(5) + Closes: #367379 + - fix typo in pdbedit.c. Closes: #421758 + - fixed crashes in idmap_rid. Closes: #428411 + - misleading documentation in smb.conf(5). Closes: #218477 + - don't crash when no eventlog names are defined in smb.conf + Closes: #424683 + - typography errors in manpages. Closes: #427865, #418811 + - fix compilation and linking of pam_smbpass.so. Closes: #430755 + * Drop patches that have been applied upstream: + - nmbd-signalling.patch + + -- Christian Perrier <bubulle@debian.org> Wed, 27 Jun 2007 15:12:13 +0200 + +samba (3.0.25a-2) unstable; urgency=low + + [ Debconf translations ] + * Danish updated. Closes: #426773 + + [ Christian Perrier ] + * Clean out some remaining cruft that is not deleted + by "make clean". Taken from Ubuntu patches. + * Add missing userspace patches to properly pass uid and gid with 2.6 + kernels. See #408033 and upstream's #999 for rationale + * Drop smbmount-unix-caps.patch as workaraound for #310982 as the issue + is fixed in 2.4 and 2.6 kernels (2.6 kernels need + missing_userspace_bugzilla999.patch, though) + Closes: #408033 + * Add the samba-common and winbind packages to samba-dbg to get + debugging symbols for winbindd, net, etc. + * Replace all occurrences of ${Source:Version} by ${$binary:Version} in + dependencies. All these were Arch:any depending on Arch:any (the only + Arch:any depending on Arch:all already used ${source:Version} + + [ Steve Langasek ] + * Update samba.config to not override user preference on passdb.tdb + creation after initial configuration. Closes: #350926. + * Drop the last vestiges of the unified samba.patch; this reverts the + change for bug #112195 which it's been determined has no actual security + benefits, and drops the fix for bug #106976 which is superseded + upstream. + + [ Debconf translations ] + * Vietnamese updated. Closes: #426979. + + -- Christian Perrier <bubulle@debian.org> Wed, 13 Jun 2007 15:47:06 +0200 + +samba (3.0.25a-1) unstable; urgency=low + + [ Christian Perrier ] + * New upstream version + * Bugs fixed upstream: + - password expiration loog on samba domain controllers. Closes: #425083 + - no more login on samba servers that are members of samba domains + Closes: #425680, #426002 + - users no longer have access according to their secondary groups + on shares with "force group". Closes: #424629 + * Debian packaging fixes: + - Enforce building with "--with-ads" and therefore fail + when the build can't be done with kerberos support. + Closes: #424637 + - debian/control: wrap long lines in packages' descriptions + - uncomment out use of type-handling in the clean target, because + type-handling has been fixed to support the new /usr/share/dpkg/ostable + - avoid installing extra COPYING files in /usr/share/doc/* (one was + installed along with the pcap2nbench example) + * Merge Ubuntu changes: + - use of PIDDIR instead of hardcoding it in samba.init and winbind.init + * Patches to upstream source: + - patches/fhs.patch: recreate winbindd_cache.tdb in the cache directory + instead of the lock directory. Thanks to C. K. Jester-Young for the + patch. Closes: #425640 + + [ Steve Langasek ] + * swat and samba depend on update-inetd instead of on netbase; swat also + depends on "openbsd-inetd | inet-superserver", for samba this is only a + Suggests. + + -- Christian Perrier <bubulle@debian.org> Sun, 27 May 2007 09:30:02 +0200 + +samba (3.0.25-1) unstable; urgency=high + + * New upstream version including security fixes + * Bugs fixed upstream: + - nmbd no longer segfaults on bad interface line + Closes: #265577, #386922, #359155, #366800 + - documentation issues about displaycharset. Closes: #350790 + - documentation makes it clear that case options such as + "default case" can only be set on a per-share basis. + Closes: #231229 + - all occurrences of "encypt" fixed in smb.conf(5) + Closes: #408507 + - two typos on "account" fixed in source/passdb/pdb_ldap.c and + source/utils/pdbedit.c. Closes: #402392 + - no longer panic when using the (deprecated) "only user" option + in user level security. Closes: #388282 + - CVE-2007-2444 (User privilege elevation because of a local SID/Name + translation bug) + - CVE-2007-2446 (Multiple heap overflows allow remote code execution) + - CVE-2007-2447 (Unescaped user input parameters are passed as + arguments to /bin/sh allowing for remote command + execution) + + [ Debconf translations ] + * Marathi added. Closes: #416802 + * Esperanto added. Closes: #417795. + * Basque updated. Closes: #418196. + * Wolof updated. Closes: #421636 + + [ Christian Perrier ] + * /etc/dhcp3/dhclient-enter-hooks.d/samba tests for /etc/init.d/samba + before running invoke-rc.d. Closes: #414841 + + [ Steve Langasek ] + * Comment out use of type-handling in the clean target, because + type-handling is currently broken in unstable and clean shouldn't be + editing debian/control anyway. + + -- Christian Perrier <bubulle@debian.org> Mon, 14 May 2007 10:30:15 +0200 + +samba (3.0.24-6) unstable; urgency=high + + * Arrrgh, cut'n'paste error in the regexp in the last upload, so the bug + is still present :/ Fix a missing ] in the regexp for passdb backend + checking, really-closes: #415725. + + -- Steve Langasek <vorlon@debian.org> Sat, 24 Mar 2007 03:32:46 -0700 + +samba (3.0.24-5) unstable; urgency=high + + * The "see what you get for trusting the quality of my packages, + release team? Release team, please unblock this package" release. + * High-urgency brown-paper-upload for etch-targetted fix for + regression introduced in the last version + + [ Steve Langasek ] + * Fixed the regexp used for matching broken passdb backend settings, + since we were getting false positives on *all* values. :/ The + correct match should be: one or more non-space, non-comma + characters, followed by a space or a comma, followed by zero or more + spaces, followed by one or more non-space characters. Closes: #415725. + + [ Debconf translations ] + * Nepali + * Korean; closes: #414883. + * Russian + * Arabic + * Portuguese + * Greek. Closes: #415122 + * Norwegian Nynorsk added. + * Marathi added. Closes: #416802 + + -- Steve Langasek <vorlon@debian.org> Wed, 21 Mar 2007 13:49:46 -0700 + +samba (3.0.24-4) unstable; urgency=medium + + [ Steve Langasek ] + * Documentation fix for a problem affecting upgrades from sarge: if + passdb backend is still a comma- or space-separated list after any + attempts at automatic fix-ups, throw a debconf error notifying the + user that they'll need to fix this manually. Closes: #408981. + + [ Debconf translations ] + * French + * Spanish + * Galician; closes: #414605. + * Swedish; closes: #414610. + * Brazilian Portuguese; closes: #414603. + * German; closes: #414630. + * Norwegian BokmÃ¥l; closes: #414619. + * Bulgarian; closes: #414624. + * Romanian; closes: #414629. + * Tagalog; closes: #414637. + * Khmer; closes: #381833. + * Thai; closes: #414664. + * Slovak; closes: #414665. + * Slovenian + * Simplified Chinese; closes: #414671. + * Japanese; closes: #414673. + * Hungarian; closes: #414677. + * Dzongkha; closes: #414680. + * Estonian; closes: #414679. + * Catalan + * Malayalam; closes: #414728 + * Traditional Chinese; closes: #414730 + * Turkish + * Italian; closes: #414708 + * Finnish; closes: #414736 + * Dutch; closes: #414741 + * Albanian; closes: #414778. + * Czech; closes: #414793. + + -- Steve Langasek <vorlon@debian.org> Tue, 13 Mar 2007 16:29:21 -0700 + +samba (3.0.24-3) unstable; urgency=low + + [ Christian Perrier ] + * Merge some Ubuntu changes: + - do not expose the Samba version anymore + - default workgroup set to WORKGROUP (default workgroup of + Windows workstations) + * Fix FTBFS on GNU/kFreeBSD. Thanks to Petr Salinger for the patch + Closes: #394830 + * Add commented "winbind enum*" settings in smb.conf + This will point users to these important settings which changed + their default behaviour between sarge and etch. Closes: #368251 + + [ Steve Langasek ] + * samba-common.dhcp: support creating /etc/samba/dhcp.conf the first + time the script is called if the dhcp client was already running at + the time of install, and manually reload samba to get the updated + config files read. Thanks to Bas Zoetekouw for the patch. + Closes: #407408. + * While we're at it, use atomic replace for /etc/samba/dhcp.conf just + in case someone else reloads samba while the script is running. Low + impact, low-risk change. + + -- Steve Langasek <vorlon@debian.org> Sun, 11 Mar 2007 23:34:10 -0700 + +samba (3.0.24-2) unstable; urgency=low + + * Re-upload with a proper .orig.tar.gz. + + -- Steve Langasek <vorlon@debian.org> Mon, 5 Feb 2007 19:55:34 -0800 + +samba (3.0.24-1) unstable; urgency=high + + * New upstream release, security update + * Fixes for the following security advisories: + - Directly affecting Debian: + - CVE-2007-0452 (Potential Denial of Service bug in smbd) + - Not affecting Debian: + - CVE-2007-0453 (Buffer overrun in NSS host lookup Winbind + NSS library on Solaris) + - CVE-2007-0454 (Format string bug in afsacl.so VFS plugin) + * Correct paths for the documentation pointers in the default smb.conf + file. Thanks to Ted Percival for his care reporting this. Closes: #408898 + + -- Christian Perrier <bubulle@debian.org> Mon, 5 Feb 2007 05:27:07 +0100 + +samba (3.0.23d-4) unstable; urgency=low + + * Debconf translation updates: + - Slovenian added. + + -- Christian Perrier <bubulle@debian.org> Wed, 3 Jan 2007 08:43:50 +0100 + +samba (3.0.23d-3) unstable; urgency=low + + * Debconf translation updates: + - Malayalam added. Closes: #403107 + - Tamil added. Closes: #403353 + + -- Christian Perrier <bubulle@debian.org> Mon, 1 Jan 2007 10:17:18 +0100 + +samba (3.0.23d-2) unstable; urgency=low + + * Build-Conflicts: libfam-dev to avoid problems accessing shares + when using GAMIN. Closes: #400617 + * Lintian fixes: + - Run debconf-updatepo in the clean target to ensure up-to-date PO + and POT files + - debian/patches/no_unbreakable_spaces_in_man.patch: + Replace all non-breakable spaces by regular spaces in man pages. + They are encoded in ISO-8859-1 which is not recommended in man pages. + This should be submitted upstream. + - reformat too long lines in package description + + -- Christian Perrier <bubulle@debian.org> Sun, 3 Dec 2006 09:39:29 +0100 + +samba (3.0.23d-1) unstable; urgency=low + + * new upstream release (2006-11-15) + + [ Noèl Köthe ] + * updated documentation.patch for 3.0.23d + * updated non-linux-ports.patch for 3.0.23d + * updated adapt_machine_creation_script.patch for 3.0.23d + * updated autoconf.patch for 3.0.23d + + [ Debconf translations ] + * Added Bosnian. Closes: #396634 + * Added Bulgarian. Closes: #397773 + + -- Noèl Köthe <noel@debian.org> Thu, 16 Nov 2006 13:55:26 +0100 + +samba (3.0.23c-4) unstable; urgency=low + + [ Debconf translations ] + * Added Greek. + * Added Gujarati. Closes: #394430 + * Added Korean. Closes: #394509 + * Added Nepali. + * Updated Czech (typo fixed). + * Added Wolof. Closes: #396079 + + -- Christian Perrier <bubulle@debian.org> Sun, 5 Nov 2006 09:42:40 +0100 + +samba (3.0.23c-3) unstable; urgency=low + + [ Debconf translations ] + * Updated Catalan; thanks to Guillem Jover for his help + * Updated Russian. + * Updated Spanish. Add a missing word and correct the copyright header + * Updated Vietnamese. Closes: #394164 + * Added Albanian. Closes: #393777 + * Added Chinese (Traditional). + * Added Thai. + + -- Christian Perrier <bubulle@debian.org> Sat, 21 Oct 2006 10:44:11 +0200 + +samba (3.0.23c-2) unstable; urgency=low + + [ Debconf translations ] + * Updated Swedish. Closes: #386510. + * Updated Japanese. Closes: #386534. + * Updated Italian. Closes: #386691. + * Updated Romanian. Closes: #388254. + * Updated German. Closes: #389072. + * Updated Brazilian Portuguese. Closes: #389097. + * Updated Basque. Closes: #389722. + * Updated Turkish. Closes: #390887 + * Updated Danish. Closes: #390878 + * Updated German. Closes: #390813 + * Updated Simplified Chinese. Closes: #390959 + * Updated Arabic. + * Updated Spanish. Closes: #391735 + * Updated Dutch. Closes: #392082 + * Added Slovak. Closes: #386847. + * Added Finnish. Closes: #390150. + * Added Estonian. Closes: #391102. + * Added Norwegian BokmÃ¥l. Closes: #391692 + * Added Hungarian. Closes: #391746 + + [ Steve Langasek ] + * Change the Maintainer field at last to the mailing list... gives + our spam rules some testing, in response to popular demand :) + * Check for update-inetd on purge before trying to invoke it; + closes: #388606. + + [ Peter Eisentraut ] + * Make swat binNMU-safe by using ${source:Version} for dependency on + samba-doc + * Make samba-common owner of /var/{cache,log,run}/samba, let samba and + winbind only delete files they know they're exclusive owners of. + Closes: #370718. + * Use python-central to manage installation of python-samba. + Closes: #386499. (patch by Patrick Winnertz) + * Use upstream makefile to install Python module. + * Build-Depend on python-dev instead of python-all-dev. + * Removed old upgrade support. + * Remove possibly leftover comma from "passdb backend" setting in + smb.conf on upgrade. Closes: ##383307. + * Added libpam-smbpass logcheck file by martin f krafft. + Closes: #391487, #391916. + + [ Christian Perrier ] + * Add LSB info to the init script + + -- Christian Perrier <bubulle@debian.org> Thu, 12 Oct 2006 18:31:46 +0200 + +samba (3.0.23c-1) unstable; urgency=low + + [ Christian Perrier ] + * New upstream version + * Split out samba/run_mode with "__Choices". + + [ Noèl Köthe ] + * corrected samba override disparity: + samba-dbg_3.0.23b-2_i386.deb: package says priority is optional, override says extra. + + [ Debconf translations ] + * Updated Galician. Closes: #383001. + * Updated Danish. Closes: #383025. + * Added Tagalog. Closes: #383039, #383252. + * Updated Khmer. + * Updated Arabic. + * Updated Dzongkha. Closes: #383125. + * Updated Vietnamese. Closes: #383126. + * Updated Czech. Closes: #384760. + + [ Peter Eisentraut ] + * Preseed configure result for method to detect interfaces in + debian/config.cache; the test might otherwise fail if there are no + interfaces configured at build time. Closes: #382429. + * Refined panic-action script text. Closes: #382500. + + -- Noèl Köthe <noel@debian.org> Mon, 04 Sep 2006 12:10:28 +0200 + +samba (3.0.23b-2) unstable; urgency=low + + [ Debconf translations ] + * Updated Romanian. Closes: #382358 + * Updated Dzongkha. Closes: #382448, #382948 + * Updated Basque. Closes: #382456 + * Added Simplified Chinese. Closes: #382489 + + [ Peter Eisentraut ] + * Remove no longer functioning "guest" value from "passdb backend" + setting in smb.conf on upgrade. Closes: #382296 + + [ Steve Langasek ] + * Drop code and debconf questions specific to upgrades from samba <= 2.2. + * Reword some debconf translations as discussed on the list. + * Rerun debconf-updatepo. + * Switch debian/ca.po to UTF-8. + * Restore some reverted strings for Galician, Czech, Brazilian Portuguese, + Spanish, French, Italian, Catalan, Portuguese, Russian, and Japanese. + * Update translations for Brazilian Portuguese, Spanish, French, Italian, + Catalan, and Portuguese. + + -- Peter Eisentraut <petere@debian.org> Mon, 14 Aug 2006 19:04:31 +0200 + +samba (3.0.23b-1) unstable; urgency=low + + * New upstream release + + [ Debconf translations ] + * Updated Galician. Closes: #381988 + + -- Noèl Köthe <noel@debian.org> Tue, 08 Aug 2006 22:28:00 +0200 + +samba (3.0.23a-1) unstable; urgency=medium + + * New upstream release + + * Fixes the following Debian bugs: + - winbind: panic()s when started outside of a domain context. + Closes: #337070 + - Make smbclient -L use RPC to list shares, fall back to RAP. + Closes: #168732 + - Potential hang in nmbd. Upstream bug #3779. Closes: #367472 + - Typos in "ldap group suffix" in smb.conf(5) (upstream #3780). + Closes: #367507 + - Erroneous permissions checks after 3.0.10 -> 3.0.14a + (upstream #2591). Closes: #307626 + - Anonymous memory exhaustion DoS (CVE-2006-3403). Closes: #378070 + - ImportError exception raised when trying to import samba.smb + (upstream #3567). Closes: #350050 + - Changed references from pam_pwdb to pam_unix (upstream #3225). + Closes: #206672 + - SWAT segfault (upstream #3702). Closes: #363523 + + [ Adam Conrad ] + * Fix typo in smb.conf that causes all samba apps to whine. + Closes: #369782 + * Add myself to Uploaders, on the off chance that I might upload. + + [ Debconf translations ] + * Add Galician translation of debconf templates. Closes: #361204, #369403 + * Add Basque translation of debconf templates. Closes: #375104 + * Add Romanian translation of debconf templates. Closes: #379246 + * Add Khmer translation of debconf templates. Closes: #381833 + * Add Dzongkha translation of debconf templates. + * Updated Russian. Closes: #369375 + * Updated Czech. Closes: #369408 + * Updated Japanese. Closes: #369457 + * Updated Italian. Closes: #369587 + * Updated Swedish. Closes: #369730 + * Updated Dutch. Closes: #376515 + * Updated Vietnamese. Closes: #381557 + * Updated French. + * Updated Brazilian. + * Updated Portuguese. Closes: #372632 + * Updated Arabic. + + [ Christian Perrier ] + * Add dependency on procps for samba, as ps is used in init scripts. + Thanks to Bastian Blank for reporting. Closes: #365618 + * Rewrite debconf templates to be compliant with 6.5.2 of the Developer's + Reference + * Add support for /etc/default/winbind. Closes: #262313, #374411 + Thanks to Guido Guenther for the old patch and to Jérôme Warnier + for reminding us about it. + * Compile with --with-cifsmount which is now needed to properly compile + mount.cifs and umount.cifs. See samba bug #3799 + + [ Peter Eisentraut ] + * Use debian/compat instead of DH_COMPAT + * Updated Standards-Version to 3.7.2 (no changes needed) + * Replaced libsmbclient shlibs file by dh_makeshlibs call, so the + required ldconfig calls appear in the maintainer scripts + * Adjusted debian/rules to get 3.0.23rc1 to build + * Updated to debhelper level 5 + * Rearranged dh_strip calls so that build succeeds with + DEB_BUILD_OPTIONS=nostrip. Closes: #288995 + * Create /var/spool/samba and use it as default printer spool. + Closes: #275241 + * Made winbind init script more careful about returning proper exit code + * Added winbindd_priv group as owner of winbindd_privileged directory. + Closes: #307257 + * Python transition preparations: renamed package to python-samba, + removed hardcoded references to Python version 2.3. Closes: #380939 + * Removed unwanted swat debconf warning + * Put localized swat messages into /usr/share/samba, where swat looks for + them. Closes: #376991 + + -- Peter Eisentraut <petere@debian.org> Mon, 7 Aug 2006 23:00:49 +0200 + +samba (3.0.22-1) unstable; urgency=medium + + [ Steve Langasek ] + * New upstream release + - CAN-2006-1059: fixes an information leak in logfiles of systems using + winbind with log level >= 5. + * Fix a typo in the default smb.conf (closes: #354495). + + [ Noèl Köthe ] + * replacing SMB with SMB/CIFS in the descriptions like + named on the samba.org webpage. Closes: #356335 + + -- Steve Langasek <vorlon@debian.org> Sun, 12 Mar 2006 22:40:28 +0100 + +samba (3.0.21c-1) unstable; urgency=low + + * New upstream release + * add a few logon-related parameters as good and safe + examples for *DC-type settings. Closes: #349051 + * add an example "add user script". Closes: #349050 + * drop outdated information from the smbfs package description + Closes: #352828 + + -- Christian Perrier <bubulle@debian.org> Sat, 25 Feb 2006 11:58:45 +0100 + +samba (3.0.21b-1) unstable; urgency=low + + * The "Tridge" release: celebrates the 2005 Free Software Award winner + + * New upstream release + + * Upstream bugs fixed by the new upstream release: + - Support changing expired passwords in + pam_winbindd. Closes: #258302 + - vfs_full_audit fixes for multiple connections. Closes: #348419 + - crashes of smbd in security=server mode + Closes: #346045, #346069, #350598, #351448 + + [ Peter Eisentraut ] + * Put correct paths for Debian installations into the man pages, and + remove outdated swat setup instructions therein. Closes: #321005 + * Fix lintian overrides and install them into the right packages. + * Remove swat inetd registration in remove, not purge. Closes: #313214 + * Add findsmb script. Closes: #231806 + * Fix sonames of libnss_win{bind,s}.so. Closes: #333290 + * Remove autoconf build dependency. + * Remove remnants of old patch system. + * Install smbumount setgid root. Closes: #253437 + * Add watch file. + * Activate kernel oplocks. Closes: #218511 + * Disable PIE compilation. Closes: #346416 + + [ Christian Perrier ] + * activate building of idmap_rid. Closes: #284681. + Thanks to Ubuntu patches + * activate building of idmap_ad. Closes: #341814 + * modify the long description of the libsmbclient-dev package to + avoid repeating the long description. Thanks, linda. + + [ Steve Langasek ] + * Also enable setresuid()/setresgid() on alpha and sparc now that support + for Linux 2.2 is dropped. + + -- Christian Perrier <bubulle@debian.org> Mon, 6 Feb 2006 07:02:20 +0100 + +samba (3.0.21a-4) unstable; urgency=low + + [ Peter Eisentraut ] + * Add umount.cifs. Closes: #340967 + * Really make mount.cifs and umount.cifs suid root. Closes: #340966 + + [ Christian Perrier ] + * Add "bind interfaces only" and "interfaces" options (commented) + to the default smb.conf file. Closes: #349043 + + [ Steve Langasek ] + * Add missing changes to source/include/config.h.in into the + autoconf.patch, so that samba looks for files in /var/lib/samba like it's + supposed to instead of in /var/run/samba! Closes: #349372, #349464. + + -- Steve Langasek <vorlon@debian.org> Mon, 23 Jan 2006 00:59:20 -0800 + +samba (3.0.21a-3) unstable; urgency=low + + * Add Build-Depends on quilt (>= 0.40 as we use quilt.make) + + -- Christian Perrier <bubulle@debian.org> Sat, 21 Jan 2006 23:02:32 +0100 + +samba (3.0.21a-2) unstable; urgency=low + + [ Christian Perrier ] + * Switch to quilt for patches management. Refresh all patches so + that they apply cleanly. Closes: #345557 + * debian/patches/adapt_machine_creation_script.patch: + - adapt example machine creation script to Debian. Closes: #346234 + * winbind.dirs: + - added /var/run/samba. Closes: #347585 + + [ Peter Eisentraut ] + * swat.links: + - file added. Closes: #346001 + + [ Noèl Köthe ] + * fixed typo in panic-script. Closes: #348410 + + [ Steve Langasek ] + * debian/patches/autoconf.patch: + - move changes to autogenerated files into their own patch now that we've + lost the script that was calling autogen.sh for us; this also helps + make debian/rules clean just a little bit cleaner. + * debian/patches/fhs.patch: + - fix new references to registry.tdb (closes: #348874). + - also move account_policy.tdb, perfcount, and eventlog into /var/lib/samba + where they belong + + -- Christian Perrier <bubulle@debian.org> Fri, 20 Jan 2006 14:20:35 +0100 + +samba (3.0.21a-1) unstable; urgency=low + + [ Christian Perrier ] + * *Really* make samba-doc suggest samba-doc-pdf. This change finally + did not make it in the previous release. + + [ Noèl Köthe ] + * new upstream release 3.0.21a + - removed smbsh.1 from debian/rules + - added new smbclient programm smbget (with conflict/replace + to existing Debian smbget package) + - added libsmbclient.7 to libsmbclient package + - added umount.cifs.8 to smbfs package + - added pam_winbind.7 to winbind package + - added new /usr/bin/eventlogadm to samba package which is + documented here http://www.samba.org/~jerry/Samba-EventLog-HOWTO.txt + - fixed "cd command fails in smbclient". Closes: #307535 + - fixed "file descriptor leak". Closes: #339564 + - fixed "smbclient(1) doesn't list same options as + smbclient usage statement". Closes: #154184 + - fixed "typo in smbmount.8". Closes: #260673 + - fixed "smbmount manual page doesn't have a link to + smbumount". Closes: #297535 + - fixed "smb.conf man page references non-existent + BROWSING.txt file". Closes: #316458 + - fixed "smb.conf - improve topic: hosts deny (S)". Closes: #273480 + - fixed "fails to manage groups containing spaces". Closes: #299592 + - corrected nonpic-libsmbclient.patch to apply + - corrected fhs.patch to apply + * added myself to Uploaders + * Rewording of the panic action script. Closes: #335051 + * added missing swat translation to swat package + + -- Noèl Köthe <noel@debian.org> Sun, 01 Jan 2006 12:45:33 +0100 + +samba (3.0.20b-4) unstable; urgency=low + + [ Christian Perrier ] + * Remove the smbldap-tools-* directory from the examples of samba-doc + as these tools exist as an independent package. Closes: #341934 + * Swedish debconf translation update. Closes: #342022 + * Preserve the local admin settings for run_mode in /etc/default/samba + when upgrading. Closes: #234038, #267988, #269735 + * Winbind also must depend on lsb-base. Closes: #343379 + * Enable swat in inetd when installing it and remove it when + uninstalling. Closes: #87905, #230936, #268429 + + [ Peter Eisentraut ] + * Added separate samba-doc-pdf package, suggested by samba-doc. + Closes: #281971 + * Removed duplicate documentation in swat package, symlinked to + samba-doc; swat now depends on samba-doc. Closes: #233447 + + -- Christian Perrier <bubulle@debian.org> Tue, 20 Dec 2005 17:08:20 +0100 + +samba (3.0.20b-3) unstable; urgency=low + + [ Steve Langasek ] + * Drop the FHS transition code from the samba postinst, since it's + not needed for upgrades from sarge (and most of it not for upgrades + from woody). + + [ Noèl Köthe ] + * libpam-smbpass dependency on samba-common + Closes: #297923 + * Updated swedish debconf translation. Closes: #335784 + * Added Recommends: smbldap-tools. Closes: #227675 + + [ Peter Eisentraut ] + * Added doc-base support. Closes: #55580 + * Fixed dh_installexamples call so the debian/*.examples files are + actually used. + * Patched libpam-smbpass README to refer to examples directory. + Closes: #215771 + + [ Christian Perrier ] + * Add a working passwd chat line to the default smb.conf file + Closes: #269746 + * Add the profiles binary and man page to the shipped files. Closes: #225494 + * Add a dependency on samba-common for winbind and force versions to match + Closes: #273007, #264855 + * Add /var/log/samba to winbind directories. Closes: #340833 + * Lintian cleaning: + - Add a few lintian overrides to avoid lintian complaining + for things done on purpose or just because it makes wrong assumptions + - Corrected FSF address in debian/copyright + - Make swat depend on netbase as it uses update-inetd in its postinst + script + - Correct shebang lines in config scripts + - Remove an extra copy of the GPL in smbldap-tool examples in samba-doc + - Minor correction in libsmbclient-dev description to avoid strictly + repeating the short description in the long description + - Call confmodule in swat.postinst as this is the only way to guarantee + that the config script is run in all cases + + -- Christian Perrier <bubulle@debian.org> Sat, 3 Dec 2005 07:30:40 +0100 + +samba (3.0.20b-2) unstable; urgency=low + + * Don't build with -gstabs any more; -g no longer gives a problematic + size hit, and -gstabs is no longer supported on ia64. + + -- Steve Langasek <vorlon@debian.org> Wed, 19 Oct 2005 19:02:44 -0700 + +samba (3.0.20b-1) unstable; urgency=low + + * Christian Perrier: + - Debconf translations: + - Added Vietnamese. Closes: #317876 + - Updated German. Closes: #322907 + * Steve Langasek: + - Use ${misc:Depends} in debian/control instead of depending on + debconf directly, allowing use of cdebconf as an alternative. + Closes: #332088. + * Noèl Köthe + - corrected libsmbclient priority to optional. Closes: #310045 + - corrected the path of ServerType.html in smb.conf. Closes: #296500 + - updated Standards-Version to 3.6.2 (no changes needed) + - added homepage to description + - switched init scripts (samba and winbind) to lsb-functions + (took patches from ubuntu) + - added Swedish. Closes: #331437 + - removed outdated "guest" value in "passdb backend" in default smb.conf + Closes: #289519 + - moved smbpasswd(5) to samba-common where the binary and smbpasswd(8) + is; Replaces: all previous versions of samba. Closes: #253603 + - new upstream release 3.0.20b (from 2005-10-13). Closes: #324515 + - support for Windows Vista. Closes: #323489 + - Mac OS Tiger Problem fixed. Closes: #309836 + - BUG 2688: re-implement support for the -P (--port) option. + Closes: #307746 + - "man smb.conf" warnings fixed. Closes: #266320 + - testprns removed by upstream so removed in samba.files + - corrected docs/*.pdf names (samba-doc.docs) + - corrected diagnosis.html path (samba.docs) + - removing patches which are included upstream: + dos7-xcopy-always-copies-files.patch + (* BUG 2622: Remove DPTR_MASK as it makes no sense.) + hide-special-file-fix.patch + (* Hide dot files and directory logic fixes.) + rap-printing-bigendian.patch + (* BUG 1998: Correct byte ordering bug when storing + 16-bit RAP print job ids.) + smbclient-vfat-loop.patch + smbclient-vfat-loop2.patch + (* BUG 2698: Fix infinite listing loop in smbclient + caused by an invalid character set conversion.) + - fixed the following patches which didn't applied cleanly + fhs.patch + non-linux-ports.patch + + -- Steve Langasek <vorlon@debian.org> Tue, 18 Oct 2005 19:02:21 -0700 + +samba (3.0.14a-6) unstable; urgency=low + + * Use DEB_HOST_ARCH_OS instead of DEB_HOST_GNU_SYSTEM to detect + Linux in debian/rules, for compatibility with dpkg-dev >= 1.13.9; + add a versioned build-depend accordingly. Closes: #315955 + * Switch to libreadline5. + + -- Steve Langasek <vorlon@debian.org> Fri, 1 Jul 2005 00:13:12 -0700 + +samba (3.0.14a-5) unstable; urgency=low + + * Fix libsmbclient.a to be built as non-PIC instead of PIC. + Closes: #279243. + + -- Steve Langasek <vorlon@debian.org> Wed, 8 Jun 2005 05:46:52 -0700 + +samba (3.0.14a-4) unstable; urgency=high + + * Last-minute upload for sarge, because I don't listen to anything + that RM guy says + * Patch smbmount to strip CAP_UNIX out of the capabilities passed to + the kernel when uid, gid, dmask, or fmask options have been + specified; this keeps the mount permissions from changing out from + under the user when upgrading to a server (or to a kernel) that + supports unix extensions. Closes: #310982. + * Second patch to smbclient search continuation logic, from upstream: + preserve the original UCS2 filename to guard against lossy + conversions, and break out if we find ourselves looping. + Closes: #311157. + * Upstream fix to make print job cancellations work on big-endian + systems when talking to RAP-style clients (i.e., smbclient). + Closes: #311213. + * Add build-dependency on libpopt-dev, so that we consistently use the + system popt lib instead of the bundled one. + + -- Steve Langasek <vorlon@debian.org> Thu, 2 Jun 2005 07:02:46 -0700 + +samba (3.0.14a-3) unstable; urgency=high + + * Urgency set to high for a bug that makes smbclient/libsmbclient + /almost/ mostly unusable + * Fix smbclient's search continuation logic so that it works correctly + against 2K servers offering VFAT-hosted shares; many thanks to + Jeremy Allison for the timely upstream fix. Closes: #309798. + * Update pt_BR debconf translation. Thanks to Andre Luis Lopes + <andrelop@debian.org>. (closes: #308510) + * Add Russian debconf translation, thanks to Yuriy Talakan + <yt@amur.elektra.ru>. (closes: #310063) + + -- Steve Langasek <vorlon@debian.org> Thu, 26 May 2005 23:37:57 -0700 + +samba (3.0.14a-2) unstable; urgency=low + + * Point the sense of the file_is_special() check right way around; + thanks to Matthijs Mohlmann for catching this. Closes: #305747. + * debian/patches/dos7-xcopy-always-copies-files.patch: + Fix the MS-DOS 7 XCOPY copying files over and over bug + Closes: #309003 + * Steve Langasek <vorlon@debian.org>: + - Add Christian Perrier to Uploaders:. Thanks, Christian :) + + -- Steve Langasek <vorlon@debian.org> Sun, 8 May 2005 04:43:21 -0700 + +samba (3.0.14a-1) unstable; urgency=low + + * New upstream version + - A more complete upstream fix for missing files in file listings, + should really give us working (closes: #302771); drop + xp-missing-files.patch, which has been superseded. + * Use the right path when removing mount.cifs binary in the clean + target. Closes: #303318. + + -- Steve Langasek <vorlon@debian.org> Mon, 18 Apr 2005 03:22:29 -0700 + +samba (3.0.11-1) unstable; urgency=high + + * New upstream version + - Fixes duplicated entry in swat(8) manpage (closes: #292957). + - Fix queue handling so that processes serving print clients don't + spin off into infinity and clobber the system (closes: #274969). + - Make sure we use C-locale toupper/tolower functions for case + conversion, since Turkish pairing rules are incompatible + (closes: #286174). + * Fix logrotate script to exit true instead of false when nmbd.pid is + missing (closes: #287263). + * Added Portuguese debconf translation. Thanks to Miguel Figueiredo + <elmig@debianpt.org>. (closes: #286375) + * Added Italian debconf translation. Thanks to Luca Monducci + <luca.mo@tiscali.it>. (closes: #284125) + * Add support for building on the Debian BSD and Hurd ports; thanks to + Robert Millan for the patch. (closes: #266693) + * debian/patches/xp-missing-files.patch: import patch from upstream to + fix missing entries in directory listings when talking to WinXP + servers (closes: #297771). + + -- Steve Langasek <vorlon@debian.org> Wed, 23 Mar 2005 00:13:16 -0800 + +samba (3.0.10-1) unstable; urgency=high + + * New upstream release. + - CAN-2004-1154: integer overflow can lead to remote code execution + by authenticated users; closes: #286023. + * High-urgency upload for sarge-targetted RC bugfix. + * Sync the fhs.patch to samba 3.0.10. + * Install mount.cifs suid root, to make user mounts possible + (closes: #283819). + * debian/patches/cups.patch: Change the default printing system, so we + can compile in CUPS support without making it the default -- CUPS is + not a reasonable default on Debian, at least for sarge. + + -- Steve Langasek <vorlon@debian.org> Fri, 17 Dec 2004 11:56:01 -0800 + +samba (3.0.9-1) unstable; urgency=low + + * New upstream release + - Fixes Win9x printing; closes: #283530, #282571, #283818. + - Fixes a problem with setting dosmodes on filesystems without ACL + support; closes: #283661. + - Drop ldapsam_compat.patch, redundant now that a fix is integrated + upstream + + -- Steve Langasek <vorlon@debian.org> Thu, 2 Dec 2004 01:11:39 -0800 + +samba (3.0.8-2) unstable; urgency=low + + * Fix the module paths for python2.3-samba so that "import foo from samba" + works, and include the __init__.py glue; closes: #222867). + * Enable quota support; closes: #246839. + * Fix missing symbols in libsmbclient (and libnss_wins), and add + -Wl,-z,defs to the libsmbclient link options to prevent future + instances of undefined symbols (closes: #281181). + * Fix for the legacy ldapsam_compat backend; thanks to Fabien + Chevalier for the patch (closes: #274155). + + -- Steve Langasek <vorlon@debian.org> Mon, 15 Nov 2004 06:54:13 -0800 + +samba (3.0.8-1) unstable; urgency=high + + * New upstream package. Urgency set to "high" because of a potential + Denial of Service vulnerability in previous 3.0.x releases + (CAN-2004-0930). (Eloy) + * Introduce new -dbg package, so we can make better sense out of the + cleverly-supplied backtrace emails. (Vorlon) + * Applied patch from Luke Mewburn <luke@mewburn.net> to fix missing + lock_path() to state_path() change in the FHS patches. (Eloy) + + -- Eloy A. Paris <peloy@debian.org> Mon, 8 Nov 2004 13:39:34 -0500 + +samba (3.0.7-2) unstable; urgency=high + + * High-urgency upload for sarge-targetted RC fixes. + * Use autogen.sh in unpatch-source as well as in patch-source, to get + rid of the autom4te.cache cruft. + * debian/patches/make-distclean.patch: add some missing files to the + distclean target in source/Makefile.in (mostly-fixes: #276203). + * Change compile-time default of 'use sendfile' to 'no', since the + current Samba implementation is broken (closes: #261917, #275741, + #270175). + * Add mount.cifs into the smbfs package; thanks to Igor Belyi for + showing us just how simple this patch should be. ;) Since cifs is + the preferred kernel driver in 2.6, bugs related to smbfs and 2.6 + are considered closed unless someone can show that they exist with + the cifs driver as well (closes: #249890, #269443, #227791, #236869, + #260707, #261808, #270175). + * Fix FHS migration code so that it only affects upgrades from old + package versions, and doesn't cause us to mess with non-standard + directories that may have been re-added by the admin + (closes: #251858). + + -- Steve Langasek <vorlon@debian.org> Tue, 26 Oct 2004 01:35:23 -0700 + +samba (3.0.7-1) unstable; urgency=high + + * New upstream release. This release fixes two possible denial of + service conditions; one in nmbd and one in smbd. The CVE numbers + for these vulnerabilities are: + + CAN-2004-0807 for the smbd DoS + CAN-2004-0808 for the nmbd DoS + + Urgency is set to "high" because of these vulnerabilities; so this + new release propagates to testing ASAP. + + Thanks to the Samba Team and the Debian Security Team for the + heads up. + * Remove post-3.0.6 patches that are now in 3.0.7. + + -- Eloy A. Paris <peloy@debian.org> Mon, 13 Sep 2004 00:53:38 -0400 + +samba (3.0.6-4) unstable; urgency=low + + * Update LDAP schema (closes: #269797). + * Applied a couple of upstream fixes that will be present in Samba 3.0.7. + + -- Eloy A. Paris <peloy@debian.org> Tue, 7 Sep 2004 15:28:42 -0400 + +samba (3.0.6-3) unstable; urgency=low + + * Put libsmbclient where it belongs, in /usr/lib. (closes: #267704) + + -- Eloy A. Paris <peloy@debian.org> Wed, 25 Aug 2004 01:58:37 -0400 + +samba (3.0.6-2) unstable; urgency=low + + * Added Danish debconf translation. Thanks to Claus Hindsgaul + <claus_h@image.dk>. (closes: #232884) + + -- Eloy A. Paris <peloy@debian.org> Mon, 23 Aug 2004 17:24:19 -0400 + +samba (3.0.6-1) unstable; urgency=low + + * New upstream version. + * Incorporate Turkish debconf translation; thanks to Recai Oktas + <roktas@omu.edu.tr>. (closes: #252031) + * Update pt_BR debconf translation. Thanks to Andre Luis Lopes + <andrelop@debian.org>. (closes: #208113) + + -- Eloy A. Paris <peloy@debian.org> Mon, 23 Aug 2004 12:34:44 -0400 + +samba (3.0.5-2) unstable; urgency=high + + * Patches from Fabien Chevalier <fabien.chevalier@supelec.fr> + to fix: + + libnss_wins crashes other programs (closes: #252591) + + Can't list share files/dirs, but can acces deeper files/dirs + (closes: #264572) + + Samba 3.0.5 Printserver doesn't work with WinXP SP2 (closes: #265871) + * Urgency "high" to make it into testing as soon as possible since + at least #265871 is pretty bad now that WinXP SP2 has been released. + Thanks for the help Fabien! Both Vorlon and I have been very busy + lately. + + -- Eloy A. Paris <peloy@debian.org> Wed, 18 Aug 2004 13:25:41 -0400 + +samba (3.0.5-1) unstable; urgency=high + + * New upstream version. Urgency "high" because of potential buffer + overflows. The security fixes are the only difference between + 3.0.4 and 3.0.5. + + -- Eloy A. Paris <peloy@debian.org> Thu, 22 Jul 2004 08:07:36 -0400 + +samba (3.0.4-5) unstable; urgency=low + + * Doh! Build-depends on libcupsys2-dev (>=1.1.20final+cvs20040330-4), + not an unversioned libcupsys2-dev. (closes: #250523) + + -- Eloy A. Paris <peloy@debian.org> Tue, 25 May 2004 07:43:54 -0400 + +samba (3.0.4-4) unstable; urgency=low + + * Rebuilt with libcupsys2-gnutls10 for unstable. + Closes: #250424, #250483, #250491, #250515, #250523, #250592, #250736 + Closes: #250742, #250733 + + -- Eloy A. Paris <peloy@debian.org> Mon, 24 May 2004 22:32:52 -0400 + +samba (3.0.4-3) unstable; urgency=low + + * Color me stupid; I uploaded an experimental version to unstable. + + -- Eloy A. Paris <peloy@debian.org> Sat, 22 May 2004 00:40:58 -0400 + +samba (3.0.4-1) unstable; urgency=low + + Eloy: + + * New upstream version. + Closes: #247640 (New upstream version available) + Closes: #238905 (Printing crash fix) + Closes: #247090 (panic in viewing printerqueue) + + Vorlon: + + * Incorporate Catalan debconf translations; thanks to + Aleix Badia i Bosch <abadia@ica.es> and the Debian L10n Catalan Team. + (closes: #236640) + * Incorporate Czech debconf translations; thanks to + Miroslav Kure <kurem@upcase.inf.upol.cz> (closes: #236274). + * Update libsmbclient shlibs, due to an incompatibility with older + versions that prevents gnome-vfs from working correctly + (closes: #245869). + + -- Eloy A. Paris <peloy@debian.org> Fri, 21 May 2004 11:42:19 -0400 + +samba (3.0.2a-1) unstable; urgency=low + + * New upstream version. + + -- Eloy A. Paris <peloy@debian.org> Tue, 24 Feb 2004 10:30:47 -0500 + +samba (3.0.2-2) unstable; urgency=high + + * Apply patch from Urban Widmark <urban@teststation.com> to prevent + users from mounting remote filesystems containing suid files + (closes: 232327). This represents an exploitable security hole on + systems running Linux 2.6 kernels. + + -- Steve Langasek <vorlon@debian.org> Thu, 12 Feb 2004 21:38:40 -0600 + +samba (3.0.2-1) unstable; urgency=high + + * New upstream release. + - LaMont Jones: correct false failure LFS test that resulted + in _GNU_SOURCE not being defined (thus resulting in strndup() + not being defined) (closes: #226694) + - Segfault fixes. (closes: #230012) (maybe more, but we need bug + reporters to confirm.) + + Urgency "high" due to a password initialization bug that could grant + an attacker unauthorized access to a user account created by the + mksmbpasswd.sh shell script. See WHATSNEWS.txt for details and + workarounds for those not wishing to upgrade (which is a bad idea + anyway since this new release fixes lots of other bugs.) + + -- Eloy A. Paris <peloy@debian.org> Sun, 8 Feb 2004 10:06:29 -0500 + +samba (3.0.1-2) unstable; urgency=low + + * Include ntlm_auth's man page. + * Don't create directories outside of the source directory during + package build time. (closes: #227221, #227238, #225862) + * Don't include the "Using Samba" book in the swat package, just a + symlink that points to the book included in the samba-doc package. + + -- Eloy A. Paris <peloy@debian.org> Tue, 13 Jan 2004 13:48:13 -0500 + +samba (3.0.1-1) unstable; urgency=low + + * New upstream version (closes: #225565) + * Add support in the dhcp hook for netbios scope, and handle better + the case of multiple DHCP-using interfaces (closes: #224109). + * Use "tail -n 1 ..." instead of "tail -1 ..." so POSIX-compliant + tail works. Thanks to Paul Eggert <eggert@twinsun.com>. + * Include /usr/bin/ntlm_auth in the winbind package. + * Run configure with "--with-piddir=/var/run/samba" since the + default got changed to /var/run in this new upstream version. + + -- Eloy A. Paris <peloy@debian.org> Tue, 30 Dec 2003 16:21:31 -0500 + +samba (3.0.0final-1) unstable; urgency=low + + * It's here, it's here, it's here, Samba 3.0.0 is here! + * Incorporate Japanese debconf translations; thanks to Kenshi Muto + <kmuto@debian.org>. (closes: #209291) + + -- Eloy A. Paris <peloy@debian.org> Thu, 25 Sep 2003 13:39:28 -0400 + +samba (3.0.0beta2+3.0.0rc4-1) unstable; urgency=low + + * New upstream version. + + -- Eloy A. Paris <peloy@debian.org> Sat, 13 Sep 2003 08:47:56 -0400 + +samba (3.0.0beta2+3.0.0rc3-1) unstable; urgency=low + + * New upstream release. Last Release Candidate according to the + Samba Team. Samba 3.0.0 is around the corner, in a week or so. + - Fixes use of non-PIC code in nss shared libraries (closes: #208773) + - 'unix password sync' option now runs the unix password program as + root again (closes: #209739). + * One-line patch to make packages buildable with distcc (closes: #210227) + + -- Eloy A. Paris <peloy@debian.org> Tue, 9 Sep 2003 07:57:16 -0400 + +samba (3.0.0beta2+3.0.0rc2-1) unstable; urgency=low + + * New upstream release. + * Link against libgnutls7 instead of libgnutls5. (closes: #208151) + + -- Eloy A. Paris <peloy@debian.org> Tue, 2 Sep 2003 21:37:13 -0400 + +samba (3.0.0beta2+3.0.0rc1-1) unstable; urgency=low + + * New upstream version (skipped samba 3.0.0beta3 due to time + constraints.) This ugly version number will go away when the final + Samba 3.0.0 is released. + * Drag new unpackaged tools into the packages: smbcquotas (smbclient), + vfs modules (samba), smbtree(1) manpage (smbclient), tdbbackup(8) + manpage (samba). (closes: #151158) + * Switch to DH_COMPAT level 4: + - no explicit conffile listings needed + - the postinst for libsmbclient is now completely autogenerated + - use the default init script handling (with support for + invoke-rc.d) in debhelper, instead of the currently buggy upgrade + path (closes: #185439) + - add support for ${misc:Depends} in control for those packages with + init scripts + * Add versioned dependency on libpam-runtime and change + /etc/pam.d/samba to use the new common PAM config blocks. + * New python2.3-samba package (old python2.2-samba is no more.) + (closes: #206171) + + -- Eloy A. Paris <peloy@debian.org> Mon, 25 Aug 2003 17:05:14 -0400 + +samba (3.0.0beta2-1) unstable; urgency=low + + * New upstream release + - The smb.conf(5) manpage documents config options again + (closes: #197963). + - Handling of winbind/idmap has been restructured; domain members + should be able to map domain accounts to local accounts again + (closes: #196815). + - Use the locale charset for 'display charset' by default + (closes: #194406). + - Fix for segfault in smbclient when using the -b option + (closes: #196833). + - Handle an empty 'passdb backend' list gracefully (closes: #193946). + * Don't set 'display charset' anymore on upgrade, since this is now + grabbed from the locale by default -- a much better option. + * Removed time.c.patch which is now in the upstream sources. + * Update FHS patch for two new tdb files (netsamlogon_cache.tdb, + privilege.tdb). + * Remove python-linker.patch, since the Kerberos package has been + fixed to no longer use rpath + * Remove configure.patch: the hppa glibc bug this was added for is + long since fixed, and upstream isn't interested in supporting this + kludge. + * Update references to missing documentation in sample smb.conf file + (closes: #187632). + * Fix handling of krb5 link line, building on a patch from Stefan + Metzmacher <metze@metzemix.de>. + * Add patch so smbclient's tar support works with popt + (closes: #194921). + + -- Steve Langasek <vorlon@debian.org> Wed, 2 Jul 2003 20:59:09 -0500 + +samba (3.0.0beta1-2) unstable; urgency=low + + * Update build-deps to libacl1-dev (>= 2.2.11-1), libacl1 (>= 2.2.11-1) + to make sure we get the right shlib dependencies (closes: #193149). + * Update the dhcp config hooks so they're suitable for sourcing (i.e., + don't call "exit") (closes: #196477). + * Bring package into line with current policy by adding support for + the DEB_BUILD_OPTIONS flag, and enabling debugging symbols (-gstabs) + by default + * Make sure libpam-smbpass is a self-contained DSO. + * Fix a typo in samba-common.dhcp that caused us to spuriously rewrite + the server list. + * Fix python install script to ignore -Wl linker flags, as seen in the + output from the latest krb5-config. + * Add LDAP and Unicode information about upgrading from 2.2 to + README.debian. + * Remove dangerous and confusing browse options from the default + smb.conf (closes: #198804). + * Reorder smb.conf options for clearer grouping, and clarify the + comments. + * Add a default [print$] share to the sample smb.conf, and create the + necessary tree under /var/lib/samba/printers. (closes: #168173) + * s/winbind/idmap/ in smb.conf, since the option names have changed. + * Fix the patch for postexec handling, so that we chdir("/") at the + right time. + + -- Steve Langasek <vorlon@debian.org> Thu, 12 Jun 2003 15:02:00 -0500 + +samba (3.0.0beta1-1) unstable; urgency=low + + * New upstream version. + - fix for empty browselist bug (closes: #194553) + - fix for tab completion segfault in smbclient (closes: #194776) + - Samba now works as a domain member again without segfaulting + (closes: #194134, #194394, #194775) + - WinXP machines can join a Samba-controlled domain again + (closes: #195362) + * Build-depend on python-dev >= 2.2 instead of on just python-dev + (without version). + * Added Vorlon'n patch to source/lib/time.c to fix #194075. + (closes: #194075) + + -- Eloy A. Paris <peloy@debian.org> Sun, 8 Jun 2003 22:26:43 -0400 + +samba (2.999+3.0.alpha24-3) unstable; urgency=low + + * Make sure Samba DSOs are compiled with -fPIC. (closes: #194324) + * Rebuild against pristine Kerberos libs, to squelch warnings about + versioned symbols. (closes: #194431, #194396) + + -- Steve Langasek <vorlon@debian.org> Thu, 22 May 2003 15:32:00 -0500 + +samba (2.999+3.0.alpha24-2) unstable; urgency=low + + * Fixed description of the smbfs package. (closes: #194183) + * Negate the sense of the unixsam check when upgrading. (closes: #194234) + + -- Steve Langasek <vorlon@debian.org> Wed, 21 May 2003 12:21:53 -0400 + +samba (2.999+3.0.alpha24-1) unstable; urgency=low + + * New upstream version. (closes: #189354) + + -- Eloy A. Paris <peloy@debian.org> Tue, 20 May 2003 13:55:57 -0400 + +samba (2.999+3.0.alpha23-5) unstable; urgency=low + + * Move the python package from section "net" to section "python". + * Make sure we use PIC code for python on all platforms. + * French translation of an additional debconf template, courtesy of + Christian Perrier <bubulle@debian.org>. (closes: #188832) + * Updated Brazilian Portuguese translation from André LuÃs Lopes + <andrelop@ig.com.br>. + * s/unixsam/guest/ everywhere, since the unixsam backend is now + deprecated. (closes: #190095) + * Create our temp config file as /etc/samba/smb.conf.dpkg-tmp; not + only does using /tmp violate SELinux policies, it introduces the + possibility of data loss during the final copy if /tmp is a separate + filesystem. (closes: #189823) + * Pull in fix for SWAT, so that logins work again + (closes: #188255, #192077). + * Move passdb.tdb into /var/lib/samba, since it's not user-editable. + * Make sure with don't ship any .cvsignore files. + * Don't ship examples for python2.2-samba and samba-doc in an + "examples" directory inside another "examples" directory. + + -- Eloy A. Paris <peloy@debian.org> Tue, 6 May 2003 12:05:46 -0400 + +samba (2.999+3.0.alpha23-4) unstable; urgency=low + + * Instead of s/LPT1:/LPT:/, we need to do s/LPT:/LPT1:/ -- now all + non-RPC printing clients are working again. + * Change shlibs to 0 instead of 0.1. The library already in the + archive is using this soname, and there are no packages depending + on libsmbclient, so skip changing the package name for now. + (closes: #188661) + + -- Steve Langasek <vorlon@debian.org> Fri, 11 Apr 2003 14:42:00 -0500 + +samba (2.999+3.0.alpha23-3) unstable; urgency=low + + * Put the Samba Python modules in /usr/lib/python2.2/site-packages/, + not in /usr/lib/python2.2/lib-dynload/. + + -- Eloy A. Paris <peloy@debian.org> Wed, 9 Apr 2003 19:49:25 -0400 + +samba (2.999+3.0.alpha23-2) unstable; urgency=low + + * New package python2.2-samba that includes the Python modules + included in the Samba sources. Feedback on these modules and the new + package is welcome, as we (Debian Samba maintainers) don't use them. + (closes: #170731, #173322) + * Move libsmbclient-dev from section "devel" to "libdevel". + * Fix panic action script to give a sensible error message instead of + an empty backtrace when we don't have permission to attach to the + process. (closes: #188164) + * Fix libpam-smbpass so that it really does something. (closes: #178245) + * Apply patch to fix printing-related segfaults. (closes: #188076) + + -- Eloy A. Paris <peloy@debian.org> Sun, 6 Apr 2003 21:40:33 -0400 + +samba (2.999+3.0.alpha23-1) unstable; urgency=high + + * new upstream release, includes security fix for DSA-262 + * tweak the debconf templates to avoid references to specific + front-ends (closes: #183718) + + -- Steve Langasek <vorlon@debian.org> Sun, 9 Mar 2003 14:58:00 -0600 + +samba (2.999+3.0.alpha21-5) unstable; urgency=low + + * touch up the package descriptions a little bit (caps, punctuation) + * remove addtosmbpass, which snuck back in when we weren't looking + * reverse the position of the wins server tag, after looking more + closely at the code (closes: #183061) + * fix a glitch in the Spanish .po that rendered it invalid, plus a typo + * updated Brazilian Portuguese templates (closes: #183295) + * fix a typo in upstream manpage (s/shave/share/) (closes: #180546) + * run sed before we run sed, to deal with crazybad special chars + in the workgroup name (!) (closes: #176717) + + -- Steve Langasek <vorlon@debian.org> Sat, 1 Mar 2003 15:14:00 -0600 + +samba (2.999+3.0.alpha21-4) unstable; urgency=low + + * add scripts to samba-common to grab the netbios-name-servers options + if we're running a DHCP client (closes: #38413) + * major rearrangement of build scripts: install target now operates on + debian/tmp, not debian/samba, so we can see when new files are + added and decide where to put them; several files that should have + been in samba-common but were in samba (for the above reason) -- + smbcacls, -- have been moved, with a replaces: added. + * Fix rc script so that whitespace is consistent between inetd and + daemon modes (closes: #174677). + * smbclient -M must always connect to port 139, because port 445 + doesn't support messaging and we can't do the port 135 stuff yet + (closes: #175292, #167859). + * Import the diff from upstream CVS, which has fixed a few bugs + (closes: #178219, #177583, #181467, #181487, #181603, #175864). + Remove a few patches of ours which are now superseded. + * Add po-debconf support to the tree, for better i18n. + * Install the libsmbclient.so symlink in the libsmbclient-dev package, + per policy (closes: #181466). + + -- Steve Langasek <vorlon@debian.org> Fri, 27 Dec 2002 00:37:00 -0600 + +samba (2.999+3.0.alpha21-3) unstable; urgency=low + + * Drop --with-ldapsam from the configure options, since this no longer + means what we thought it did. Revert patch for changing the 'passdb + backend' defaults. + * Add patch from CVS HEAD to fix pdbedit segfault; postinst script + should work better now. (Closes: #173936) + + -- Steve Langasek <vorlon@debian.org> Sun, 22 Dec 2002 13:29:00 -0600 + +samba (2.999+3.0.alpha21-2) unstable; urgency=low + + * add CONFIGDIR to the set of directories exported in the install + target, so we don't try to write to /etc/ on the autobuilders. + * Reset the default 'passdb backend' value to something sensible, so + that we don't unnecessarily break upgrading systems (closes: #173731). + + -- Steve Langasek <vorlon@debian.org> Fri, 20 Dec 2002 09:13:00 -0600 + +samba (2.999+3.0.alpha21-1) unstable; urgency=low + + * new upstream release, many patches now incorporated upstream + + -- Steve Langasek <vorlon@debian.org> Mon, 16 Dec 2002 23:39:00 -0600 + +samba (2.999+3.0.alpha20-4) unstable; urgency=low + + * Remove obsolete comments about non-existant LDAP support in the + Debian Samba packages. (Closes: #165035) + * Apply patch for segfault in pam_smbpass when using the unixsam + backend. + * Drop support for nmbd in inetd, since it's not supported by + upstream and is reported to cause problems (closes: #23243, #137726, + 165037). + * Clarify example printing configs in smb.conf (closes: #168174). + * Make sure nmbd still responds to SIGTERM if it has no interfaces to + listen on (closes: #168079). + * Fix to get samba working again on 64-bit archs, after a + pointer<->int size mismatch bug. Already fixed in upstream CVS. + * Merge fix from CVS for broken libsmbclient.h references to internal + structures (closes: #162956). + * Add a default 'panic action' for Samba that will give us genuinely + useful debugging information after a crash. + * Fixed correct patch to example configurations in the libpam-smbpass + packages (closes: #169350). + * acl-dev is not in sid anymore; Build-Depend on libacl1-dev instead + (closes: #169682). + * Only ask the user for permission to edit if there's a chance of us + damaging something. + + -- Steve Langasek <vorlon@debian.org> Mon, 18 Nov 2002 19:53:00 -0500 + +samba (2.999+3.0.alpha20-3) unstable; urgency=low + + * Make sure smbstatus behavior is sane when Samba *has* been started, + as well as when it has not (closes: #164179). Thank to Robbert Kouprie + <robbert@radium.jvb.tudelft.nl> for this patch. + * Not using 'killall' in any of the maintainer scripts (the last one + remaining was winbind.logrotate.) We now just use 'kill' to send + a SIGHUP to a specific PID (which is stored in a file in + /var/run/samba.) + * Do not depend on procps because we're not using killall anymore. + + -- Eloy A. Paris <peloy@debian.org> Tue, 15 Oct 2002 22:15:57 -0400 + +samba (2.999+3.0.alpha20-2) unstable; urgency=low + + * fix an off-by-one error in smbd/lanman.c, which should shut off the + flood of log messages (closes: #157432) + * add a --config-cache option to the configure invocation, since + autoconf 2.5 doesn't load config.cache by default (closes: #163504) + + -- Steve Langasek <vorlon@debian.org> Sat, 5 Oct 2002 01:40:00 -0500 + +samba (2.999+3.0.alpha20-1) unstable; urgency=low + + * new upstream release + - non-primary groups appear to work again (closes: #161271) + * the official beginning of the upstream 3.0 branch + * exit without error from smbstatus when no connections have + been seen yet (closes: #161489) + + -- Steve Langasek <vorlon@debian.org> Wed, 2 Oct 2002 19:02:00 -0500 + +samba (2.999+3.0cvs20020906-1) unstable; urgency=low + + * CVS update + - domain authentication works again (closes: #158698) + * Factor out common code in samba-common.config + * Handle character set settings in smb.conf on upgrade + (closes: #153913, #158770) + * Don't use killall in logrotate script; there are better ways + (closes: #160076) + * Ignore value of 'hostname lookups' for hosts allow/hosts deny + (closes: #154376) + + -- Steve Langasek <vorlon@debian.org> Sat, 7 Sep 2002 11:46:00 -0500 + +samba (2.999+3.0cvs20020829-1) unstable; urgency=low + + * CVS update. + * Move the smb.conf manpage to the samba-common package (closes: #159572) + + -- Steve Langasek <vorlon@debian.org> Thu, 29 Aug 2002 17:53:25 -0500 + +samba (2.999+3.0cvs20020827-1) unstable; urgency=low + + * CVS update. (Closes: #158508) + * Part 1 of 3 of the library separation patch that Vorlon wrote has + gone upstream - removed the patch from our patches/ directory. + * Debconf note to warn users that their smb.conf will be re-written + and changed if they use Swat to maintain it. (Closes: #158479) + * Fixed typo in samba.prerm. + + -- Eloy A. Paris <peloy@debian.org> Tue, 27 Aug 2002 15:23:23 -0400 + +samba (2.999+3.0cvs20020825-2) unstable; urgency=low + + * scale back the tdbsam migration support, because of undesirable + side-effects; now always defaults to 'no'. + * strip out hyperactive library dependencies that are only needed by + smbd (closes: #155156). + * nuke any broken registry.tdb files left by previous CVS snapshots. + * support rolling back the smbpasswd->tdbsam conversion on downgrade, + since many people are likely to need to downgrade for a while. + * remove postrm handling of legacy directories, and add handling of + current ones. + + -- Steve Langasek <vorlon@debian.org> Sun, 28 Jul 2002 09:44:24 -0500 + +samba (2.999+3.0cvs20020825-1) unstable; urgency=low + + * CVS update. These packages are based on Samba 3.0alpha19 + any + code commited after 3.0alpha19 was released. + + -- Eloy A. Paris <peloy@debian.org> Sun, 25 Aug 2002 14:56:46 -0400 + +samba (2.999+3.0cvs20020723-1) unstable; urgency=medium + + * remove spurious line from samba.config + * migrate from smbpasswd to tdbsam + * re-add the pdbedit util and manpage + * compile in ldapsam support (closes: #146935) + * add PRIVATEDIR to the list of vars we override for the install + target, so Samba doesn't try to create /etc/samba (closes: #153746). + * fix makefile handling of LOGBASEDIR, so that logs always end up in + the right place (closes: 153727). + * Fixed bug in the FHS migration path that causes nmbd to read its + state from one location, but write it out to another. (closes: #154210) + * Make sure nmbd is always looking for wins.tdb in the same place. + + -- Steve Langasek <vorlon@debian.org> Fri, 19 Jul 2002 21:38:54 -0500 + +samba (2.99.cvs.20020713-1) unstable; urgency=low + + * first attempt for 3.0pre. + * only post a debconf note about moving logfiles if we're upgrading + from a version that had the logfiles in the old location + (closes: #152924). + + -- Steve Langasek <vorlon@debian.org> Sat, 13 Jul 2002 12:54:25 -0500 + +samba (2.2.5-2) unstable; urgency=low + + * No longer ship make_printerdef, which is deprecated. (closes: #63059) + * Clean up some empty directories from the samba package. + * Add call to dh_installinit for winbind rc.x symlinks (closes: #151860). + * Clean up per-package documentation lists, to reduce clutter + (closes: #147638). + * Make sure we don't ship pdbedit's man page since we are still using + smbpasswd passwords. (closes: #152208) + * move libnss_wins.so to libnss_wins.so.2, where glibc expects to find + it (closes: #148586). + * reorder postinst, so that installing samba-common from scratch loads + the debconf answers properly (closes: #151985). + * add lintian overrides for winbind, to eliminate some noise. + * rename pam_smbpass changelog to comply with policy. + + -- Steve Langasek <vorlon@debian.org> Sun, 23 Jun 2002 22:45:04 -0500 + +samba (2.2.5-1) unstable; urgency=low + + * New upstream release. + + -- Eloy A. Paris <peloy@debian.org> Sun, 9 Jun 2002 15:49:21 -0400 + +samba (2.2.4+2.2.5pre1-1) experimental; urgency=low + + * Getting ready for Samba 2.2.5. + * Remove patches/parse_spoolss.patch, now included upstream. + * Fixed thinko WRT POSIX ACL support, which we "half-enabled" in + 2.2.4-1. We don't use POSIX ACL support ourselves, so we'd + appreciate reports from those using this feature so we can + be sure this works. + * Fix the filename-matching algorithm used for smbtar's 'exclude' + functionality. (closes: #131571) + * Look for secrets.tdb in /var/lib/samba, and handle in the postinst. + This is not really a config file, because users don't edit it. + (closes: #147429) + * Doxygen fix for libsmbclient.h, thanks to Tommi Komulainen + <Tommi.Komulainen@iki.fi> for the patch. (closes: #144847) + + -- Eloy A. Paris <peloy@debian.org> Tue, 28 May 2002 11:33:51 -0400 + +samba (2.2.4-1) unstable; urgency=low + + * New upstream release (closes: #144713) + * Building with POSIX ACL support (closes: #137819) + * Include samples, exclude INSTALL from libpam-smbpass (closes: #145055) + * Compile with --with-automount, for NIS homedir support (closes: #123396) + * Add a proper 'flags' field to the mount entry we write to /etc/mtab; + fixes a display bug with mount (closes: #140397) + * Added logic to /etc/init.d/samba so a help message is printed out + when Samba is running from inetd _and_ we are not booting, i.e. the + user called the init script manually. Thanks to Francesco + Potorti <pot@gnu.org> for the suggestion on how to implement this. + (Closes: #139807, #140204) + * samba.postinst: added logic so we don't call /etc/init.d/samba if + we are running from inetd (this prevents the stupid help message + to be printed during package upgrades if we are running from inetd.) + * samba.prerm: idem. + * /etc/init.d/samba: delete stale PID files after nmbd and smbd are + stopped. This prevents start-stop-daemon from printing an ugly + error message when called from '/etc/init.d/samba stop'. I prefer + this than running start-stop-daemon with --oknodo because + start-stop-daemon might print other important error messages that with + --oknodo it would otherwise not print. (Closes: #102187, #109301) + * Patch from jerry@samba.org to fix parsing of spoolss structures. + + -- Eloy A. Paris <peloy@debian.org> Thu, 23 May 2002 23:16:52 -0400 + +samba (2.2.3a-7) unstable; urgency=medium + + * More README.debian updates. + * Neutralize the smb.conf 'lock dir' directive, which doesn't mean + what the FHS says it should, and causes us no end of grief. + (Closes: #122299) + * LPRng-handling patch so that jobs printed to recent versions of + LPRng show up properly as 'done' instead of 'paused' in the Windows + print queue. Thanks to Jaroslav Serdula <serdula_jaroslav@vse.sk> + for this patch. (Closes: #139458) + * Applied patch from Urban Widmark <urban@teststation.com> + (smbfs upstream maintainer) to add a '-n' option to smbmount + that does the same as mount's '-n'. (Closes: #139590) + * Minor tweak to unpatch-source so we unpatch sources in the + reverse order we patched them. + * Don't depend on grep in samba.prerm to determine if Samba was + running before the upgrade starts. + * Tweak the wording of debconf templates. + * Incorporate debconf translations for French, Spanish and Portuguese; + thanks to Carlos Valdivia Yagüe <valyag@hotpop.com> (es), + Andre Luis Lopes <andrelop@ig.com.br> (pt_BR), and Philippe + Batailler and Denis Barbier <barbier@debian.org> (fr). + (closes: #142657, #142659, #141551, #141699, #141682) + * Fixed symlinks in the swat package so the point to /usr/share/doc/ + instead of /usr/doc/. Added note to the description of the + swat packages that says that samba-doc must be installed for + the on-line documentation to work. Thanks to Torne Wuff + <torne@wolfpuppy.org.uk>. (Closes: #95437) + * 'dh_installinit -n' gives us no initscript handling -- we need to + handle all starting and stopping of daemons ourselves, which wasn't + happening in the {pre,post}rm scripts. + * Vary the priority of the debconf question "Do you want to generate + /etc/samba/smbpassd?" depending on whether the file already exists. + File exists -> priority 'medium', file does not exist -> priority + 'low'. Changed priorities of all other questions from 'high' to 'medium'. + + -- Steve Langasek <vorlon@debian.org> Sat, 20 Apr 2002 17:48:27 -0400 + +samba (2.2.3a-6) unstable; urgency=low + + * Call db_stop as soon as we're done with debconf in the postinst, to + avoid hanging bugs (closes: #137813) + * Ony call 'update-inetd --add' on first installation, just as we only + call 'update-inetd --remove' on package purge. + * Bring our shipped smb.conf closer in line with the upstream + defaults: don't twiddle the send/recv buffer sizes, since the Linux + kernel already provides a much better default setting + (closes: #80966, #80934, #137415, #133477) + * Added libnss_wins.so to the winbind package (closes: #137201) + * Updates to README.debian. + + -- Eloy A. Paris <peloy@debian.org> Tue, 12 Mar 2002 10:57:40 -0500 + +samba (2.2.3a-5) unstable; urgency=low + + * Having multiple workgroup lines in your smb.conf, though wacky, is + perfectly valid. Account for this in samba-common.config. + (closes: #137157) + + -- Steve Langasek <vorlon@debian.org> Sun, 10 Mar 2002 21:52:51 -0600 + +samba (2.2.3a-4) unstable; urgency=low + + * Fixed typo in samba.postinst. Cosmetic fixes there as well. + * Fix to improper usage of /usr/bin/tr in samba-common config script + (closes: #137744) + + -- Steve Langasek <vorlon@debian.org> Sat, 9 Mar 2002 14:14:02 -0500 + +samba (2.2.3a-3) unstable; urgency=medium + + * Make sure /etc/init.d/samba is executable before calling it + in the postinst. Quickly checked all other maintainer scripts + to make sure we are not calling an init script if it is not + executable. (closes: #137321) + * Fix up maintainer scripts to detect if samba was not running before + an upgrade. (closes: #33520, #130534) + * Make sure /etc/samba/ is included in the samba-common package. + Closes: #137157 + + -- Steve Langasek <vorlon@debian.org> Fri, 8 Mar 2002 11:13:21 -0500 + +samba (2.2.3a-2) unstable; urgency=low + + * merge in debconf support: + - Moved all smb.conf-related questions to samba-common (smb.conf + is part of the samba-common package, not the samba package.) + - smb.conf is not a samba-common conffile anymore since it is + being managed by debconf. It is ABSOLUTELY necessary to make + sure /etc/samba/smb.conf _NEVER_ gets overwritten by changes + made via debconf. In other words, any changes made by the user + should be honored by the debconf interface. + - samba.postinst now moves old log files from /var/log/ to + /var/log/samba/. There's a Debconf note that informs the user + the log files are stored now in a new location. + - debian/control: + + Make samba depend on debconf. + - New file debian/samba.templates. + - New file debian/samba.config. + - Re-worked debian/samba.postinst. + + Got rid of all /etc/samba/debian_config sillyness. + - remove /usr/sbin/sambaconfig; "dpkg-reconfigure samba" replaces + it. + - Removed debian/samba.prerm. + - Cleaned up /etc/init.d/samba. + + Added infrastructure for debconf. + + Got rid of all /etc/samba/debian_config sillyness. + + Got rid of /etc/samba/smbpasswd conversion stuff for + compatibility with versions of Samba < 2.0.0final-2. + (closes: #127959, #34408, #113594) + * make samba.postinst ignore the absence of /var/log/{s,n}mb*; + makes for a clean upgrade path. + * Building with MSDFS support (closes: #116793) + + -- Steve Langasek <vorlon@debian.org> Tue, 5 Mar 2002 14:14:33 -0600 + +samba (2.2.3a-1) unstable; urgency=low + + * New upstream version (closes: #135001) + * Potato builds were failing because debian/rules was not creating + debian/winbind/etc/logrotate.d/. A user having problems creating + Potato packages brought this to my attention. dh_installlogrotate + takes care of creating the directory for us, that's why we didn't + notice. + * Removed code that converts /etc/samba/smbpasswd from an ancient + format to the new format of Samba 2.0.0 and later. + Closes: #134375 - samba: postinst failed due to missing + /usr/bin/convert_smbpasswd. + * Re-organized FHS migration code in samba.postinst. Make sure we + don't fail when we move files that don't exist. + Closes: #133813 - samba: Install failed. + * Adding docs. to the libpam-smbpass package. + * Remove man pages for findsmb because we are not providing this + script. + Closes: #134181 - findsmb referenced, but not included. + * Removed replace.patch because it is now present upstream. + * Added patch from Jerry Carter to fix a problem when saving + document preferences for printing from NT clients. + * The real winbindd daemon is a forked process so we can't use + --make-pidfile when calling start-stop-daemon. Fixed + /etc/init.d/winbind to work around the issue. Thanks to + Lin Li <linl@xandros.com> for the patience and for reporting + the problems. Hopefully I got it right this time. + + -- Eloy A. Paris <peloy@debian.org> Wed, 20 Feb 2002 18:39:03 -0500 + +samba (2.2.3-6) unstable; urgency=low + + * Make sure there are actual files in /var/state/samba before trying + to move them (Closes: #133534, #133510). + * Fix up the 2.2.3 makefile so that pam_smbpass builds correctly + again. + + -- Steve Langasek <vorlon@debian.org> Tue, 12 Feb 2002 09:19:29 -0600 + +samba (2.2.3-5) unstable; urgency=low + + * Whoops, missed a spot on the samba.postinst -- will fail badly if + /var/state/samba/ no longer exists. Better get this fix into the + next upload. ;) (Closes: #133088) + * Regenerate configure only if it is older than configure.in. + * Fix smbd handling of network neighborhood lists, which was missed + in the FHS conversion (Closes: #133091) + + -- Eloy A. Paris <peloy@debian.org> Sat, 9 Feb 2002 16:37:57 -0500 + +samba (2.2.3-4) unstable; urgency=low + + * FHS cleanup; files in /var are now properly sorted according to + their nature. (Closes: #102101) + * Remove patches to source/configure, since we now call autoconf to + regenerate this file cleanly. + * lintian fixes: + - Create winbind.conffiles and add /etc/logrotate.d/winbind and + /etc/init.d/winbind to it. + - Use a relative symlink for /usr/lib/cups/backend/smb. + - Removal of a .cvsignore file in the samba-doc package. + * winbind.init fixes: + - Corrected name of the pid file (Steve) + - Make start-stop-daemon create a pid file for winbindd since it + does not create one on his own. + * #DEBHELPER# is not needed in samba.postinst because we are adding + manually everything that debhelper adds automatically. In fact, + since we are calling update-rc.d without standard paramaters I + think we can't use #DEBHELPER#. + * Fix fatal syntax error in samba.prerm. + + -- Steve Langasek <vorlon@debian.org> Thu, 7 Feb 2002 13:12:08 -0500 + +samba (2.2.3-3) unstable; urgency=low + + * work on lintian-cleanness in the package (wrong permissions, + maintainer scripts in need of debhelpering) + * /lib/security/pam_smbpass.so is now being included in the + libpam-smbpass package only, and not in both the libpam-smbpass and + samba packages (which was the case prior to 2.2.3-3.) + * Instead of making our patch scripts executable in the rules file + we run them through /bin/sh. + * New 'winbind' package that has all the winbind stuff that was in the + samba package in 2.2.3-2 and before. + * Added replace.patch: patch from Jeremy Allison to fix problems when + replacing or overwriting files in a Samba share. Patch was sent to + the samba mailing list. + + -- Eloy A. Paris <peloy@debian.org> Tue, 5 Feb 2002 21:12:48 -0500 + +samba (2.2.3-2) unstable; urgency=low + + * add support to debian/scripts/{patch-source,unpatch-source} for + automatic updating and cleaning of <version.h>. This was a request + from the Samba Team: they wanted us to clearly mark our packages + so it is always known a user is running Samba with (possibly) + Debian-specific patches. + * Change init.d killscript link to K19samba, so we stop before autofs + (closes: 117327) + * Make our patch scripts executable in the rules file -- dpkg won't do + this for us (closes: #132415). + + -- Steve Langasek <vorlon@debian.org> Mon, 4 Feb 2002 09:51:00 -0600 + +samba (2.2.3-1) unstable; urgency=low + + * New upstream release (closes: #131228). + * Restructured build system that provides DBS-like separation of + patches + * Fix typo in smbfs description (closes: #116209). + * Use killall -q in logrotate.d script, to avoid spurious cron + emails (closes: #130100). + + -- Steve Langasek <vorlon@debian.org> Sat, 2 Feb 2002 19:56:18 -0500 + +samba (2.2.2-12) unstable; urgency=high + + * (Steve) Patch for source/client/client.c. + Closes: #86438 smbclient: Transfering several GB causes the average + speed to be messed up. + * Uploading with urgency=high to expedite the move from unstable + to testing because of the security problem fixed in -11. + + -- Eloy A. Paris <peloy@debian.org> Fri, 25 Jan 2002 22:31:12 -0500 + +samba (2.2.2-11) unstable; urgency=low + + * Building with --with-libsmbclient. We have created two new + packages: libsmbclient and libsmbclient-dev. Hopefully this + will help some people that want to add the capability of + speaking SMB to their applications. + Closes: #117132 - libsmbclient support library? + * (Steve) Make swat do the right thing when reading (parsing) + the saved preferences in smb.conf. + Closes: #55617 swat mutilates the linpopup message command. + * Updated README.Debian. Updated descriptions in debian/control. + * Remembered to bump up version number in source/include/version.h + (need to automate this or else I'll keep forgetting.) + * (Steve) one liner for source/web/diagnose.c. + Closes: #106976 - smbd/nmbd not running message with swat/linuxconf. + * Added '|| true' to the post-rotate script so logrotate doesn't + fail if either nmbd or smbd is not running. + Closes: #127897 - /etc/logrotate.d/samba fails if there is no smbd process. + * Fixed incorrect file locations in swat's man page and added a + Debian-specific note to /usr/share/doc/swat/README. + Closes: #71586 swat: needs documentation fixes for debian. + * smbmount in the smbfs package does not have the setuid bit set. + Apparently, smbmount uses libsmb without checking the environment. + Thanks to Christian Jaeger <christian.jaeger@sl.ethz.ch> for + finding the local root exploit. + * Applied old patch from Jerry) Carter" <jerry@samba.org> to correct + the following two problems in Samba 2.2.2: + - %U and %G could not be used in services names + in smb.conf. + - %G would fail to be expanded in an "include = ..." + line. + + -- Eloy A. Paris <peloy@debian.org> Sat, 19 Jan 2002 21:35:26 -0500 + +samba (2.2.2-10) unstable; urgency=low + + * (Steve) Add missing manual pages. + Closes: Bug#128928: missing manpages in smbfs. + + -- Eloy A. Paris <peloy@debian.org> Sun, 13 Jan 2002 14:39:55 -0500 + +samba (2.2.2-9) unstable; urgency=low + + * (Steve) Fix broken URL's in HTML docs. + Closes: Bug#17741: bad links in html docs (at last!!!) + + -- Eloy A. Paris <peloy@debian.org> Fri, 11 Jan 2002 13:37:07 -0500 + +samba (2.2.2-8) unstable; urgency=low + + * Added "Replaces: samba (<= 2.2.2-5)" to the smbclient section in + debian/control so rpcclient.1, which was in samba-2.2.2-5, does not + cause problems now that it is part of smbclient (>= 2.2.2-6). Closes: + Closes: Bug#128684: error upgrading smbclient in sid. + + -- Eloy A. Paris <peloy@debian.org> Fri, 11 Jan 2002 11:42:40 -0500 + +samba (2.2.2-7) unstable; urgency=low + + * (Steve) Patch to make behavior honor what the docs. say about "hosts allow" + taking precedence over "hosts deny". + Closes: Bug#49249: swat: error with host deny ?! + + -- Eloy A. Paris <peloy@debian.org> Thu, 10 Jan 2002 12:36:58 -0500 + +samba (2.2.2-6) unstable; urgency=low + + * (Steve) Adds manpage for rpcclient to the proper file, + removes smbtorture from the distro because this tool isn't intended for + widespread consumption. + Closes: #63057 - no manual page for smbtorture. + * (Steve) Removed -gnu from the configure arguments (--build, --host) in + debian/rules so config.sub is able to properly create the host and target + tuples. + + -- Eloy A. Paris <peloy@debian.org> Wed, 9 Jan 2002 14:39:51 -0500 + +samba (2.2.2-5) unstable; urgency=low + + * Fixes from vorlon: + * Use /usr/bin/pager instead of more. + Closes: #125603: smbclient violates pager policy. + * Make /etc/logrotate.d/samba a conffile, send smbd and nmbd + a SIGHUP to have the log files reopened, fixes to + /etc/logrotate.d/samba. + Closes: #127897: log file rotation. + Closes: #118277: /etc/logrotate.d/samba not listed in conffiles. + * s/covert/convert/. + Closes: #121653 probable typo in install message. + + -- Eloy A. Paris <peloy@debian.org> Sun, 6 Jan 2002 03:14:58 -0500 + +samba (2.2.2-4) unstable; urgency=low + + * Applied patch from Steve to work around problem in glibc that affects the + HPPA architecure. The patch detects the error condition at configure time + and compiles without LFS support if necessary. + Closes: Bug#126763: samba completely broken on hppa. + * Including unicode_map.1251. + Closes: Bug#126719: samba-common: unicode_map.1251 missing. + * Updated smbd daemon version to match Debian package version. + Closes: Bug#127199: Package version and smbd daemon version don't match. + + -- Eloy A. Paris <peloy@debian.org> Mon, 31 Dec 2001 14:32:47 -0500 + +samba (2.2.2-3) unstable; urgency=low + + * Added some spaces in package description in debian/control. + Closes: #120730 - missing spaces in package description for nice + alignment. + * Spelling fixes. + Closes: #125328, #125329, #125330, #125367, #125365, #125403. + * Steve Langasek <vorlon@debian.org> is the co-maintainer of the Debian + Samba packages!!! Added him to the uploaders field in debian/control. + + -- Eloy A. Paris <peloy@debian.org> Tue, 18 Dec 2001 00:54:25 -0500 + +samba (2.2.2-2) unstable; urgency=low + + * Backed out changes to source/filename.c per Andrew Tridgell's request. + This changes were introduced in 2.2.1a-7 as an attempt to fix #47493. + Tridge found out that they break smbd. + * Changed version number in source/includes/version.h so it is clear that + this is a version of Samba packaged for Debian. This is another request from + Tridge and will help the Samba Team to get bogus bug reports. + * Added Samba-HOWTO-Collection.pdf and other README files to the + /usr/share/doc/<package>/ directories. + * Installing libnss_winbind.so and pam_winbind.so. + Closes: #116790: nss and pam modules for winbind missing. + * Removed user-emacs-settings from changelog. + + -- Eloy A. Paris <peloy@debian.org> Mon, 29 Oct 2001 19:16:26 -0500 + +samba (2.2.2-1) unstable; urgency=low + + * New upstream version. + * Temporary fix for #113763 (Steve Langasek) + * Quick hack to avoid smbmount reveal password length. Please note + that even with this hack there is a small window when password is + completely visible with 'ps aux'. There are other methods that should + be used to automate mounting of SMB shares. + Closes: #112195: smbmount-2.2.x reveals password length. + * Applied patch from Steve Langasek <vorlon@debian.org> to prevent + forcing use of setresuid() in Sparc. + Closes: #112779: samba build forces use of setresuid, which causes + smbd to fail on Sparc. + + -- Eloy A. Paris <peloy@debian.org> Mon, 15 Oct 2001 10:26:10 -0400 + +samba (2.2.1a-9) unstable; urgency=low + + * Replaced $(LD) with $(CC) all the way through source/Makefile. + Closes: #111036: ld shouldn't be used to link shlibs. + * s/\/bin\/mail/\/usr\/bin\/mail/ in smb.conf's man page (HTML and + sgml as well.) + Closes: #110963: smb.conf: mail should be /usr/bin/mail. + * Documented better smbclient's -W behavior. Patch from Steve + Langasek. + Closes: #53672: smbclient: -W flag is interpreted as domain, not + workgroup. + + -- Eloy A. Paris <peloy@debian.org> Tue, 4 Sep 2001 23:10:41 -0400 + +samba (2.2.1a-8) unstable; urgency=low + + * Set some reasonable default perms for the samba logdir (again, + thanks to vorlon :-) + Closes: #72529: insecure permissions on log files. + + -- Eloy A. Paris <peloy@debian.org> Sun, 26 Aug 2001 15:40:47 -0400 + +samba (2.2.1a-7) unstable; urgency=low + + * Another attempt at fixing #47493. Patch from Steve Langasek + <vorlon@netexpress.net>. Let's keep our fingers crossed Steve! + + -- Eloy A. Paris <peloy@debian.org> Sun, 26 Aug 2001 13:37:06 -0400 + +samba (2.2.1a-6) unstable; urgency=low + + * Backed out fix to #47493 introduced in 2.2.1a-4 as it is causing + smbd to die with signal 11 under some unidentified situations. + Closes: #109774: Latest debian version breaks printer driver download. + Closes: #109946: not all files appear in samba-exported directories. + * Another patch from Steve Langasek. This one adds quotes around + printer names for print systems it's reasonable for Debian to + support. Together with the patch in #29957 (see changelog for + 2.2.1a-4), this should take care of the problems with multi-word + printer names in Samba. + + -- Eloy A. Paris <peloy@debian.org> Fri, 24 Aug 2001 21:12:27 -0400 + +samba (2.2.1a-5) unstable; urgency=low + + * Important changes that affect how Samba is built on Debian + machines are implemented in this release. All of this changes + were suggested by the energetic Steve Langasek <vorlon@debian.org>, + and his arguments were so sound and reasonable that I decided + to implement them. Here's Steve's original changelog: + + * Fix up the build system to avoid needing to run configure + as root to answer questions we already know the answers to. + * In the process, make surprising progress towards being able to + cross-compile the samba packages. + + -- Eloy A. Paris <peloy@debian.org> Fri, 24 Aug 2001 01:08:06 -0400 + +samba (2.2.1a-4) unstable; urgency=low + + * Fixed typo in smbmount's mount page. + Closes: #109317: smbfs: mistype in smbmount manpage. + * Included symlink to smbspool to better support CUPS printing. + Closes: #109509: include symlink for cups samba support. + * Applied patch from Steve Langasek <vorlon@netexpress.net> to + fix bug #29957. + Closes: #29957: samba strips trailing " from strings in smb.conf. + * First attempt at fixing #47493. Another patch from Steve "I want + a bug-free Samba" Langasek. + Closes: #47493: Samba doesn't handle ':' in dir names right. + + -- Eloy A. Paris <peloy@debian.org> Tue, 21 Aug 2001 23:26:38 -0400 + +samba (2.2.1a-3) unstable; urgency=low + + * Steve Langasek <vorlon@netexpress.net> has been hard at work in + the last few days looking at the long list of open bugs filed + against the Samba packages. I don't know how to thank him. It's been + a pleasure working with Steve, and all the fixes, patches, etc. in + this release come from him. The bug list is greatly reduced thanks + to Steve's efforts. + * Steve's additions/modifications/patches/etc. are: + - New package that (libpam-smbpass) provides pam_smbpass. Before, this + was provided in another package but now the sources are part of + the Samba sources so we can start providing it from here. + Closes: #107043 - pam_smbpass now present in Samba source, + should be built from there + - Patch to source/smbd/service.c that allows admins to call + /bin/umount from the root postexec of a Samba share. + Closes: #40561 - samba pre/postexec commands do not work. + - Clear TMPDIR before starting smbd in /etc/init.d/samba. + Closes: #51295 - Problems with Samba and TMPDIR. + - Correction to documentation of "guest only". + Closes #38282 - "guest only" share still requires a password. + * Applied patch from Santiago Vila <sanvila@unex.es> to convert + /usr/sbin/mksmbpasswd from a shell script into a real awk script. + Sorry it took so long, Santiago; I hadn't realized you even + provided a patch :-) + Closes: #77891 - mksmbpasswd could be a real awk script. + * Updated description of the smbfs and smbclient packages. Also have + each package recommend the other. + Closes: #108650: Should suggest or recommend smbfs. + + -- Eloy A. Paris <peloy@debian.org> Mon, 13 Aug 2001 22:21:55 -0400 + +samba (2.2.1a-2) unstable; urgency=low + + * Build-depends: depend on debhelper (>=2.0.103). + Closes: #105795: Build-Depends are wrong. + * Run samba's preinst and postinst scripts without -e so failed commands + do not abort installation. + Closes: #106384: postinstall crashes abnormally. (And really closes + #104471.) + + -- Eloy A. Paris <peloy@debian.org> Thu, 26 Jul 2001 00:30:37 -0400 + +samba (2.2.1a-1) unstable; urgency=low + + * New upstream version. + * Make sure samba's postinst script exits with a zero status. + Closes: #104471: Samba postinst problem. + + -- Eloy A. Paris <peloy@debian.org> Thu, 12 Jul 2001 21:55:21 -0400 + +samba (2.2.1-1) unstable; urgency=low + + * New upstream version. + Closes: #103339: config.guess and config.sub update required. + Closes: #98518: Samba 2.2 can't act as PDC for NT4/W2K due to + incompatibility with PAM. + Closes: #97447: nmbd crashes due to bugs in DAVE 2.5.2. + Closes: #95777: Samba 2.2 is unable to join or authenticate against + Samba 2.2 PDC domain. + Closes: #68842: samba should use PAM for password changing (I + haven't personally tried this one, but it's been + advertised this works.) + Closes: #102506: PAM account checking fails. + Closes: #102518: Complains about unknown paramter "obey pam + restrictions" + Closes: #94774: Build failure on PARISC machines. + * Moved away from /etc/cron.weekly/samba for log file rotation. + Now using logrotate. + Closes: #95548: typo in /etc/cron.weekly/samba. + Closes: #74951: nmbd does not rename its log file. + * Removed Debian-specific addtosmbpass.8 man page since this script + is not longer provided upstream. Users should use the smbpasswd + program instead. + * Updated sample /etc/samba/smb.conf to reflect the recent changes + affecting handling of PAM authentication. Also updated + /etc/pam.d/samba. + + -- Eloy A. Paris <peloy@debian.org> Wed, 11 Jul 2001 00:44:14 -0400 + +samba (2.2.0.final.a-1) unstable; urgency=high + + * New upstream version (contains security fix from DSA-065-1.) + Closes: #97241: samba 2.2.0 fails to process hostnames in + "hosts allow" config line. + * Removed Debian-specific addtosmbpass.8 man page since this script + is not longer provided upstream. Users should use the smbpasswd + program instead. + Closes: #98365: addtosmbpass is missing from 2.2.0.final-2. + * Updated sample /etc/samba/smb.conf to reflect the recent changes + affecting handling of PAM authentication. Also updated + /etc/pam.d/samba. + + -- Eloy A. Paris <peloy@debian.org> Sun, 24 Jun 2001 11:11:59 -0400 + +samba (2.2.0.final-2) unstable; urgency=low + + * Added libcupsys2-dev to Build-Depends. + * Samba depends now (again) on netbase so update-inetd is always + available for the Samba maintainer scripts. + Closes: #86063: Fails to uninstall if inetd is not installed. + * Updated source/config.{sub,guess} so ARM built doesn't fail. + Closes: #94480: config.sub out of date; can't build on arm. + Closes: #85801: config.sub/guess out of date. + * Not using brace expansion, i.e. {foo,bar} in any of the maintainers + scripts nor in debian/rules. + Closes: #88007: samba postrm has is not POSIX sh compliant. + + -- Eloy A. Paris <peloy@debian.org> Sat, 21 Apr 2001 17:27:18 -0400 + +samba (2.2.0.final-1) unstable; urgency=low + + * New upstream release. Lots of new things. See WHATSNEW.txt. + * Goofy version number because of my stupidity when assigning version + numbers to the CVS packages I have been uploading to experimental. + Will be fixed when 2.2.1 is released. I've no doubts a 2.2.1 release + will follow soon. + + -- Eloy A. Paris <peloy@debian.org> Tue, 17 Apr 2001 22:58:14 -0400 + +samba (2.2.0.cvs20010416-1) experimental; urgency=low + + * CVS update. + + -- Eloy A. Paris <peloy@debian.org> Mon, 16 Apr 2001 21:25:15 -0400 + +samba (2.2.0.cvs20010410-1) experimental; urgency=low + + * CVS update. + * Added libreadline4-dev to Build-Depends. + + -- Eloy A. Paris <peloy@debian.org> Tue, 10 Apr 2001 16:53:45 -0400 + +samba (2.2.0.cvs20010407-1) experimental; urgency=low + + * CVS update. Includes what is in 2.2.0alpha3. + + -- Eloy A. Paris <peloy@debian.org> Sat, 7 Apr 2001 16:00:33 -0400 + +samba (2.2.0.cvs20010316-1) experimental; urgency=low + + * Started working on Samba 2.2.0. Using the SAMBA_2_2_0 branch + from Samba CVS. + * Not compiling rpctorture as it has compile errors. Change in + debian/rules. + * Removed Linux kernel 2.0.x and smbfs compatibility baggage. Now + the smbfs does not support 2.0.x kernels; a kernel > 2.2.x is + needed to use smbfs. Updated debian/control, debian/rules and + README.Debian to reflect this change. + * Added to swat a versioned dependency on samba (so a user is forced to + install a new version of swat each time a new version of samba is + installed.) + + -- Eloy A. Paris <peloy@debian.org> Sun, 18 Mar 2001 14:21:14 -0500 + +samba (2.0.7-5) unstable; urgency=medium + + * Transition from suidmanager to dpkg-statoverride. + + -- Eloy A. Paris <peloy@debian.org> Thu, 18 Jan 2001 23:51:56 -0500 + +samba (2.0.7-4) unstable; urgency=medium + + * Applied Urban Widmark <urban@teststation.com> fixes to smbmount. Urban + is the maintainer of the smbfs in the kernel and of the userland + utilities. + * Links to HTML documents are correct now. + Closes: #69439: swat: Broken help file symlinks + Closes: #72615: samba-doc directory changed: removed htmldocs from path + Closes: #75847: swat: Wrong symlink + Closes: #66857: Wrong links to html documents. + Closes: #77912: misplaced documentation symlinks for swat + * Building Samba with CUPS support. For this I reverted the change to + source/configure.in that I did in 2.0.7-3 and re-ran autoconf. + Closes: #59038: samba: not compiled with cups support. + * Fix against previous known/unknown user time difference patch to swat + (make username / password lookups take the same time.) Remove CGI + logging code in Swat. + Closes: #76341 - Security holes in swat + * Updated Build-depends. + * Updated debian/copyright to refer to the correct location of the GPL. + * debian/rules: changed DESTDIR to `pwd`/debian/samba (was + `pwd`/debian/tmp.) + * debian/rules: added '--sourcedir=debian/samba' to dh_movefiles (for some + strange reason dh_installdirs is not creating debian/tmp/ so I needed + to tweak everything to install stuff in debian/samba rather than in + debian/tmp.) + * debian/control: changed section of samba-docs to 'doc' (was 'docs') + * Using relative symlinks in /usr/share/samba/swat/ (changed debian/rules + and source/scripts/installswat.sh.) + * Fixed (by tweaking debian/rules) + /usr/bin/{smbmnt,smbumount-2.*,smbmount-2.*} to be suid. + * Added "Provides: samba-client" to smbclient's section in control. + Closes: #71143: smbclient: Smbclient should provide samba-client. + * Fix for desired_access being zero in map_share_mode() (patch to + source/smbd/nttrans.c.) Thanks to Gary Wilson + <wilsong@sergievsky.cpmc.columbia.edu> for bringing this patch to my + attention. + * Hacked source/lib/util_sec.c so smbd works fine in both 2.0.x and + 2.2.x kernels even when the build is done in a system running + a 2.2.x kernel. + Closes: #78858: samba-common: samba2.0.7 needs kernel 2.2.x but + doesnt depend on it. + Closes: #72758: README.Debian should comment on 2.0.x kernels. + Closes: #56935: Samba 2.0.6 and Kernel 2.0.x. + Closes: #58126: Samba 2.0.6 and Kernel 2.0.x -- more info. + Closes: #60580: samba: failed to set gid. + Closes: #64280: Samba panics, can't set gid. + Closes: #66816: Must deal with brokenness under 2.0.x. + Closes: #67682: potatoe samba 2.0.7-3 out of order, 2.0.5a-1 OK. + Closes: #69735: PANIC: failed to set gid + Closes: #66122: "smbclient -L localhost -U%" returns with "tree + connect failed: code 0". + Closes: #57637: Samba says tree connect error. + Closes: #58015: potato samba wins support is broken. + * Fixed comments in sample smb.conf to point to the correct location. + Closes: #69578: comments in smb.conf points to wrong path. + * Move codepages from /etc/samba/codepages/ to + /usr/share/samba/codepages/. + Closes: #63813: samba; codepages should go in /usr/lib. + * Moved /var/samba/ to /var/state/samba/. + Closes: #49011: samba package not FHS compliant. + * Hacked source/configure.in (and re-ran autoconf) so yp_get_default_domain() + is found. + Closes: #44558: netgroup support missing in samba 2.0.5a-1. + * /etc/init.d/samba was calling start-stop-daemon with both --pidfile and + --exec. Got rid of --exec so --pidfile works. + + -- Eloy A. Paris <peloy@debian.org> Thu, 11 Jan 2001 00:15:57 -0500 + +samba (2.0.7-3) frozen unstable; urgency=high + + * Release manager: this closes a RC bug. + * Commented out the section in source/configure.in that auto-detects + CUPS support and then ran autoconf to generate a new configure + script. This was done to prevent machines that have libcupsys-dev + installed from detecting CUPS support and adding an unwanted + dependency on libcupsys. This way the whole printing system + won't break on upgrades. CUPS support should be added after + Potato is released. + Closes: #65185: samba-common: Upgrading removes printing system. + Closes: #64496: smbfs: smbfs on powerpc has a dependency on cupsys. + * Updated README.debian. + Closes: #64594: Old README.Debian in /usr/share/doc/samba. + + -- Eloy A. Paris <peloy@debian.org> Tue, 20 Jun 2000 19:16:04 -0400 + +samba (2.0.7-2) frozen unstable; urgency=high + + * Release manager: this closes RC bug #63839 that prevents Samba + to be built from source. + * Fixed a stupid typo in debian/rules that was preventing Samba + to be built from source. + Closes: #63839: samba_2.0.7-1(frozen): build error (SAMBABOOK dir) + * I forgot to mention that O'Reilly's book "Using Samba" was donated + to the Open Source community. The book was included in Samba 2.0.7 + in HTML format and is part of the Debian Samba package since + Samba 2.0.7-1. + * In Samba 2.0.7-1, the "Using Samba" book and a number of HTML help + files were supposed to be provided in both the swat and the samba-doc + packages. This duplication was a waste of space. Starting with + Samba 2.0.7-2, swat recommends samba-doc and the book and the HTML + files are included only in samba-doc, and are accessed via symlinks + from within swat. + Closes: #58810: superfluous files in swat? + * Added a 'echo "."' to /etc/init.d/samba in the reload) section. + Closes: #63394: "echo ." missing in reload section of init.d script + * Fixed typo in docs/htmldocs/using_samba/ch06_05.html. + Closes: #64344: typo "encrypted passwords" + * Cleaned up samba's postrm script so important common files aren't + deleted when samba is purged. Created a samba-common.postrm script. + Closes: #62675: purging samba removes /etc/samba/smb.conf. + Closes: #63386: samba --purge removes /etc/samba dir even though + smbclient/smbfs/samba-common packages are still installed + + -- Eloy A. Paris <peloy@debian.org> Wed, 3 May 2000 02:42:07 -0400 + +samba (2.0.7-1) frozen unstable; urgency=low + + * New upstream version. Dear Release Manager: please allow this + package to go to frozen as it contains fixes to a _lot_ of problems. + You can take a look at all the problems fixed by this release in + the official upstream announcement at + http://us1.samba.org/samba/whatsnew/samba-2.0.7.html. + * Added --with-utmp to add utmp support to smbd (this is new in Samba + 2.0.7) + * Closes: #62148 - samba not rotating filled logs. + * Closes: #56711: Samba doesn't manage well long share name (please note + that it's possible to connect to shares with names longer than + 14 characters but the share will be listed with a name truncated to + 13 characters.) + * Closes: #51752 - NT DOMAIN - NET USE * /HOME not mapping (error 67). + Closes: #50907 - logon path not working. + This is not a bug, it's just Samba doing the same thing an NT server + does. See WHATSNEW.txt and smb.conf's man page for details. + * Closes: #48497 - error executing smbsh in debian-potato. (smbwrapper + is not supported anymore.) + * Closes: #58994 swat: typo in swat description. + * Closes: #45931 - Samba dies with SIGILL on startup. (Hardware + problems, person that reported the bug never came back.) + Closes: #54398 - smbadduser fails, looks for ypcat. + * Fixed swat's man page to include Debian specific installation + instructions. There's not necessary to edit /etc/services or + /etc/inetd.conf. + (Closes: #58616 - incomplete install config && incorrect installation + instructions.) + * s/SBINDIR/\"/usr/sbin\"/g in source/web/startstop.c to prevent swat + to look for smbd and nmbd in the wrong place when requested to start or + stop smbd or nmbd. + (Closes: #55028 - swat can't start samba servers.) + * Closes: #37274: smbclient does not honour pot. (Tested and seems to be + working now.) + * Not confirmed, but should fix #56699, #62185, #56247, #52218, #43492, + #50479, #39818, #54383, #59411. + (please re-open any of this if the problem still exists - I was unable + to confirm any of this because I could never reproduce them.) + Closes: #56699 - Samba's nmbd causes random kernel oops several + times in a row. + Closes: #62185 - nmbd's forking until no more file descriptors are + available. + Closes: #56247 - session setup failed: ERRSRV - ERRbadpw. + Closes: #52218 - Either wins proxy does not work, or I don't understand + it. + Closes: #43492 - intermittent problem changing password. + Closes: #50479 - Can't access windows 2000 shares with samba. + Closes: #39818 - samba-common: Upgrading Samba from the Slink version. + Closes: #54383 - samba-common: Missing /etc/smb.conf. + Closes: #59411 - smbclient: cannot browse Win2k shares. + + -- Eloy A. Paris <peloy@debian.org> Thu, 27 Apr 2000 16:07:45 -0400 + +samba (2.0.6-5) frozen unstable; urgency=low + + * Oppsss! samba-common doesn't depend on libcupsys1 so the binaries + in this package are broken unless libcupsys1 is installed. + samba-common has a "grave" bug because of this. Instead of adding + libcupsys1 to the Depends: list of each package in debian/control + I investigated why dh_shlibs was not picking the dependency + automatically. It turns out that it's probably a bug in libcupsys1 + because the format of its shlibs file is not correct. I fixed that + file (/var/lib/dpkg/info/libcupsys1.shlibs) and now dependencies are + picked correctly. I'll talk to the libcupsys1 maintainer. + + I think the addition of CUPS support to Samba is a big change that + should not go into Frozen. So, I decided to back up the addition + of CUPS support I did in 2.0.6-4 to minimize problems. I'll add + CUPS support again when I start working on Samba for Woody. + (Closes: #59337 - samba-common has a missing dependency) + + -- Eloy A. Paris <peloy@debian.org> Wed, 1 Mar 2000 08:40:02 -0500 + +samba (2.0.6-4) frozen unstable; urgency=low + + * It seems that sometimes nmbd or smbd are not killed when upgrading. + I think it is because in samba's prerm script I was calling + start-stop-daemon with the --pidfile switch and in old versions of + Samba the nmbd and smbd daemons did not store their PIDs in a file in + /var/samba/. I changed debian/samba.prerm so the existence of the + PID files is checked before calling "start-stop-daemon --pidfile ..." + If the PID files do not exist then start-stop-daemon is called + without the --pidfile parameter. + (Closes: #58058 - upgrade from slink went badly) + * Fixed typo in description of swat package in debian/control. + * Installed libcupsys1-dev so the configure script picks up CUPS + and Samba is compiled with CUPS support. Also added libcupsys1 to + the Depends: list of package samba in debian/control. + (Closes: #59038 - samba not compiled with cups support) + * Added a small paragraph to debian/README.debian warning about possible + problems with the WINS code in Samba 2.0.6. + + -- Eloy A. Paris <peloy@debian.org> Mon, 28 Feb 2000 14:00:42 -0500 + +samba (2.0.6-3) frozen unstable; urgency=low + + * Applied patch posted by Jeremy Allison to the samba mailing list + that should take care of the internal errors reported in bug #52698 + (release-critical). Wichert: please test as I never could reproduce + it here. + (Closes: #52698 - samba gets interbal errors) + * Moved samba-docs to the 'docs' section. + (Closes: #51077 - samba-doc: wrong section) + * Added reload capability to /etc/init.d/samba (only for smbd because + nmbd does not support reloading after receiving a signal). + (Closes: #50954 - patch to add reload support to /etc/init.d/samba) + * Corrected "passwd chat" parameter in sample /etc/samba/smb.conf so + Unix password syncronization works with the passwd program currently + in Potato. Thanks to Augustin Luton <aluton@hybrigenics.fr> for + the correct chat script. + * Stole source/lib/util_sec.c from the CVS tree of what will become + Samba 2.0.7 or whatever so we can use the same binaries under + both 2.0.x and 2.2.x kernels. + (Closes: #51331 - PANIC: failed to set gid) + * smbadduser is now provided as an example and it's customized for Debian. + I am not providing this script in /usr/sbin/ because then I would need + a dependency on csh, something that I don't want to do. + (Closes: #51697, #54052) + * Fixed the short description of the smbfs package in debian/control. + (Closes: 53534 - one-line description out of date). + + -- Eloy A. Paris <peloy@debian.org> Tue, 23 Nov 1999 16:32:12 -0500 + +samba (2.0.6-2) unstable; urgency=low + + * samba-common now depends on libpam-modules (not on libpam-pwdb, which + I have been told is obsolete). I modified /etc/pam.d/samba accordingly + to reflect the change. + (Closes: Bug#50722: pam pwdb dependence?). + * The old /etc/pam.d/samba file which had references to pam_pwdb caused + smbd to die with a signal 11. The new /etc/pam.d/samba file fixes + this problem. + (Closes: #50876, #50838, #50698) + * Compiled with syslog support (use at your own risk: syslog support + is still experimental in Samba). I added the parameters "syslog = 0" + and "syslog only = no" to the sample smb.conf to avoid pestering + users that do not want Samba to log through syslog. + (Closes: Bug#50703 - syslog only option doesn't work) + * Removed the stupid code in the smbmount wrapper script that tries + to load the smbfs module if smbfs is not listed in /proc/filesystems. + (Closes: Bug#50759 - Non-root can't run smbmount if SMBFS is compiled + as a module in the kernel) + * Added /bin/mount.smb as a symlink pointing to /usr/bin/smbmount so + 'mount -t smb ...' works just as 'mount -t smbfs ...'. + (Closes: Bug#50763 - 'mount -t smb' doesn't work) + + -- Eloy A. Paris <peloy@debian.org> Sat, 20 Nov 1999 18:53:35 -0500 + +samba (2.0.6-1) unstable; urgency=low + + * Samba 2.0.6 has been released. This is the first try of the Debian + Samba packages. I know for sure that smbd won't work properly on + 2.0.x kernels because the patch that Wichert sent me does not apply + to the new source/lib/util_sec.c in Samba 2.0.6. That file was + completely re-written by Tridge. + * Updated README.Debian. + * A new client utility called smbspool appeared in Samba 2.0.6. I added + this utility to the smbclient package, although I haven't tried it yet. + * Added the symlink /sbin/mount.smbfs that points to /usr/bin/smbmount. + This is to be able to type "mouont -t smbfs ...". This symlink goes + in the smbfs package, of course. + * This new release should close the following bugs (some of these + are fixed for sure in this new upstream release, some others I could + not reproduce but I believe they are fixed if they were real bugs. + As always, please feel free to re-open the bugs if the problem is not + solved). + Closes: Bug#33240: icmp mask needs a bug workaround. + Closes: Bug#37692: samba: Has problems detecting interfaces. + Closes: Bug#38988: samba: Truly bizzare behavour from nmbd. + Closes: Bug#46432: samba-2.0.5a-2: nmbd does not appear to broadcast + properly. + Closes: Bug#44131: smbfs: no longer possible to set file and + directory-modes. + Closes: Bug#46992: smbmount-2.2.x manpage wrong. + Closes: Bug#42335: smbfs: missing options from the new 2.2.x commandline. + Closes: Bug#46605: smbmnt segfaults. + Closes: Bug#48186: smbmount. + Closes: Bug#38040: smbfs: Please add /sbin/mount.smb [included]. + Closes: Bug#47332: smbmount: could -f and -P be added back? + * Samba has been compiled with PAM support (closes: Bug#39512 - samba PAM + module). To succesfully add PAM support, I created /etc/pam.d/samba and + added this file as a conffile for the samba-common package. I also made + samba-common depend on libpam-pwdb. + * Added simple man pages for the wrapper scripts smbmount and smbmount. + (Closes: Bug#44705 - Missing smbmount man page) + * Installed libreadlineg2-dev in my system so smbclient now has a + "history" command and libreadline support :-) + * This time I did add a check to the smbmount wrapper script to see if + the kernel has support for smbfs, as suggested by Jeroen Schaap + <J.Schaap@physiology.medfac.leidenuniv.nl>. I mentioned in the changelog + for samba-2.0.5a-3 that I did this but I forgot at the end. + + -- Eloy A. Paris <peloy@debian.org> Thu, 11 Nov 1999 12:08:15 -0500 + +samba (2.0.5a-5) unstable; urgency=low + + * I am sorry to report that the smbwrapper package is gone for the + moment. The reason for this is twofold: first of all, smbwrapper + is completely broken in Samba-2.0.5a (it compiles but it doesn't + run) and in the upcoming Samba-2.0.6 it doesn't even compile. Second, + when I asked Andrew Tridgell (father of Samba) about the state of + smbwrapper he told me that Ulrich Drepper (head of the glibc project) + broke on purpose the glibc stuff in which smbwrapper is based. + Consequently, Tridge recommended me to compile Samba without + support for smbwrapper. When, I have no idea. Sorry folks. Here is + the original message I received from Andrew: + + > 1) 2.0.5a's smbwrapper doesn't work under glibc2.1, and pre-2.0.6's + > smbwrapper doesn't even compile under glibc2.1. + + yep, Ulrich deliberately broke it. It won't get fixed till glibc + allows the sorts of games it plays to work again. I suggest you turn + it off in your build scripts until that gets sorted out. + + * Swat's file are now in /usr/share/samba/ instead of + /usr/lib/samba/ (bug #49011). + * Man pages now in /usr/share/man/ instead of /usr/man/ (bug #49011). + + -- Eloy A. Paris <peloy@debian.org> Tue, 2 Nov 1999 12:59:13 -0500 + +samba (2.0.5a-4) unstable; urgency=low + + * Applied patch from our fearless leader (Wichert) to fix the darn bug + that prevents Samba to work on 2.0.x kernels if it was compiled + in a system running a 2.2.x kernel. This closes #40645 (build uses + setresuid which doesn't work under 2.0.34 (does apparently under + 2.2.x) ). + * Fixed the entry that swat's postinst script adds to /etc/inetd.conf + so it is '#<off># swat\t\tstream\ttcp\tnowait.400 ...' instead of + '#<off>#swat\t\tstream\ttcp\tnowait.400 ...'. The old way caused + 'update-inetd --enable swat' to leave the entry for swat disabled. + Thanks to Dave Burchell <burchell@inetnebr.com> for finding out + this problem. This closes #48762 (swat uses non-standard syntax to + comment out inetd.conf entry). + * /usr/sbin/swat does not think anymore that the smbd daemon lives + in /usr/local/samba/bin/. To fix this I am running now source/configure + with "--prefix=/usr --exec-prefix=/usr". This closes #47716 (samba + 'swat' fails: incorrect hardwired path in the binary). + + -- Eloy A. Paris <peloy@debian.org> Sun, 31 Oct 1999 03:42:38 -0500 + +samba (2.0.5a-3) unstable; urgency=low + + * I am pretty darn busy with my MBA, I apologize for the long time it's + taking to squash bugs in the Samba packages. + * Built with debhelper v2 for FHS compliancy. Changed a couple of + things in debian/rules to accomodate for the new place for the docs. + I also had to change debian/{samba.postinst,samba.prerm,swat.postinst} + to make sure that the symlink from /usr/doc/xxx exists and points to + /usr/share/doc/xxx (the reason for this is that I am not letting + debhelper to create these scripts for me automatically). + * Built with latest libc6. + * smbfs: finally, the nasty bug that causes smbmount to die after + a while is gone thanks to Ben Tilly <Ben_Tilly@trepp.com>. + The problem was just a typo in source/client/smbmount.c. + This closes grave bug #42764 (smbmount dies) and #43341 + (smbfs-2.2.x won't function after a while). + * Fixed the smbmount wrapper script to eliminate a bashism (closes + #45202 - "wrapper scripts use $* instead of "$@") and to recognize + 2.3.x and 2.4.x kernels (closes #47688 - "smbfs: does not recognize + kernel 2.3.x"). + * Added a check to the smbmount wrapper script to see if the + kernel has support for smbfs, as suggested by Jeroen Schaap + <J.Schaap@physiology.medfac.leidenuniv.nl>. + * swat's man page is now part of the swat package, not of the samba + package. This closes #44808 (Samba has a man page for swat, but + the binary is not included). + * The interface program smbrun is not longer needed by smbd because + of the availability of execl() under Linux. Because of this, the + smbrun is not even being compiled. Since there is no need for smbrun + now, the smbrun man page was taken out of the samba package. This + closes #45266 (/usr/bin/smbrun missing). + * smbpasswd is now part of the samba-common package, and not part of + the samba package. This is to let administrators that do not want + to install a full Samba server administer passwords in remote + machines. This closes bug #42624 (smbpasswd should be included in + smbclient). This bug report also suggests that swat becomes part of + the samba package, that smbfs becomes part of the smbclient package, + and that the binary smbpasswd becomes part of the smbclient package. + I moved smbpasswd to the samba-common package but I am reluctant to + do the other things the bug report suggests. + * In order to keep dpkg happy when moving smbpasswd from the samba + package to samba-common, I had to add a "Replaces: samba (<= 2.0.5a-2)" + in the control section of the samba-common package and a + "Replaces: samba-common (<= 2.0.5a-2)" in the control section of the + samba package (in debian.control). + * Samba is now being compiled with the "--with-netatalk" option. This + closes #47480 (Could samba be compiled with the --with-netatalk option). + * All packages that depend on samba-common have a versioned dependency + now. This was accomplished by adding "(= ${Source-Version})" to the + relevant sections of debian/control. Thanks t Antti-Juhani Kaijanaho + <gaia@iki.fi> for the hint. This closes #42985 (samba should probably + have a versioned depends on samba-common). + * Made sure the file docs/textdocs/DIAGNOSIS.txt gets installed in all + the Samba packages. This closes bug #42049 (no DIAGNOSTICS.txt file). + * Added the smbadduser helper script to the samba package. This closes + #44480 (Samba doesn't come with the smbadduser program). + * Applied patch from szasz@triton.sch.bme.hu that prevents smbmount + to leave an entry in /etc/mtab for a share that could not be mounted + because of invalid user of password. The patch also allows smbumount + to unmount the share in the event that something goes wrong with the + smbmount process. This closes bug #48613 (Mount/umount problems + + patch) as well as #44130 (failed mount is still mounted). + * smbmount-2.2.x is now setuid root. This is needed for the patch + applied above to be effective. If smbmount-2.2.x is not setuid root + then an entry will be left in /etc/mtab even when the mount + fails. I had to add "usr/bin/smbmount-2.2.x" to debian/smbfs.suid + for this to work. + + -- Eloy A. Paris <peloy@debian.org> Wed, 27 Oct 1999 10:36:13 -0400 + +samba (2.0.5a-2) unstable; urgency=low + + * This version is basically the same as 2.0.5a-1 but it was compiled + on a Potato system with glibc2.1. See below the change log for 2.0.5a-1 + for more information. + + -- Eloy A. Paris <peloy@debian.org> Tue, 27 Jul 1999 02:25:29 -0400 + +samba (2.0.5a-1) stable; urgency=high + + * I'm back from the Honey Moon. We are pretty busy because we are moving + to Pittsburgh (from Caracas, Venezuela) in aprox. 24 hours and we still + have plenty of things to pack and to do. Samba 2.0.5 was released + while I was in the Honey Moon and it is just now (almost 3 AM) when + I have time to package it. + * Because of the security problems fixed in 2.0.5, this upload goes + to both stable and unstable (the Security Team asked for this). + * This release (2.0.5a-1) was compiled on a Slink system. 2.0.5a-2 will + be compiled on a Potato system. + * Added a "Replaces: samba (<= 1.9.18p10-7)" to the samba-common + section in debian/control (as suggested by Steve Haslam + <araqnid@debian.org>) to fix the problems that appear when upgrading + from the Samba package in Slink. Please test this as I am completely + unable to do so. This should fix bug #39818 (Upgrading Samba from the + Slink version). + * Removed the hacks to the autoconf stuff that I added to 2.0.4b-2 in + order to have defined several socket options when compiling with + Linux 2.2.x kernel headers - the fix is now upstream. + * Finally!!! smbmount was re-written (thanks Tridge :-) to use a command + line syntax similar to the one used by the old smbmount (for 2.0.x + kernels). This means that the wrapper script is no longer necessary + so I removed it. In its place there is a simple wrapper script that + calls smbmount-2.0.x or smbmount-2.2.x depending on the kernel that is + running. + * Because of the wedding, the Honey Moon, and our move to Pittsburgh, + I can't work on fixing other bugs in this release. + + -- Eloy A. Paris <peloy@debian.org> Tue, 27 Jul 1999 02:18:51 -0400 + +samba (2.0.4b-3) unstable; urgency=low + + * Stupid mistake: I forgot to add /usr/bin/smbumount to debian/smbfs.files + and because of this /usr/bin/smbumount was part of the samba package + instead of part of the smbfs package. + + -- Eloy A. Paris <peloy@debian.org> Thu, 1 Jul 1999 01:51:24 -0400 + +samba (2.0.4b-2) unstable; urgency=low + + * Dark (and archive maintainers): please remove from Potato the smbfsx + binary package and also the old source package for smbfs. smbfs and + smbfsx have been merged starting with this version. + * Merged the old smbfs package with Samba. Now there is only one package + for the smbfs utilities and is called "smbfs". The package smbfsx + does not exist any more and this new smbfs package must be used + for both 2.0.x and > 2.1.x kernels. + * A wrapper script was added to handle the syntax change in smbmount + in the new smbfs utilities (required for kernels > 2.1.70). The + home page for this script is http://www.wittsend.com/mhw/smbmount.html. + Please _note_ that this will change (for good) in Samba 2.0.5 :-) + * Added debian/smbumount.sh. It's another wrapper that calls smbumount-2.2.x + or smbumount-2.0.x depending on the kernel currently running. + * Not using -t for savelog in cron.weekly script. + * Recompiled without libreadlineg-dev (Samba does not seem to be using + it so unnecessary dependencies are produced). + * glibc2.1 build. + * Removed smbpasswd.8 man page from the debian/ directory because it is + now being provided upstream. + * Got rid of the ugly hack I put in source/lib/util_sock.c to have + IPTOS_LOWDELAY and IPTOS_THROUGHPUT defined. Now I patched the + autoconf stuff to #include <netinet/ip.h>. I've sent the patch to + Jeremy Allison so we have this upstream. + + -- Eloy A. Paris <peloy@debian.org> Mon, 28 Jun 1999 17:47:19 -0400 + +samba (2.0.4b-1) unstable; urgency=low + + * New upstream release. This release fixes the following Debian bugs: + #33838 (Amanda/ Samba 2.0.2 and backing up large filesystems) and + #33867 (Amanda 2.4.1 and Samba 2.0.2 and large filesystems). Jeremy + Allison released Samba 2.0.4 and found out that there were a couple + of minor bugs so he released 2.0.4a. Then he found out about more + serious bugs and released 2.0.4b. I have built this package several + times between yesterday and today because of this. Now I am releasing + the Debian packages for Samba with what I believe will be the latest + release the Samba Team will make at least in the next 4 days (Jeremy + is taking a short vacation). + * Still compiling against glibc2.0 (sorry about that :-) + * Hacked source/smbwrapper/smbsh.c to fix the problem + of smbsh not finding the shared library smbwrapper.so. It looks + now in /usr/lib/samba/ for this file. This fixes #32971, #32989, + #33278, #34911 and #36317. + * Made smbfsx depend on samba-common because smbfsx uses /etc/samba/smb.conf + and /etc/samba/codepages/. This fixes #33128 (smbmount complains about + missing /etc/smb.conf). + * Package swat does not depend on httpd anymore (there's no need to). + This fixes #35795 (swat requires httpd). + * Renamed smbmount-2.1.x and smbumount-2.1.x to smbmount-2.2.x and + smbumount-2.2.x. Same applies to the man pages. + * Changed minor type in smbmount's man page (changed "\"" by "\'"). This + fixes #34070 (wrong quotes in manpage). + * Used Fabrizio Polacco's <fpolacco@icenet.fi> procedure to create the + Debian package for Samba. This closes #35781 (samba has no pristine + source). + * Changes to /etc/cron.weely/samba: rotate /var/log/{nmb,smb}.old only + if the size of either is different than 0. Also, added comments at the + beginning of this script to explain how rotation of log files works in + Samba. Thanks to ujr@physik.phy.tu-dresden.de (Ulf Jaenicke-Roessler) + for the suggestions. This closes #37490 (cron.weekly script rotates not + used [sn]mb.old files). As I side effect, this should also close + #31462 (still trouble with /etc/cron.weekly/samba). + * Check for old /etc/pam.d/samba file which is not provided by this version + of the Debian Samba package but was provided in older versions. If this + file exists we delete it. We check for this in the postinst. This closes + #37356 (samba put stuff in pam.d that pam complains about) and #34312 + (libpam0g: questions during upgrade). + * Make sure the mode of /etc/samba/smbpasswd is set to 600. This is done + in the postinst script. This closes #35730 (Security problem with + /etc/samba/smbpasswd when upgrading from samba 1.9.18p8-2 to 2.0.3-1). + * I have just checked and it looks like #28748 (smbfsx doesn't "return ") + has been fixed. This might have been fixed since a long time ago. + * Long long standing bug #18488 (smbclient: internal tar is broken) is + closed in this release of Samba. The bug might have been closed for a + long long time, but I did not check for this before. + * Temporary fix to the annoying "Unknown socket option IPTOS_LOWDELAY" + message. This fixes #33698 (socket option IPTOS_LOWDELAY no longer works), + #34148 (warnings from smbd) and #35333 (samba warnings). + + -- Eloy A. Paris <peloy@debian.org> Thu, 20 May 1999 00:35:57 -0400 + +samba (2.0.3-1) unstable; urgency=low + + * New upstream version. + * Removed the convert_smbpasswd.pl program I created and put in + /usr/doc/samba/ because there's a convert_smbpasswd script in the + upstream sources that does the same thing. I modified the postinst + script to use this script instead of the one I created. + + -- Eloy A. Paris <peloy@debian.org> Sun, 28 Feb 1999 01:35:37 -0400 + +samba (2.0.2-2) unstable; urgency=low + + * Updated the README.Debian file. + * Updated the description of the samba package in the control file. + * The binaries smbmnt and smbumount-2.1.x in the smbfsx package are now + installed setuid root as they should be. This was done by doing a + a "chmod u+s" for each binary in debian/rules and by creating the + file debian/smbfsx.suid. + * Minor patch to source/client/smbumount.c to allow normal users + to umount what they have mounted (problem was a kernel vs. libc6 + size mismatch). I sent the patch upstream. + * Created debian/smbwrapper.dirs so the directory /usr/lib/samba/ is + created. + * Modified debian/rules to move smbwrapper.so from debian/tmp/usr/bin/ to + debian/smbwrapper/usr/lib/samba/. + * Hacked source/smbwrapper/smbsh.c to fix the problem + of smbsh not finding the shared library smbwrapper.so. + + -- Eloy A. Paris <peloy@debian.org> Thu, 11 Feb 1999 18:11:34 -0400 + +samba (2.0.2-1) unstable; urgency=low + + * New upstream version. + + -- Eloy A. Paris <peloy@debian.org> Thu, 11 Feb 1999 01:35:51 -0400 + +samba (2.0.1-1) unstable; urgency=low + + * New upstream version. + + -- Eloy A. Paris <peloy@debian.org> Sat, 6 Feb 1999 06:51:18 -0400 + +samba (2.0.0final-4) unstable; urgency=low + + * The samba postinst made an unwarranted assumption that the file + /etc/samba/smbpasswd exists. If the file did not exist (which is + perfectly valid) the postinst will fail. This fixes #32953. + + -- Eloy A. Paris <peloy@debian.org> Fri, 5 Feb 1999 23:32:46 -0400 + +samba (2.0.0final-3) unstable; urgency=low + + * Added to debian/control a "Depends: ${shlibs:Depends}" line for the + samba-common package so dependencies for this package are set + correctly (thanks to Dark for pointing this out). + + -- Eloy A. Paris <peloy@debian.org> Thu, 4 Feb 1999 09:45:21 -0400 + +samba (2.0.0final-2) unstable; urgency=low + + * Finally!!! The first upload to unstable. Sorry for the delay folks + but I have been quite busy lately :-) Another reason for the delay + is that I wanted to ease the migration from Samba 1.9.18p10 and + before to Samba 2.0.0. I changed the location of the config. files + from /etc/ to /etc/samba/ and this made things a little bit harder. + * This package needs 2.2 kernel headers to compile (well, this is + true for the smbfsx package, all others compile fine with 2.0 kernel + headers). + * Created a preinst script for the samba package to take care of the + location migration of smb.conf (from /etc/ to /etc/samba/). The + preinst script also takes care of moving /etc/smbpasswd to its new + location (/etc/samba/). + * Created postinst and postrm scripts to add/remove an entry for swat + in /etc/inetd.conf. + * I had forgotten to install the sambaconfig script so I changed + debian/rules to install this script. + * Added a postrm script for the samba package (I had forgotten to add + this script to the new Samba packages after the migration from 1.9.18 + to 2.0.0). + * Created a small Perl script that is called from the samba postinst + to convert the smbpasswd from the old format used in version prior + to 2.0.0 to the new one used in 2.0.0 and beyond. + * The upgrade process should be automatically now. Please let me know + of any problems you encounter. + + -- Eloy A. Paris <peloy@debian.org> Sat, 23 Jan 1999 09:34:10 -0400 + +samba (2.0.0final-1) experimental; urgency=low + + * Finally!!! Samba 2.0.0 is here! I am not uploading to unstable + because I still have to work out the migration from the old + samba packages to the new ones. I also need to work more on the + new swat package. + + -- Eloy A. Paris <peloy@debian.org> Thu, 14 Jan 1999 22:40:02 -0400 + +samba (2.0.0beta5-1) experimental; urgency=low + + * New upstream version. + + -- Eloy A. Paris <peloy@debian.org> Tue, 5 Jan 1999 00:37:57 -0400 + +samba (2.0.0beta4-1) experimental; urgency=low + + * New upstream version. + + -- Eloy A. Paris <peloy@debian.org> Wed, 23 Dec 1998 18:37:45 -0400 + +samba (2.0.0beta3-1) experimental; urgency=low + + * New upstream version. + * I have just realized that the documentation patches (for man pages) + that I used for the 1.9.18 release are not longer necessary because + there was a major re-write of all the Samba documentation that added + the missing bits of information. So, I have just removed these minor + patches. + + -- Eloy A. Paris <peloy@debian.org> Tue, 8 Dec 1998 12:00:30 -0400 + +samba (2.0.0beta2-1) experimental; urgency=low + + * New upstream version. + * This new version fixes the potential security problem that + was posted to debian-private (using the "message command" parameter + to execute arbitrary commands from messages sent from LinPopUp). + * Changed /etc/init.d/samba to use one of the variables stored in + /etc/samba/debian_config to know how Samba is being run (from inetd or + as daemons) instead of grepping /etc/inetd.conf which may not exist + if the user is running xinetd (this fixes bug #29687 - assumes using + vanilla inetd) + + -- Eloy A. Paris <peloy@debian.org> Mon, 23 Nov 1998 23:32:03 -0400 + +samba (2.0.0beta1-1) experimental; urgency=low + + * First beta release of the samba-2.0.0 code. Before the beta I was + working with sources downloaded directly from the CVS server. This + package goes into experimental and I plan to release the new + samba to unstable as soon as it gets out of beta. + * Created several packages out of the Samba sources. They are: + samba (nmbd and smbd daemons + related programs), smbclient (FTP + like command line utility to retrieve files from SMB servers), + swat (Samba Web Administration Tool), samba-common (common files + used by samba, smbclient and swat), smbfsx (smbfs utilities for + kernels >= 2.1.70), smbwrapper and samba-doc (Samba documentation). + * Refreshed debian/samba-doc.docs so recently added docs. are + installed in the samba-doc package. New additions include man + pages in the /usr/doc/samba-doc/htmldocs/ directory. + * Deleted Debian specific nmblookup(1) man page as it is now upstream. + * Added smbtorture to smbclient package. + * Moved rpcclient from the samba package to the smbclient package. + * The Samba daemons (nmbd and smbd) now create a PID file so I changed + all calls to start-stop-daemon to use the PID file. + * Fixed debian/rules to install mksmbpasswd (fixes #27655). + * Modified /etc/init.d/samba so nmbd is started without the -a (append + to the log file instead of overwrite) switch. The new behavior of + nmbd is to NOT overwrite log files, so the -a switch can be deleted + safely. + * Moved from debstd to debhelper. + + -- Eloy A. Paris <peloy@debian.org> Thu, 1 Oct 1998 08:37:41 -0400 + +samba (1.9.18p10-5) frozen unstable; urgency=high + + * Oppsss!!! While fixing bug #26884 I introduced a bug even worse than + the one I was trying to fix: in /etc/init.d/samba I got rid of the test + that tells us whether the Samba daemons are running from inetd or as + standalone daemons. I corrected the problem by editing again + /etc/init.d/samba to uncomment the test. + * Wishlist bug #28298 (typos in samba) was fixed. + * Wishlist bug #28309 (typos in smb.conf) was fixed. + + -- Eloy A. Paris <peloy@debian.org> Wed, 28 Oct 1998 09:11:47 -0400 + +samba (1.9.18p10-4) unstable; urgency=low + + * Minor patch to debian/rules to delete *substvars instead of only + substvars when doing a "debian/rules clean" (thanks to Daniel Jacobowitz + <dmj@andrew.cmu.edu> for this). + * Small patch to source/shmem_sysv.c that eases compilation under + glibc-2.1 (thanks to Daniel <dmj@andrew.cmu.edu> for this). + + -- Eloy A. Paris <peloy@debian.org> Thu, 17 Sep 1998 15:33:49 -0400 + +samba (1.9.18p10-3) unstable; urgency=low + + * Patched smbclient again to fix minor formatting problem introduced + by Magosanyi Arpad's smbclient patch. + + -- Eloy A. Paris <peloy@debian.org> Thu, 3 Sep 1998 11:03:23 -0400 + +samba (1.9.18p10-2) unstable; urgency=low + + * Sync'ed include files for the smbfs utilities with the ones in + kernel 2.1.119. + * Added to the /usr/doc/samba/examples/ directory a new script called + wins2dns (courtesy of Jason Gunthorpe <jgg@deltatee.com>) that + generates BIND sonze files for hosts in the WINS database. + * Patched smbclient to include enhancements by Magosanyi Arpad + <mag@bunuel.tii.matav.hu> that make scripting easier. + + -- Eloy A. Paris <peloy@debian.org> Fri, 28 Aug 1998 13:34:54 -0400 + +samba (1.9.18p10-1) stable unstable; urgency=low + + * New upstream version (see /usr/doc/samba/WHATSNEW.txt for a + description of what has changed). I built a 1.9.18p9-1 but I + never released it because an obscure bug was found just a couple + of days before the official release, so the Samba Team stopped + the rollover of 1.9.18p9. + * Updated documentation (new files were added to the docs/ directory + that were not installed in /usr/doc/samba/). + * Fixed long standing bug #7695 (smb.conf's man page doesn't document + 'printing=lprng') - I made a couple of changes to the man page to + include references to lprng. + * Fixes bug #24930 (samba needs to suggest psmisc?). I don't think it + is necessary to make samba suggest psmisc just because the postinst + script mentions to call killall. So, I removed all references to + "killall" in the scripts. + * Fixes bug #25999 (Samba does not by default work with unix password + sync): I added the "passwd program" and "passwd chat" parameters to + the sample smb.conf to reflect the Debian environment. + + -- Eloy A. Paris <peloy@debian.org> Fri, 21 Aug 1998 08:59:18 -0400 + +samba (1.9.18p9-1) unstable; urgency=low + + * New upstream version (see /usr/doc/samba/WHATSNEW.txt for a + description of what has changed). + * Removed Jeremy Allison's patch applied to 1.9.18p8-2 because it is + now part of the new upstream version. + * Corrected small typo in addtosmbpass' man page (fixes #25629). + + -- Eloy A. Paris <peloy@debian.org> Tue, 11 Aug 1998 08:53:08 -0400 + +samba (1.9.18p8-2) frozen unstable; urgency=medium + + * Applied patch received from Jeremy Allison (Samba Team) that fixes + "grave" bug #23903 (samba maps username before authenicating with + NT password server). + * Added a "sleep 2" between "start-stop-daemon --stop" and + "start-stop-daemon --start" in /etc/init.d/samba so when this script + is called with the "restart" parameter the Samba daemons are restarted + properly. This fixes bug #24211 (init.d script doesn't restart). + * Sent start-stop-daemon output in /etc/init.d/samba to /dev/null to + avoid annoying warning messages. + * Added perfomance tune parameters to sample /etc/smb.conf (SO_SNDBUF=4096 + and SO_RCVBUF=4096 to "socket options" in /etc/smb.conf). I can't + find who sent this suggestion to me. If you are listening, drop me a + note and I'll put your name here :-) + + -- Eloy A. Paris <peloy@debian.org> Mon, 29 Jun 1998 08:45:01 -0400 + +samba (1.9.18p8-1) frozen unstable; urgency=low + + * New upstream release that fixes _lots_ of "ugly" bugs. The list of + fixed bugs is too long to include here (see /usr/doc/samba/WHATSNEW.txt). + * Fixed postinst to quote arguments to if [ arg .. ] constructs + (fixes #22881). + * Applied Jeremy Allison's patch (posted to the samba-ntdom mailing + list) that solves a problem with username maps (the Samba Team did + not catch this problem before final 1.9.18p8). + * Made /etc/init.d/samba to print out a warning when Samba is running + from inetd and the user runs /etc/init.d/samba to start|stop|restart + Samba (there's no point on doing this because inetd will start the + daemons again when there is traffic on UDP port 137-139). + + -- Eloy A. Paris <peloy@debian.org> Sat, 13 Jun 1998 00:18:25 -0400 + +samba (1.9.18p7-4) frozen unstable; urgency=medium + + * Fixes the serious problem of having the WINS name server + database getting deleted at boot time. That happened because the + WINS database was being stored under /var/lock/samba/ and all files + under /var/lock/ are deleted at boot time. The place where the WINS + database is stored was moved to /var/samba/. + + -- Eloy A. Paris <peloy@debian.org> Mon, 18 May 1998 20:24:29 -0400 + +samba (1.9.18p7-3) stable; urgency=high + + * Libc5 version for Bo (stable) that fixes the recently reported + security hole. + + -- Eloy A. Paris <peloy@debian.org> Mon, 18 May 1998 20:19:33 -0400 + +samba (1.9.18p7-2) frozen unstable; urgency=low + + * Added patches from the non-mantainer upload that make us able + to compile Samba on Alpha systems. This fixes bug #22379. + + -- Eloy A. Paris <peloy@debian.org> Wed, 13 May 1998 20:38:51 -0400 + +samba (1.9.18p7-1) frozen unstable; urgency=low + + * New upstream release (just bug fixes, no new functionality). + + -- Eloy A. Paris <peloy@debian.org> Wed, 13 May 1998 11:47:32 -0400 + +samba (1.9.18p6-2) frozen unstable; urgency=low + + * Uploaded to frozen (I forgot to upload last version to frozen + so it got installed only in unstable). + + -- Eloy A. Paris <peloy@debian.org> Tue, 12 May 1998 18:10:17 -0400 + +samba (1.9.18p6-1.1) unstable; urgency=low + + * non-maintainer upload for Alpha + * patch needed for source/quota.c (_syscall4() confusion) + + -- Paul Slootman <paul@debian.org> Tue, 12 May 1998 20:39:13 +0200 + +samba (1.9.18p6-1) unstable; urgency=low + + * New upstream release that fixes a possible buffer overflow. + This security hole was reported on BugTraq by Drago. The + previous Debian version (1.9.18p5-1) was not released because + 1.9.18p5 and 1.9.18p6 were released very closely. + + -- Eloy A. Paris <peloy@debian.org> Mon, 11 May 1998 20:28:33 -0400 + +samba (1.9.18p5-1) unstable; urgency=low + + * New upstream release (no new funcionality, just bug fixes - see + /usr/doc/samba/WHATSNEW.txt.gz). + * Backed off Debian patches that were added upstream. + + -- Eloy A. Paris <peloy@debian.org> Mon, 11 May 1998 08:43:53 -0400 + +samba (1.9.18p4-2) frozen unstable; urgency=low + + * Patched smbclient(1) man page to not reference the unsopported + -A parameter (fixes #6863). + * Changes to start nmbd with the -a option (in /etc/init.d/samba + and in the entry added to /etc/inetd.conf). + * Fixed typo in sample smb.conf (fixes #21484). + * Fixed yet another typo in sample smb.conf (fixes #21447). + + -- Eloy A. Paris <peloy@debian.org> Fri, 17 Apr 1998 22:19:23 -0400 + +samba (1.9.18p4-1) frozen unstable; urgency=low + + * New upstream version that fixes several bugs. + * New scheme for keeping track of Debian specific configuration. + This new scheme fixes bug #18624 (Samba always asks the user about + configuration options). New scheme stores Debian specific + configuration information in /etc/samba/debian_config. + * Changes to /usr/sbin/sambaconfig, prerm and postinst to support the + new configuration scheme. + * Moved required kernel 2.1.x include files inside the source tree + so I don't have to do very nasty things like creating crazy + symlinks in /usr/include to make this package compile. This + allows non-root users to build the package and fixes bug + #20104. + * Fixed address of the FSF in /usr/doc/samba/copyright (problem + reported by lintian). + * The /etc/init.d/samba script now supports the force-reload + argument, as required by the policy (problem reported by lintian). + * Added a "rm /etc/cron.weekly/samba" at the end of the postinst. + * Now the samba package can be installed even if no nmbd or smbd processes + are running. This fixes the following bugs: #8917, #9334, #10268, + #10411, #11146 and #13387. + * Provides the original README in /usr/doc/samba. This fixes bug #9693. + * Added a --no-reload option to sambaconfig to not reload Samba + after configuration. + * Created man pages for sambaconfig(8), addtosmbpass(8), + mksmbpasswd(8) and nmblookup(1). + * Corrected small typo in sample /etc/smb.conf. + * Added two new parameters to /etc/smb.conf: "preserver case" and + "short preserve case". + * "rm -Rf /var/lock/samba" in postrm when package is being purged. + * Patched upstream source (nmbd.c) to not overwrite log files when + nmbd is called with the -a parameter (fixes #17704: nmbd ignores + -a option). + * /etc/init.d/samba now starts the nmbd daemon with the -a parameter + to not overwrite log files. + + -- Eloy A. Paris <peloy@debian.org> Mon, 23 Mar 1998 21:22:03 -0400 + +samba (1.9.18p3-1) unstable; urgency=low + + * New upstream version. + * Oppsss!!! I really screwed it up (actually, debstd did). + 1.9.18p2-2 still contained man pages (smbmount and smbumount) part + of other packages. This version does have this corrected. If not, + I no longer deserve to be a Debian developer! So, this version + fixes bug #18438 and some of the bugs I claimed to fix in + 1.9.18p2-2. Oh, by the way, I fixed the problem by running debstd + with -m in debian/rules (man pages are installed by "make install" + so it's a bad idea to re-install man pages with debstd). + + -- Eloy A. Paris <peloy@debian.org> Mon, 23 Feb 1998 17:32:42 -0400 + +samba (1.9.18p2-2) unstable; urgency=low + + * Fixes bugs #18017, #17999, #17961, #17932: old 1.9.18p2-1 provided + a man page for smbmount, which conflicts with package smbfs. This + was solved by creating a multi-binary package that produces + package samba and new package smbfsx. + * Fixes bug #18000 (typo in postinst). + * Fixes bug #17958 (postinst asks obsolete question). Actually, + the question is still asked, but only if Samba is run as daemons. + * Created a multi-binary package from the Samba sources: package + samba and new package smbfsx which provides SMB mount utilities + for kernels > 2.1.70. + + -- Eloy A. Paris <peloy@debian.org> Mon, 9 Feb 1998 19:47:05 -0400 + +samba (1.9.18p2-1) unstable; urgency=low + + * New upstream version. + * Removed /etc/cron.weekly/samba because Samba does not handle well + rotation of log files (if the log file is rotated Samba will + continue to log to the rotated file, instead of the just created + one). In any case, Samba will rotate log files after an specific + file size. + + -- Eloy A. Paris <peloy@debian.org> Tue, 27 Jan 1998 22:34:27 -0400 + +samba (1.9.18p1-2) unstable; urgency=low + + * Created a multi-binary package out of the Samba sources to provide + packages samba and smbfsx (userland utilities to work with + smbfs with kernels > 2.1.x. + + -- Eloy A. Paris <peloy@debian.org> Sat, 17 Jan 1998 09:23:48 -0400 + +samba (1.9.18p1-1) unstable; urgency=low + + * New upstream version. + * Created /etc/cron.daily/samba to save a copy of /etc/smbpasswd in + /var/backups/smbpasswd.bak. + + -- Eloy A. Paris <peloy@debian.org> Wed, 14 Jan 1998 13:40:56 -0400 + +samba (1.9.18alpha14-1) unstable; urgency=low + + * New upstream version. + * Added a note to the postinst script telling the user that he/she + needs to run smbpasswd manually after creating a new /etc/smbpasswd + from /etc/passwd. + + -- Eloy A. Paris <peloy@debian.org> Tue, 23 Dec 1997 23:44:37 -0400 + +samba (1.9.18alpha13-1) unstable; urgency=low + + * New upstream version. + + -- Eloy A. Paris <peloy@debian.org> Tue, 16 Dec 1997 13:02:32 -0400 + +samba (1.9.18alpha12-1) unstable; urgency=low + + * New upstream version. + * Conflicts with the sambades package because the new Samba 1.9.18 + series do not depend on the DES libraries to support encrypted + passwords. + * Added parameter "encrypt passwords = yes" to /etc/smb.conf. + * Compiled with support for quotas in disk_free(). + * Home directories are now exported read only by default. + * Re-worked debian/rules. + * Re-worked sample smb.conf. + + -- Eloy A. Paris <peloy@debian.org> Thu, 4 Dec 1997 22:50:34 -0400 + +samba (1.9.17p4-1) unstable; urgency=low + + * New upstream version. + * Made /etc/smb.conf readable by everybody because some Samba utilities + will fail otherwise when run by non-root users. + * Dropped PAM support while the PAM libraries are ported to libc6. + + -- Eloy A. Paris <peloy@debian.org> Tue, 21 Oct 1997 18:08:49 -0400 + +samba (1.9.17p3-1) unstable; urgency=low + + * New upstream version. + * Made /etc/smb.conf readable only by root as suggested by smbd's man page. + + -- Eloy A. Paris <peloy@debian.org> Wed, 15 Oct 1997 09:21:25 -0400 + +samba (1.9.17p2-2) unstable; urgency=low + + * Running Samba as daemons instead of from inetd. + * Removing netbios entries in /etc/inetd.conf. + + -- Eloy A. Paris <peloy@debian.org> Thu, 9 Oct 1997 23:37:25 -0400 + +samba (1.9.17p2-1) unstable; urgency=low + + * New upstream version that fixes a serious security hole. + * Removed Debian patches added in 1.9.17-1 and 1.9.17p1-1 because + these patches are now part of the upstream release. + + -- Eloy A. Paris <peloy@debian.org> Sun, 28 Sep 1997 22:54:33 -0400 + +samba (1.9.17p1-1) unstable; urgency=low + + * New upstream version. + * Defined symbol _LINUX_C_LIB_VERSION_MAJOR as 6 in includes.h to shut up + compiler warnings. + * Included rpcsvc/ypclnt.h in includes.h to shut up compiler warnings. + * Included crypt.h to have function prototype for crypt(). + * Included netinet/tcp.h to have some socket options included. + * Included netinet/ip.h to have some socket options included. + * Linking with libcrypt (LIBM='... -lcrypt'). Without including this + library smbd generates a seg. fault when authenticating users (?). + + -- Eloy A. Paris <peloy@debian.org> Wed, 10 Sep 1997 22:09:18 -0400 + +samba (1.9.17-1) unstable; urgency=low + + * New upstream version (called the "Browse Fix Release") + * Added the option --oknodo to the start-stop-daemon invocation in prerm + script. This was because the prerm was failing because start-stop-daemon + was returning an error code if no nmbd or smbd daemons were found + to kill. + * The function yp_get_default_domain(), referenced in three source + files was part of libc5 but with libc6 (glibc2) it has been moved + to libnss_nis. Since the linker was unable to find the function + I had to add LIBSM='-lnss_nis' to debian/rules. + * Added -DNO_ASMSIGNALH and -DGLIBC2 to FLAGSM in debian/rules + because compiling was failing because of conflicts with glibc2. + * Patched source/includes.h to include termios.h if GLIBC2 is defined. + + -- Eloy A. Paris <peloy@debian.org> Wed, 27 Aug 1997 08:39:32 -0400 + +samba (1.9.17alpha5-1) unstable; urgency=low + + * New upstream version. + + -- Eloy A. Paris <peloy@debian.org> Thu, 14 Aug 1997 18:05:02 -0400 + +samba (1.9.16p11-3) unstable; urgency=low + + * Fixed accidental omission of /etc/pam.d/samba. + + -- Klee Dienes <klee@debian.org> Sat, 15 Mar 1997 22:31:26 -0500 + +samba (1.9.16p11-2) unstable; urgency=low + + * Recompiled against newer PAM libraries. + * Added /etc/pam.d/samba. + + -- Klee Dienes <klee@debian.org> Sat, 8 Mar 1997 01:16:28 -0500 + +samba (1.9.16p11-1) unstable; urgency=low + + * New upstream release. + * Added PAM support. + + -- Klee Dienes <klee@debian.org> Tue, 25 Feb 1997 18:00:12 -0500 + +samba (1.9.16p9-2) unstable; urgency=low + + * minor packaging changes + + -- Klee Dienes <klee@sauron.sedona.com> Sun, 3 Nov 1996 11:45:37 -0700 + +samba (1.9.16p9-1) unstable; urgency=low + + * upgraded to new upstream version + + -- Klee Dienes <klee@sauron.sedona.com> Sat, 26 Oct 1996 21:38:20 -0700 + +1.9.16alpha10-1: + 960714 + * Removed Package_Revision from control file. + * Removed -m486 compiler option. + * Added Architecture, Section and Priority fields to control file. + * Upgraded to latest upstream version. + * Uses update-inetd now. + * Added shadow passwords support. + * Fixed Bug#1946: nmbd won't browse + +1.9.15p4-1: + 951128 + * Upgraded to latest upstream version. + * Fixed many bugs. + * Adds Master Browsing support. + * Converted to ELF. + * Fixed bug #1825 - nmbd is now killed when removing samba. + +1.9.14-1: + 950926 Andrew Howell <andrew@it.com.au> + * Upgraded to latest version. + * Fixed Bug #1139 - samba won't print + +1.9.14alpha5-1: + * Fixes killing of inetd problem in debian.postint and debian.postrm + +1.9.14alpha5-0: + 950704 Andrew Howell <andrew@it.com.au> + * Taken over samba package from Bruce Perens. + * Upgraded to newest version of samba. + +1.9.02-1: + 9-January-1994 Bruce Perens <Bruce@Pixar.com> + * Added Debian GNU/Linux package maintenance system files, and + configured for Debian systems. diff --git a/debian/clean b/debian/clean new file mode 100644 index 0000000..856465d --- /dev/null +++ b/debian/clean @@ -0,0 +1,9 @@ +# remove artifacts left by the build system +.lock-wscript +compile_commands.json +# Waf pycache files +buildtools/wafsamba/__pycache__/ +source3/build/__pycache__/ +third_party/waf/waflib/__pycache__/ +third_party/waf/waflib/extras/__pycache__/ +third_party/waf/waflib/Tools/__pycache__/ diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..5d796a6 --- /dev/null +++ b/debian/control @@ -0,0 +1,615 @@ +Source: samba +Section: net +Priority: optional +Maintainer: Debian Samba Maintainers <pkg-samba-maint@lists.alioth.debian.org> +Uploaders: Steve Langasek <vorlon@debian.org>, + Jelmer Vernooij <jelmer@debian.org>, + Mathieu Parent <sathieu@debian.org>, + Andrew Bartlett <abartlet+debian@catalyst.net.nz>, + Michael Tokarev <mjt@tls.msk.ru> +Homepage: https://www.samba.org +Standards-Version: 4.6.2 +Build-Depends: + debhelper-compat (= 13), + dh-exec, +Build-Depends-Arch: + dh-sequence-python3, +# tools: + bison, + docbook-xml, docbook-xsl, xsltproc, + flex, + perl:any, + po-debconf, +# libraries which we embed but use system versions of: + libtalloc-dev (>= 2.3.4~), + python3-talloc-dev (>= 2.3.4~), + libtevent-dev (>= 0.13.0~), + libtdb-dev (>= 1.4.7~), + python3-tdb (>= 1.4.7~), +# system libraries: + pkg-config, + libacl1-dev, + libarchive-dev, + libavahi-client-dev, + libavahi-common-dev, + libblkid-dev, + libbsd-dev, + libcap-dev [linux-any], + libcephfs-dev [amd64 arm64 armel armhf i386 mips64el mipsel ppc64el s390x], + libcmocka-dev (>= 1.1.3), + libcups2-dev, + libdbus-1-dev, + libglusterfs-dev [linux-any], + libgnutls28-dev, + libgpgme11-dev, + libicu-dev, + libjansson-dev, + libjson-perl, + libkeyutils-dev, + libkrb5-dev (>= 1.19.0~) <pkg.samba.mitkrb5>, + libldap2-dev, + liblmdb-dev, + libpam0g-dev, + libparse-yapp-perl, + libpcap-dev [hurd-i386 kfreebsd-any], + libpopt-dev, + librados-dev [amd64 arm64 armel armhf i386 mips64el mipsel ppc64el s390x], + libreadline-dev, + libsystemd-dev [linux-any], + libtasn1-6-dev (>= 3.8), + libtasn1-bin, + liburing-dev [linux-any] <!pkg.samba.nouring>, + xfslibs-dev [linux-any], + zlib1g-dev (>= 1:1.2.3), +# python (+#904999): + python3-dev:any | python3-dev, libpython3-dev, + python3-dnspython, + python3-etcd, + python3-markdown, + python3-testtools, +# dependencies needed for selftest: +# lmdb-utils <!nocheck>, +# openssl <!nocheck>, +# python3-cryptography <!nocheck>, +# python3-iso8601 <!nocheck>, +# python3-pyasn1 <!nocheck>, +# tdb-tools <!nocheck>, +Rules-Requires-Root: binary-targets +Vcs-Browser: https://salsa.debian.org/samba-team/samba +Vcs-Git: https://salsa.debian.org/samba-team/samba.git -b bookworm + +Package: samba +Architecture: any +Pre-Depends: ${misc:Pre-Depends} +Depends: passwd, + libpam-modules, + libpam-runtime (>= 1.0.1-11), + procps, + python3, + python3-dnspython, + python3-samba (= ${binary:Version}), + samba-common (= ${source:Version}), + samba-common-bin (=${binary:Version}), + tdb-tools, + ${misc:Depends}, + ${python3:Depends}, + ${shlibs:Depends} +Recommends: attr, + logrotate, + python3-markdown, + samba-dsdb-modules, + samba-vfs-modules, + samba-ad-provision, +Suggests: bind9 (>= 1:9.5.1), + bind9utils, + ctdb, + ldb-tools, + ntp | chrony (>= 3.0-1), + ufw, + winbind +Enhances: bind9, ntp +Breaks: samba-ad-provision (<< ${source:Upstream-Version}) +Description: SMB/CIFS file, print, and login server for Unix + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. Samba can also function + as an Active Directory or NT4-style domain controller, and can integrate + with Active Directory realms or NT4 domains as a member server. + . + This package provides the components necessary to use Samba as a stand-alone + file and print server or as an NT4 domain controller. For use in an NT4 + domain or Active Directory realm, you will also need the winbind package. + To use samba as an Active Directory domain controller (AD DC), please install + samba-ad-dc package. + . + This package is not required for connecting to existing SMB/CIFS servers + (see smbclient) or for mounting remote filesystems (see cifs-utils). + +Package: samba-libs +Pre-Depends: ${misc:Pre-Depends} +Multi-Arch: same +Architecture: any +Section: libs +Depends: ${misc:Depends}, ${shlibs:Depends} +Replaces: +# libsamba-util.so &deps moved from libwbclient0 to samba-libs in 4.16.1+dfsg-7 + libwbclient0 (<< 2:4.16.1+dfsg-7~), +# libpac-samba4.so.0 moved from samba to samba-libs in 4.17.0+dfsg-2 + samba (<< 2:4.17.0+dfsg-2~), +Breaks: + libwbclient0 (<< 2:4.16.1+dfsg-7~), + samba (<< 2:4.17.0+dfsg-2~), +Description: Samba core libraries + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file sharing with Microsoft Windows, OS X, + and other Unix systems. Samba can also function as a domain controller + or member server in Active Directory or NT4-style domains. + . + This package contains the shared libraries. + +Package: samba-common +Architecture: all +Multi-Arch: foreign +Pre-Depends: ${misc:Pre-Depends} +Depends: ucf, ${misc:Depends} +Recommends: samba-common-bin +Description: common files used by both the Samba server and client + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. + . + This package contains common files used by all parts of Samba. + +Package: samba-common-bin +Architecture: any +Depends: python3, + python3-samba, + samba-common (=${source:Version}), + samba-libs (= ${binary:Version}), + ${misc:Depends}, + ${python3:Depends}, + ${shlibs:Depends} +Recommends: samba-dsdb-modules +Suggests: heimdal-clients, + python3-markdown, + python3-dnspython +# in 4.16.2+dfsg-1 we moved samba-dcerpcd from samba to samba-common-bin: +Replaces: samba (<< 2:4.16.2+dfsg-1~) +Breaks: samba (<< 2:4.16.2+dfsg-1~) +Description: Samba common files used by both the server and the client + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file sharing with Microsoft Windows, OS X, + and other Unix systems. Samba can also function as a domain controller + or member server in Active Directory or NT4-style domains. + . + This package contains the common files that are used by both the server + (provided in the samba package) and the client (provided in the smbclient + libsmbclient packages). + +Package: samba-ad-dc +Architecture: all +Multi-Arch: foreign +Pre-Depends: ${misc:Pre-Depends} +Depends: samba (>= ${binary:Version}), samba-dsdb-modules, samba-vfs-modules, + winbind, + krb5-kdc (>> 1.19.0) <pkg.samba.mitkrb5>, + ${misc:Depends} +Recommends: libnss-winbind, libpam-winbind, +# samba-ad-provision is needed for setup only + samba-ad-provision +Breaks: samba-ad-provision (<< ${source:Upstream-Version}) +Description: Samba control files to run AD Domain Controller + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. + . + This package contains control files to run an Active Directory Domain + Controller (AD DC). For now, this is just a metapackage pulling in + all the required dependencies. + +Package: samba-ad-provision +Architecture: all +Multi-Arch: foreign +Pre-Depends: ${misc:Pre-Depends} +Depends: ${misc:Depends} +Replaces: samba (<< 2:4.17.3+dfsg-4~) +Breaks: samba (<< 2:4.17.3+dfsg-4~) +Description: Samba files needed for AD domain provision + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. + . + This package contains files to setup an Active Directory Domain + Controller (AD DC). + +Package: smbclient +Architecture: any +Depends: samba-common (= ${source:Version}), + samba-libs (= ${binary:Version}), + ${misc:Depends}, + ${shlibs:Depends} +Provides: samba-client +Suggests: cifs-utils, heimdal-clients +Description: command-line SMB/CIFS clients for Unix + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. + . + This package contains command-line utilities for accessing Microsoft + Windows and Samba servers, including smbclient, smbtar, and smbspool. + Utilities for mounting shares locally are found in the package + cifs-utils. + +Package: samba-testsuite +Architecture: any +Suggests: subunit +Depends: samba-common-bin, + samba-libs (= ${binary:Version}), + ${misc:Depends}, + ${shlibs:Depends} +Description: test suite from Samba + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file sharing with Microsoft Windows, OS X, + and other Unix systems. Samba can also function as a domain controller + or member server in Active Directory or NT4-style domains. + . + This package contains programs for testing the reliability and speed + of SMB servers, Samba in particular. + +Package: registry-tools +Architecture: any +Depends: samba-libs (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends} +Description: tools for viewing and manipulating the Windows registry + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file sharing with Microsoft Windows, OS X, + and other Unix systems. Samba can also function as a domain controller + or member server in Active Directory or NT4-style domains. + . + This package contains tools for viewing and manipulating the binary + "registry" found on Windows machines, both locally and remote. + +Package: samba-dev +Architecture: any +Multi-Arch: same +Depends: libc6-dev, + libldb-dev (>= 2:2), + libpopt-dev, + libtalloc-dev, + libtdb-dev, + libtevent-dev, + libwbclient-dev, + samba-libs (= ${binary:Version}), + ${misc:Depends} +# libsamba-util.so moved from libwbclient0 to samba-libs in 4.16.1+dfsg-7 +Replaces: libwbclient-dev (<< 2:4.16.1+dfsg-7~) +Breaks: libwbclient-dev (<< 2:4.16.1+dfsg-7~) +Section: devel +Description: tools for extending Samba + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file sharing with Microsoft Windows, OS X, + and other Unix systems. Samba can also function as a domain controller + or member server in Active Directory or NT4-style domains. + . + This package contains include files shared by the various Samba-based + libraries. + +Package: python3-samba +Pre-Depends: ${misc:Pre-Depends} +Architecture: any +Section: python +Depends: python3-ldb, + python3-tdb, + samba-libs (= ${binary:Version}), + ${misc:Depends}, + ${python3:Depends}, + ${shlibs:Depends} +Replaces: +# libsamba-policy & helpers and dckeytab python libs moved to python3-samba + samba-libs (<< 2:4.16.0+dfsg-1~), samba (<< 2:4.16.0+dfsg-1~) +Recommends: python3-gpg +Description: Python 3 bindings for Samba + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file sharing with Microsoft Windows, OS X, + and other Unix systems. Samba can also function as a domain controller + or member server in Active Directory or NT4-style domains. + . + This package contains Python 3 bindings for most Samba libraries. + +Package: samba-dsdb-modules +Architecture: any +Multi-Arch: same +Section: libs +Depends: libgpgme11, + samba-libs (= ${binary:Version}), + ${ldb:Depends}, + ${misc:Depends}, + ${shlibs:Depends} +Enhances: libldb2 +Description: Samba Directory Services Database + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file sharing with Microsoft Windows, OS X, + and other Unix systems. Samba can also function as a domain controller + or member server in Active Directory or NT4-style domains. + . + This package contains LDB plugins which add support for various Active + Directory features to the LDB library. + +Package: samba-vfs-modules +Architecture: any +Multi-Arch: same +Depends: samba-libs (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends} +Recommends: ${vfsmods:Depends} +Enhances: samba +Description: Samba Virtual FileSystem plugins + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file sharing with Microsoft Windows, OS X, + and other Unix systems. Samba can also function as a domain controller + or member server in Active Directory or NT4-style domains. + . + Virtual FileSystem modules are stacked shared libraries extending the + functionality of Samba. Some examples are: + * vfs_acl_xattr: Save NTFS-ACLs in Extended Attributes + * vfs_audit: record selected Samba VFS operations in the system log + * vfs_readonly: Make a Samba share read only for a specified time period + * vfs_recycle: Give the same effect as the Recycle Bin on Windows computers + * vfs_shadow_copy2: Expose snapshots to Windows clients as shadow copies + * vfs_worm: Disallow writes for older file + . + Note: The runtime dependencies of vfs_ceph, vfs_glusterfs and vfs_snapper are + moved to Recommends. + +Package: libsmbclient +Section: libs +Architecture: any +Multi-Arch: same +Pre-Depends: ${misc:Pre-Depends} +Depends: samba-libs (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends} +Description: shared library for communication with SMB/CIFS servers + This package provides a shared library that enables client applications + to talk to Microsoft Windows and Samba servers using the SMB/CIFS + protocol. + +Package: libsmbclient-dev +Section: libdevel +Architecture: any +Multi-Arch: same +Depends: libsmbclient (= ${binary:Version}), ${misc:Depends} +Description: development files for libsmbclient + This package provides the development files (static library and headers) + required for building applications against libsmbclient, a library that + enables client applications to talk to Microsoft Windows and Samba servers + using the SMB/CIFS protocol. + +Package: winbind +Pre-Depends: ${misc:Pre-Depends} +Architecture: any +Multi-Arch: allowed +Depends: samba-common (= ${source:Version}), + samba-common-bin (=${binary:Version}), +# wbinfo (linked with libwbclient) which should use the same protocol + libwbclient0 (=${binary:Version}), +# for groupadd in postinst + passwd, + ${misc:Depends}, + ${shlibs:Depends} +Enhances: libkrb5-26-heimdal <!pkg.samba.mitkrb5> +Suggests: libnss-winbind, libpam-winbind +# 4.16.6+dfsg-5 idmap_{script,rfc2307}.8 moved samba{,-libs} => winbind +Breaks: samba (<< 2:4.16.6+dfsg-5~), samba-libs (<< 2:4.16.6+dfsg-5~), +Replaces: samba (<< 2:4.16.6+dfsg-5~), samba-libs (<< 2:4.16.6+dfsg-5~), +Description: service to resolve user and group information from Windows NT servers + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file sharing with Microsoft Windows, OS X, + and other Unix systems. Samba can also function as a domain controller + or member server in Active Directory or NT4-style domains. + . + This package provides winbindd, a daemon which integrates authentication + and directory service (user/group lookup) mechanisms from a Windows + domain on a Linux system. + . + Winbind based user/group lookups via /etc/nsswitch.conf can be enabled via + the libnss-winbind package. Winbind based Windows domain authentication can + be enabled via the libpam-winbind package. + +Package: libpam-winbind +Section: admin +Architecture: any +Multi-Arch: same +Pre-Depends: ${misc:Pre-Depends} +Depends: libpam-runtime (>= 1.0.1-6), + libpam0g (>= 1.1.3-2~), + winbind:any (= ${binary:Version}), + ${misc:Depends}, + ${shlibs:Depends} +Suggests: libnss-winbind +Description: Windows domain authentication integration plugin + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. Samba can also function + as an NT4-style domain controller, and can integrate with both NT4 domains + and Active Directory realms as a member server. + . + This package provides pam_winbind, a plugin that integrates with a local + winbindd server to provide Windows domain authentication to the system. + +Package: libnss-winbind +Section: admin +Architecture: any +Multi-Arch: same +Depends: winbind:any (= ${binary:Version}), + ${misc:Depends}, + ${shlibs:Depends} +Suggests: libpam-winbind +Description: Samba nameservice integration plugins + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. Samba can also function + as an NT4-style domain controller, and can integrate with both NT4 domains + and Active Directory realms as a member server. + . + This package provides nss_winbind, a plugin that integrates + with a local winbindd server to provide user/group name lookups to the + system; and nss_wins, which provides hostname lookups via both the NBNS and + NetBIOS broadcast protocols. + +Package: libwbclient0 +Section: libs +Architecture: any +Multi-Arch: same +Pre-Depends: ${misc:Pre-Depends} +Depends: ${misc:Depends}, ${shlibs:Depends} +Breaks: samba-libs (<< 2:4.11.0+dfsg-1~) +Description: Samba winbind client library + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. + . + This package provides a library for client applications that interact + via the winbind pipe protocol with a Samba winbind server. + +Package: libwbclient-dev +Section: libdevel +Architecture: any +Multi-Arch: same +Depends: libwbclient0 (= ${binary:Version}), ${misc:Depends} +Breaks: samba-libs (<< 2:4.11.0+dfsg-1~), samba-dev (<< 2:4.11) +Replaces: samba-dev (<< 2:4.11) +Description: Samba winbind client library - development files + Samba is an implementation of the SMB/CIFS protocol for Unix systems, + providing support for cross-platform file and printer sharing with + Microsoft Windows, OS X, and other Unix systems. + . + This package provides the development files (static library and headers) + required for building applications against libwbclient, a library for client + applications that interact via the winbind pipe protocol with a Samba + winbind server. + +Package: ctdb +Architecture: any +Multi-Arch: foreign +Depends: iproute2 [linux-any], + psmisc, + samba-libs (= ${binary:Version}), + sudo, + tdb-tools, + time, + ${misc:Depends}, + ${shlibs:Depends} +Recommends: ethtool [linux-any], python3:any, python3-etcd, ${rados:Depends} +Suggests: logrotate, lsof +Description: clustered database to store temporary data + CTDB is a cluster implementation of the TDB database used by Samba and other + projects to store temporary data. If an application is already using TDB for + temporary data it is very easy to convert that application to be cluster aware + and use CTDB instead. + . + CTDB provides the same types of functions as TDB but in a clustered fashion, + providing a TDB-style database that spans multiple physical hosts in a cluster. + . + Features include: + * CTDB provides a TDB that has consistent data and consistent locking across + all nodes in a cluster. + * CTDB is very fast. + * In case of node failures, CTDB will automatically recover and repair all TDB + databases that it manages. + * CTDB is the core component that provides pCIFS ("parallel CIFS") with + Samba3/4. + * CTDB provides HA features such as node monitoring, node failover, and IP + takeover. + * CTDB provides a reliable messaging transport to allow applications linked + with CTDB to communicate to other instances of the application running on + different nodes in the cluster. + * CTDB has pluggable transport backends. Currently implemented backends are + TCP and Infiniband. + * CTDB supports a system of application specific management scripts, allowing + applications that depend on network or filesystem resources to be managed in + a highly available manner on a cluster. + +Package: libldb2 +Multi-Arch: same +Pre-Depends: ${misc:Pre-Depends} +Architecture: any +Section: libs +Depends: ${misc:Depends}, + ${shlibs:Depends} +Breaks: ldb-tools (<<1.1.30~), + samba (<<2:4.7.0~), + samba-dsdb-modules (<< 2:4.7.0~), + samba-libs (<< 2:4.7.0~), + samba-testsuite (<< 2:4.7.0~) +Description: LDAP-like embedded database - shared library + ldb is a LDAP-like embedded database built on top of TDB. + . + It provides a fast database with an LDAP-like API designed + to be used within an application. In some ways it can be seen as a + intermediate solution between key-value pair databases and a real LDAP + database. + . + This package contains the shared library file. + +Package: ldb-tools +Section: utils +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends} +Description: LDAP-like embedded database - tools + ldb is a LDAP-like embedded database built on top of TDB. + . + What ldb does is provide a fast database with an LDAP-like API designed + to be used within an application. In some ways it can be seen as a + intermediate solution between key-value pair databases and a real LDAP + database. + . + This package contains bundled test and utility binaries + +Package: libldb-dev +Section: libdevel +Architecture: any +Multi-Arch: same +Depends: libc6-dev, + libldb2 (= ${binary:Version}), + libtalloc-dev, + libtevent-dev, + libtdb-dev, + pkg-config, + ${misc:Depends} +Description: LDAP-like embedded database - development files + ldb is a LDAP-like embedded database built on top of TDB. + . + What ldb does is provide a fast database with an LDAP-like API designed + to be used within an application. In some ways it can be seen as a + intermediate solution between key-value pair databases and a real LDAP + database. + . + This package contains the development files. + +Package: python3-ldb +Pre-Depends: ${misc:Pre-Depends} +Section: python +Architecture: any +Depends: libldb2 (= ${binary:Version}), + ${misc:Depends}, + ${python3:Depends}, + ${shlibs:Depends} +Description: Python 3 bindings for LDB + ldb is a LDAP-like embedded database built on top of TDB. + . + This package contains the Python 3 bindings. + +Package: python3-ldb-dev +Section: libdevel +Architecture: any +Depends: libc6-dev, + libldb-dev, + pkg-config, + python3-ldb (= ${binary:Version}), + ${misc:Depends} +Description: LDB Python 3 bindings - development files + ldb is a LDAP-like embedded database built on top of TDB. + . + It is a fast database with an LDAP-like API designed + to be used within an application. In some ways it can be seen as a + intermediate solution between key-value pair databases and a real LDAP + database. + . + This package contains the development files for the Python 3 bindings. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..a45a94c --- /dev/null +++ b/debian/copyright @@ -0,0 +1,628 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: samba +Upstream-Contact: Samba Developers <samba-technical@lists.samba.org> +Source: http://www.samba.org/ +Files-Excluded: + third_party/heimdal/lib/wind/rfc*.txt + third_party/heimdal/doc/standardisation + source4/ldap_server/devdocs + docs/manpages/*.? + ctdb/doc/*.? ctdb/doc/*.?.html + +Files: * +Copyright: 1992-2012 Andrew Tridgell and the Samba Team +License: GPL-3.0+ + +Files: third_party/heimdal/* +Copyright: + 1996-2005 Kungliga Tekniska Högskolan + (Royal Institute of Technology, Stockholm, Sweden). +License: BSD-3 + +Files: source4/setup/ad-schema/*.txt +Comment: part of the Microsoft protocol documentation +Copyright: Microsoft Corporation +License: MS-ADSL + License for the Active Directory schemas: + . + Intellectual Property Rights Notice for Protocol Documentation. + . + Copyrights. + This protocol documentation is covered by Microsoft copyrights. Regardless + of any other terms that are contained in the terms of use for the Microsoft + website that hosts this documentation, you may make copies of it in order to + develop implementations of the protocols, and may distribute portions of it + in your implementations of the protocols or your documentation as necessary + to properly document the implementation. You may also distribute in your + implementation, with or without modification, any schema, IDL’s, or code + samples that are included in the documentation. This permission also applies + to any documents that are referenced in the protocol documentation. + . + No Trade Secrets. + Microsoft does not claim any trade secret rights in this documentation. + . + Patents. + Microsoft has patents that may cover your implementations of the protocols. + Neither this notice nor Microsoft's delivery of the documentation grants any + licenses under those or any other Microsoft patents. However, the protocols + may be covered by Microsoft's Open Specification Promise (available here: + http://www.microsoft.com/interop/osp). If you would prefer a written + license, or if the protocols are not covered by the OSP, patent + licenses are available by contacting protocol@microsoft.com. + . + Trademarks. + The names of companies and products contained in this documentation may be + covered by trademarks or similar intellectual property rights. This notice + does not grant any licenses under those rights. + . + Reservation of Rights. + All other rights are reserved, and this notice does not grant any rights + other than specifically described above, whether by implication, estoppel, + or otherwise. + . + Tools. + This protocol documentation is intended for use in conjunction with + publicly available standard specifications and network programming art, + and assumes that the reader either is familiar with the aforementioned + material or has immediate access to it. A protocol specification does not + require the use of Microsoft programming tools or programming environments + in order for you to develop an implementation. If you have access to + Microsoft programming tools and environments you are free to take + advantage of them. + +Files: debian/* +Copyright: + 2005-2012 Jelmer Vernooij <jelmer@debian.org> + 2005-2006 Steinar H. Gunderson + 2001-2011 Steve Langasek <vorlon@debian.org>, + 2005-2012 Christian Perrier <bubulle@debian.org>, + 2005-2008 Noèl Köthe <noel@debian.org>, + 2005-2008 Peter Eisentraut <petere@debian.org>, et al. +License: GPL-3 + 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; version 3 dated June, 2007. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + . + On Debian systems, the full text of the GPL v3 can be found in + /usr/share/common-licenses/GPL-3 + +Files: lib/ldb/common/qsort.c +Copyright: 1991,1992,1996,1997,1999,2004 Free Software Foundation, Inc. +License: LGPL-3.0+ + +Files: lib/ldb/tools/* +Copyright: + 2004-2010 Andrew Tridgell <tridge@samba.org> + 2004 Stefan Metzmacher + 2009 Matthieu Patou +License: GPL-3.0+ + +Files: lib/replace/*.c +Comment: This file is not used when building the Debian package. +Copyright: + Copyright (c) Andrew Tridgell 1994-2006 + Copyright (c) Jeremy Allison 2000-2003,2007 + Copyright (c) Michael Adam <obnox@samba.org> 2008 + Copyright (c) Patrick Powell 1995 + Copyright (c) Free Software Foundation, Inc. 1991-2001 + Copyright (c) Jelmer Vernooij 2006-2009 + Copyright (c) Andreas Schneider 2009-2015 + Copyright (c) Volker Lendecke 2011-2016 + Copyright (c) Internet Software Consortium 1996-2001 + Copyright (c) Aris Adamantiadis 2003-2009 + Copyright (c) Aleksandar Kanchev 2009 + Copyright (c) Matthieu Patou 2010 +License: LGPL-3.0+ + +Files: lib/replace/getaddrinfo.* +Comment: This file is not used when building the Debian package. +Copyright: + Copyright (c) PostgreSQL Global Development Group 1996-2007 + Copyright (c) The Regents of the University of California 1994 +License: PostgreSQL + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose, without fee, and without a written agreement + is hereby granted, provided that the above copyright notice and this paragraph + and the following two paragraphs appear in all copies. + . + IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR + DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING + LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, + EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + . + THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS + ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS + TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +Files: lib/replace/inet_ntop.c lib/replace/inet_pton.c +Comment: This file is not used when building the Debian package. +Copyright: Internet Software Consortium. 1996-2001 +License: ISC + +Files: lib/replace/snprintf.c +Comment: This file is not used when building the Debian package. +Copyright: + Copyright (c) Patrick Powell 1995 + Copyright (c) Brandon Long <blong@fiction.net> 1997 + Copyright (c) Thomas Roessler <roessler@guug.de> 1998 + Copyright (c) Michael Elkins <me@cs.hmc.edu> 1998 + Copyright (c) Andrew Tridgell (tridge@samba.org) 1998-2001 + Copyright (c) Martin Pool 2003 + Copyright (c) Darren Tucker (dtucker@zip.com.au) 2005 + Copyright (c) Simo Sorce (idra@samba.org) 2006 +License: BSD-3 + +Files: lib/replace/strptime.c +Comment: This file is not used when building the Debian package. +Copyright: + Copyright (c) Ulrich Drepper <drepper@cygnus.com>, 1996 +License: LGPL-3.0+ + +Files: lib/replace/timegm.c +Comment: This file is not used when building the Debian package. +Copyright: + Copyright (c) Kungliga Tekniska Högskolan 1997 +License: BSD-3 + +Files: lib/replace/xattr.c +Comment: This file is not used when building the Debian package. +Copyright: + Copyright (c) Jeremy Allison 1998-2005 + Copyright (C) Timur Bakeyev 2005 + Copyright (C) Bjoern Jacke 2006-2007 + Copyright (C) Herb Lewis 2003 + Copyright (C) Andrew Bartlett 2012 +License: LGPL-3.0+ + +Files: lib/talloc/* +Copyright: + 2004-2010 Andrew Tridgell + 2008-2011 Jelmer Vernooij + 2006-2009 Stefan Metzmacher + 2015 Petr Viktorin <pviktori@redhat.com> +License: LGPL-3.0+ + +Files: lib/talloc/pytalloc* +Copyright: + Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008-2011 + Copyright (C) Andrew Bartlett <abartlet@samba.org> 2016 +License: GPL-3.0+ + +Files: lib/tdb/* +Copyright: + 2000-2010 Rusty Russell + 1999-2010 Andrew Tridgell + 2000-2006 Jeremy Allison + 2010 Volker Lendecke + 2005 Simon McVittie + 2001 Andrew Esh + 2004-2006 Tim Potter + 2007-2008 Jelmer Vernooij +License: LGPL-3.0+ + +Files: lib/tevent/* +Copyright: + 2008 Volker Lendecke + 2005-2010 Stefan Metzmacher + 2003-2010 Andrew Tridgell + 2010 Jelmer Vernooij +License: LGPL-3.0+ + +Files: + buildtools/bin/waf + buildtools/wafsamba/stale_files.py + third_party/waf/* +Comment: See https://gitlab.com/ita1024/waf/blob/master/waf-light#L6 +Copyright: + Copyright Scott Newton, 2005 (scottn) + Copyright Thomas Nagy, 2005-2018 (ita) +License: BSD-3 + +Files: + third_party/waf/waflib/extras/bjam.py + third_party/waf/waflib/extras/proc.py + third_party/waf/waflib/extras/softlink_libs.py +Copyright: + Copyright rosengren 2011 +License: BSD-3 + +Files: third_party/waf/waflib/extras/blender.py +Copyright: + Copyright Michal Proszek, 2014 (poxip) +License: BSD-3 + +Files: third_party/waf/waflib/extras/boo.py +Copyright: + Copyright Yannick LM 2011 +License: BSD-3 + +Files: third_party/waf/waflib/extras/boost.py +Copyright: + Copyright Gernot Vormayr + Copyright Ruediger Sonderfeld <ruediger@c-plusplus.de>, 2008 + Copyright Bjoern Michaelsen, 2008 + Copyright Luca Fossati, 2008 + Copyright Thomas Nagy, 2008 + Copyright Sylvain Rouquette, 2011 +License: BSD-3 + +Files: third_party/waf/waflib/extras/buildcopy.py +Copyright: + Copyright Calle Rosenquist, 2017 (xbreak) +License: BSD-3 + +Files: third_party/waf/waflib/extras/cabal.py +Copyright: + Copyright Anton Feldmann, 2012 +License: BSD-3 + +Files: + third_party/waf/waflib/extras/c_bgxlc.py + third_party/waf/waflib/extras/c_nec.py + third_party/waf/waflib/extras/fc_bgxlf.py + third_party/waf/waflib/extras/fc_cray.py + third_party/waf/waflib/extras/fc_nag.py + third_party/waf/waflib/extras/fc_nec.py + third_party/waf/waflib/extras/fc_open64.py + third_party/waf/waflib/extras/fc_solstudio.py + third_party/waf/waflib/extras/fc_xlf.py +Copyright: + Copyright harald at klimachs.de +License: BSD-3 + +Files: third_party/waf/waflib/extras/clang_compilation_database.py +Copyright: + Copyright Christoph Koke, 2013 +License: BSD-3 + +Files: third_party/waf/waflib/extras/codelite.py +Copyright: + Copyright Christian Klein (chrikle@berlios.de) +License: BSD-3 + +Files: + third_party/waf/waflib/extras/color_gcc.py + third_party/waf/waflib/extras/color_rvct.py + third_party/waf/waflib/extras/cross_gnu.py + third_party/waf/waflib/extras/dcc.py + third_party/waf/waflib/extras/halide.py + third_party/waf/waflib/extras/qnxnto.py + third_party/waf/waflib/extras/remote.py + third_party/waf/waflib/extras/rst.py + third_party/waf/waflib/extras/ticgt.py +Copyright: + Copyright Jérôme Carretero, 2011-2014 +License: BSD-3 + +Files: third_party/waf/waflib/extras/cppcheck.py +Copyright: + Copyright Michel Mooij, michel.mooij7@gmail.com +License: BSD-3 + +Files: + third_party/waf/waflib/extras/cpplint.py + third_party/waf/waflib/extras/freeimage.py + third_party/waf/waflib/extras/pep8.py +Copyright: + Copyright Sylvain Rouquette, 2011-2014 +License: BSD-3 + +Files: third_party/waf/waflib/extras/dpapi.py +Copyright: + Copyright Matt Clarkson, 2012 +License: BSD-3 + +Files: third_party/waf/waflib/extras/eclipse.py +Copyright: + Copyright Richard Quirk 2009-1011 +License: BSD-3 + +Files: third_party/waf/waflib/extras/erlang.py +Copyright: + Copyright Thomas Nagy, 2010 (ita) + Copyright Przemyslaw Rzepecki, 2016 +License: BSD-3 + +Files: third_party/waf/waflib/extras/fluid.py third_party/waf/waflib/extras/objcopy.py +Copyright: + Copyright Grygoriy Fuchedzhy 2009-2010 +License: BSD-3 + +Files: third_party/waf/waflib/extras/gdbus.py third_party/waf/waflib/extras/msvcdeps.py +Copyright: + Copyright Copyright Garmin International or its subsidiaries, 2012-2018 +License: BSD-3 + +Files: + third_party/waf/waflib/extras/gob2.py + third_party/waf/waflib/Tools/dbus.py + third_party/waf/waflib/Tools/gnu_dirs.py +Copyright: + Copyright Ali Sabil, 2007 +License: BSD-3 + +Files: third_party/waf/waflib/extras/javatest.py third_party/waf/waflib/extras/pyqt5.py +Copyright: + Copyright Federico Pellegrin, 2016-2018 (fedepell) +License: BSD-3 + +Files: third_party/waf/waflib/extras/midl.py +Copyright: + Copyright ultrix gmail com +License: BSD-3 + +Files: third_party/waf/waflib/extras/msvs.py +Copyright: + Copyright Avalanche Studios 2009-2011 + Copyright Thomas Nagy 2011 +License: BSD-3 + +Files: third_party/waf/waflib/extras/pch.py +Copyright: + Copyright Alexander Afanasyev (UCLA), 2014 +License: BSD-3 + +Files: third_party/waf/waflib/extras/pgicc.py third_party/waf/waflib/extras/pgicxx.py +Copyright: + Copyright Antoine Dechaume 2011 +License: BSD-3 + +Files: third_party/waf/waflib/extras/protoc.py +Copyright: + Copyright Philipp Bender, 2012 + Copyright Matt Clarkson, 2012 +License: BSD-3 + +Files: third_party/waf/waflib/extras/pytest.py +Copyright: + Copyright Calle Rosenquist, 2016-2018 (xbreak) +License: BSD-3 + +Files: third_party/waf/waflib/extras/review.py +Copyright: + Copyright Laurent Birtz, 2011 +License: BSD-3 + +Files: + third_party/waf/waflib/extras/run_do_script.py + third_party/waf/waflib/extras/run_m_script.py + third_party/waf/waflib/extras/run_py_script.py + third_party/waf/waflib/extras/run_r_script.py +Copyright: + Copyright Hans-Martin von Gaudecker, 2012 +License: BSD-3 + +Files: third_party/waf/waflib/extras/sas.py +Copyright: + Copyright Mark Coggeshall, 2010 +License: BSD-3 + +Files: third_party/waf/waflib/extras/swig.py +Copyright: + Copyright Petar Forai + Copyright Thomas Nagy 2008-2010 (ita) +License: BSD-3 + +Files: third_party/waf/waflib/extras/use_config.py +Copyright: + Copyright Mathieu Courtois - EDF R&D, 2013 - http://www.code-aster.org +License: BSD-3 + +Files: third_party/waf/waflib/extras/valadoc.py +Copyright: + Copyright Nicolas Joseph 2009 +License: BSD-3 + +Files: third_party/waf/waflib/extras/xcode6.py +Copyright: + Copyright Nicolas Mercier 2011 + Copyright Simon Warg 2015, https://github.com/mimom +License: BSD-3 + +Files: third_party/waf/waflib/Tools/ar.py +Copyright: + Copyright Thomas Nagy, 2006-2018 (ita) + Copyright Ralf Habacker, 2006 (rh) +License: BSD-3 + +Files: third_party/waf/waflib/Tools/bison.py +Copyright: + Copyright John O'Meara, 2006 + Copyright Thomas Nagy 2009-2018 (ita) +License: BSD-3 + +Files: third_party/waf/waflib/Tools/clang.py +Copyright: + Copyright Krzysztof KosiÅ„ski 2014 +License: BSD-3 + +Files: third_party/waf/waflib/Tools/compiler_c.py third_party/waf/waflib/Tools/compiler_cxx.py +Copyright: + Copyright Matthias Jahn jahn dôt matthias ât freenet dôt de, 2007 (pmarat) +License: BSD-3 + +Files: + third_party/waf/waflib/Tools/compiler_d.py + third_party/waf/waflib/Tools/dmd.py + third_party/waf/waflib/Tools/d.py + third_party/waf/waflib/Tools/gdc.py + third_party/waf/waflib/Tools/waf_unit_test.py +Copyright: + Copyright Carlos Rafael Giani, 2006-2007 (dv) + Copyright Thomas Nagy, 2008-2018 (ita) +License: BSD-3 + +Files: third_party/waf/waflib/Tools/flex.py +Copyright: + Copyright John O'Meara, 2006 + Thomas Nagy, 2006-2018 (ita) +License: BSD-3 + +Files: third_party/waf/waflib/Tools/g95.py +Copyright: + Copyright KWS 2010 + Copyright Thomas Nagy 2016-2018 (ita) +License: BSD-3 + +Files: third_party/waf/waflib/Tools/gcc.py third_party/waf/waflib/Tools/gxx.py +Copyright: + Copyright Thomas Nagy, 2006-2018 (ita) + Copyright Ralf Habacker, 2006 (rh) + Copyright Yinon Ehrlich, 2009 +License: BSD-3 + +Files: third_party/waf/waflib/Tools/icc.py +Copyright: + Copyright Stian Selnes 2008 + Copyright Thomas Nagy 2009-2018 (ita) +License: BSD-3 + +Files: third_party/waf/waflib/Tools/ldc2.py +Copyright: + Copyright Alex Rønne Petersen, 2012 (alexrp/Zor) +License: BSD-3 + +Files: third_party/waf/waflib/Tools/lua.py +Copyright: + Copyright Sebastian Schlingmann, 2008 + Copyright Thomas Nagy, 2008-2018 (ita) +License: BSD-3 + +Files: third_party/waf/waflib/Tools/msvc.py +Copyright: + Copyright Carlos Rafael Giani, 2006 (dv) + Copyright Tamas Pal, 2007 (folti) + Copyright Nicolas Mercier, 2009 + Copyright Matt Clarkson, 2012 +License: BSD-3 + +Files: third_party/waf/waflib/Tools/perl.py +Copyright: + Copyright andersg at 0x63.nu 2007 + Copyright Thomas Nagy 2016-2018 (ita) +License: BSD-3 + +Files: third_party/waf/waflib/Tools/python.py +Copyright: + Copyright Thomas Nagy, 2007-2015 (ita) + Copyright Gustavo Carneiro (gjc), 2007 +License: BSD-3 + +Files: third_party/waf/waflib/Tools/ruby.py +Copyright: + Copyright daniel.svensson at purplescout.se 2008 + Copyright Thomas Nagy 2016-2018 (ita) +License: BSD-3 + +Files: third_party/waf/waflib/Tools/suncc.py third_party/waf/waflib/Tools/suncxx.py +Copyright: + Copyright Thomas Nagy, 2006-2018 (ita) + Copyright Ralf Habacker, 2006 (rh) +License: BSD-3 + +Files: third_party/waf/waflib/Tools/vala.py +Copyright: + Copyright Ali Sabil, 2007 + Copyright RadosÅ‚aw SzkodziÅ„ski, 2010 +License: BSD-3 + +Files: third_party/waf/waflib/Tools/winres.py +Copyright: + Copyright Brant Young, 2007 +License: BSD-3 + +Files: third_party/waf/waflib/Tools/xlc.py third_party/waf/waflib/Tools/xlcxx.py +Copyright: + Copyright Thomas Nagy, 2006-2018 (ita) + Copyright Ralf Habacker, 2006 (rh) + Copyright Yinon Ehrlich, 2009 + Copyright Michael Kuhn, 2009 +License: BSD-3 + +License: ISC + Permission to use, copy, modify, and distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + . + THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM + DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL + INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING + FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION + WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +License: BSD-3 + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + . + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + . + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + . + 3. Neither the name of the Institute nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + . + THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + +License: LGPL-3.0+ + This package is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 3 of the License, or (at your option) any later version. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + . + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see <https://www.gnu.org/licenses/>. + . + On Debian systems, the complete text of the GNU Lesser General + Public License can be found in "/usr/share/common-licenses/LGPL-3". + +License: GPL-3.0+ + 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 3 of the License, or + (at your option) any later version. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see <https://www.gnu.org/licenses/>. + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". diff --git a/debian/ctdb.NEWS b/debian/ctdb.NEWS new file mode 100644 index 0000000..e147490 --- /dev/null +++ b/debian/ctdb.NEWS @@ -0,0 +1,55 @@ +samba (2:4.9.0+dfsg-1) experimental; urgency=medium + + From WHATSNEW.txt: + + CTDB changes + ------------ + + There are many changes to CTDB in this release. + + * Configuration has been completely overhauled + + - Daemon and tool options are now specified in a new ctdb.conf + Samba-style configuration file. See ctdb.conf(5) for details. + + - Event script configuration is no longer specified in the top-level + configuration file. It can now be specified per event script. + For example, configuration options for the 50.samba event script + can be placed alongside the event script in a file called + 50.samba.options. Script options can also be specified in a new + script.options file. See ctdb-script.options(5) for details. + + - Options that affect CTDB startup should be configured in the + distribution-specific configuration file. See ctdb.sysconfig(5) + for details. + + - Tunable settings are now loaded from ctdb.tunables. Using + CTDB_SET_TunableVariable=<value> in the main configuration file is + no longer supported. See ctdb-tunables(7) for details. + + A example script to migrate an old-style configuration to the new + style is available in ctdb/doc/examples/config_migrate.sh. + + * The following configuration variables and corresponding ctdbd + command-line options have been removed and not replaced with + counterparts in the new configuration scheme: + + CTDB_PIDFILE --pidfile + CTDB_SOCKET --socket + CTDB_NODES --nlist + CTDB_PUBLIC_ADDRESSES --public-addresses + CTDB_EVENT_SCRIPT_DIR --event-script-dir + CTDB_NOTIFY_SCRIPT --notification-script + CTDB_PUBLIC_INTERFACE --public-interface + CTDB_MAX_PERSISTENT_CHECK_ERRORS --max-persistent-check-errors + + - The compile-time defaults should be used for the first 6 of these. + - Use a symbolic link from the configuration directory to specify a + different location for nodes or public_addresses (e.g. in the + cluster filesystem). + - Executable notification scripts in the notify.d/ subdirectory of + the configuration directory are now run by unconditionally. + - Interfaces for public IP addresses must always be specified in the + public_addresses file using the currently supported format. + + -- Mathieu Parent <sathieu@debian.org> Sat, 22 Sep 2018 07:47:32 +0200 diff --git a/debian/ctdb.README.hurd b/debian/ctdb.README.hurd new file mode 100644 index 0000000..647874a --- /dev/null +++ b/debian/ctdb.README.hurd @@ -0,0 +1,14 @@ +CTDB has the following limitations on GNU Hurd: + +- The pid of a peer is not get from the socket [1]. As a consequence, the peer + process is not killed when releasing IP [2]. + +- network interfaces are always considered present [3] + +- Some other functions are not yet supported [4] + +[1]: ctdb_get_peer_pid() in common/system_gnu.c +[2]: release_kill_clients() in server/ctdb_takeover.c +[3]: ctdb_sys_check_iface_exists() in common/system_gnu.c +[4]: See FIXME in common/system_gnu.c (ctdb_sys_send_arp(), + ctdb_get_process_name(), ctdb_get_lock_info(), ctdb_get_blocker_pid()) diff --git a/debian/ctdb.README.kfreebsd b/debian/ctdb.README.kfreebsd new file mode 100644 index 0000000..6bf9b42 --- /dev/null +++ b/debian/ctdb.README.kfreebsd @@ -0,0 +1,14 @@ +CTDB has the following limitations on Debian/kFreeBSD: + +- The pid of a peer is not get from the socket [1]. As a consequence, the peer + process is not killed when releasing IP [2]. + +- network interfaces are always considered present [3] + +- Some other functions are not yet supported [4] + +[1]: ctdb_get_peer_pid() in common/system_kfreebsd.c +[2]: release_kill_clients() in server/ctdb_takeover.c +[3]: ctdb_sys_check_iface_exists() in common/system_kfreebsd.c +[4]: See FIXME in common/system_kfreebsd.c (ctdb_sys_send_arp(), + ctdb_get_process_name(), ctdb_get_lock_info(), ctdb_get_blocker_pid()) diff --git a/debian/ctdb.dirs b/debian/ctdb.dirs new file mode 100644 index 0000000..3907a72 --- /dev/null +++ b/debian/ctdb.dirs @@ -0,0 +1,5 @@ +var/log/ctdb +var/lib/ctdb +var/lib/ctdb/persistent +var/lib/ctdb/state +var/lib/ctdb/volatile diff --git a/debian/ctdb.docs b/debian/ctdb.docs new file mode 100644 index 0000000..187aaae --- /dev/null +++ b/debian/ctdb.docs @@ -0,0 +1,3 @@ +ctdb/README +ctdb/doc/*.txt +debian/tmp/ctdb/README.* diff --git a/debian/ctdb.example/nfs-kernel-server/98-nfs-static-ports.conf b/debian/ctdb.example/nfs-kernel-server/98-nfs-static-ports.conf new file mode 100644 index 0000000..9bb3227 --- /dev/null +++ b/debian/ctdb.example/nfs-kernel-server/98-nfs-static-ports.conf @@ -0,0 +1,5 @@ +# CTDB: /etc/sysctl.d/98-nfs-static-ports.conf + +fs.nfs.nfs_callback_tcpport = 32764 +fs.nfs.nlm_tcpport = 32768 +fs.nfs.nlm_udpport = 32768 diff --git a/debian/ctdb.example/nfs-kernel-server/enable-nfs.sh b/debian/ctdb.example/nfs-kernel-server/enable-nfs.sh new file mode 100755 index 0000000..2346601 --- /dev/null +++ b/debian/ctdb.example/nfs-kernel-server/enable-nfs.sh @@ -0,0 +1,186 @@ +#!/bin/bash -e + +base="/usr/share/doc/ctdb/examples/nfs-kernel-server/" +logfile="/tmp/enable-ctdb-nfs.$$.log" ; touch $logfile ; +ghostname="" + +# functions --------- + +die() { echo error: $@; echo ; exit 1; }; +getout() { echo exit: $@; echo ; exit 0; }; +stopservice() { echo stopping $1... ; systemctl stop $1 2>&1 >> $logfile 2>&1; } +disableservice() { echo disabling $1... ; systemctl disable $1 2>&1 >> $logfile 2>&1; } +startservice() { echo starting $1... ; systemctl start $1 2>&1 >> $logfile 2>&1; } +sysctlrefresh() { echo refreshing sysctl... ; sysctl --system 2>&1 >> $logfile 2>&1; } + +backupfile() { + echo backing up $1 + [ -f $1.prvctdb ] && die "backup file $1 already exists!" + [ -f $1 ] && cp $1 $1.prvctdb || true +} + +renamefiles() { + for f; do + [ -f "$f" ] || continue + echo "Renaming $f to $f.prvctdb" + mv "$f" "$f".prvctdb + done +} + +checkservice() { + (systemctl list-unit-files | grep -q $1.service) || die "service $1 not found" +} + +replacefile() { + + origfile=$1 + replfile=$2 + + + [ ! -f $base/$origfile ] && die "coult not find $base/$origfile" + + echo replacing $replfile... + cp $base/$origfile $replfile +} + +appendfile() { + + origfile=$1 + replfile=$2 + + [ ! -f $base/$origfile ] && die "coult not find $base/$origfile" + + echo appending $base/$origfile to $replfile... + cat $base/$origfile >> $replfile +} + +execnfsenv() { + + file=$1 ; [ -f $file ] || due "inexistent file $file"; + + echo executing $file... + + $file 2>&1 >> $logfile 2>&1; +} + +fixnfshostname() { + + type nfsconf > /dev/null 2>&1 || die "nfsconf(8) not found" + + if [ "$ghostname" == "" ]; then + echo "What is the FQDN for the public IP address of this host ?" + echo -n "> " + read ghostname + fi + + echo "Setting $ghostname in nfs.conf..." + nfsconf --set statd name "$ghostname" +} + +# end of functions -- + +[ $UID != 0 ] && die "you need root privileges" + +echo """ +This script will enable CTDB NFS HA by changing the following files: + +(1) /etc/nfs.conf ( replace ) +(2) /etc/nfs.conf.d/*.conf ( rename ) +(3) /etc/services ( append ) +(4) /etc/sysctl.d/98-nfs-static-ports.conf ( create ) +(5) /etc/default/quota ( replace ) + +and disabling the following services, as they will be managed +by ctdb: + +(1) rpcbind +(2) nfs-kernel-server +(3) rpc.rquotad + +Obs: + - replaced files keep previous versions as "file".prevctdb + - dependant services will also be stopped +""" + +while true; do + echo -n "Do you agree with this change ? (N/y) => " + read answer + [ "$answer" == "n" ] && getout "exiting without any changes" + [ "$answer" == "y" ] && break +done + + +echo "checking requirements..." + +checkservice nfs-kernel-server +checkservice quota +checkservice rpcbind + +echo "requirements okay!" +echo + +backupfile /etc/nfs.conf +renamefiles /etc/nfs.conf.d/*.conf +backupfile /etc/services +backupfile /etc/default/quota +echo + +set +e + +stopservice ctdb.service +stopservice quota.service +stopservice nfs-kernel-server.service +stopservice rpcbind.service +stopservice rpcbind.socket +stopservice rpcbind.target +echo + +disableservice ctdb.service +disableservice quota.service +disableservice nfs-kernel-server.service +disableservice rpcbind.service +disableservice rpcbind.socket +disableservice rpcbind.target +echo + +set -e + +replacefile nfs.conf /etc/nfs.conf +replacefile 98-nfs-static-ports.conf /etc/sysctl.d/98-nfs-static-ports.conf +replacefile quota /etc/default/quota +echo + +appendfile services /etc/services +echo + +fixnfshostname +echo + +sysctlrefresh +echo + +echo """Finished! Make sure to configure properly: + + - /etc/exports (containing the clustered fs to be exported) + - /etc/ctdb/nodes (containing all your node private IPs) + - /etc/ctdb/public_addressess (containing public addresses) + +A log file can be found at: + + - /tmp/enable-ctdb-nfs.$$.log + +Remember: + + - to place a cluster lock in /etc/ctdb/ctdb.conf: + ... + [cluster] + cluster lock = /clustered.filesystem/.reclock + ... + +And, make sure you enable ctdb service again: + + - systemctl enable ctdb.service + - systemctl start ctdb.service + +Enjoy! +""" diff --git a/debian/ctdb.example/nfs-kernel-server/nfs.conf b/debian/ctdb.example/nfs-kernel-server/nfs.conf new file mode 100644 index 0000000..5cfa13a --- /dev/null +++ b/debian/ctdb.example/nfs-kernel-server/nfs.conf @@ -0,0 +1,20 @@ +[general] +pipefs-directory = /run/rpc_pipefs + +[lockd] +port = 32768 +udp-port = 32768 + +[mountd] +manage-gids = 1 +port = 32767 + +[nfsd] +threads = 8 +vers4 = n + +[statd] +ha-callout = /etc/ctdb/statd-callout +name = @NFS_HOSTNAME@ +outgoing-port = 32766 +port = 32765 diff --git a/debian/ctdb.example/nfs-kernel-server/quota b/debian/ctdb.example/nfs-kernel-server/quota new file mode 100644 index 0000000..00eab66 --- /dev/null +++ b/debian/ctdb.example/nfs-kernel-server/quota @@ -0,0 +1,5 @@ +# Set to "true" if warnquota should be run in cron.daily +run_warnquota= + +# Add options to rpc.rquotad here +RPCRQUOTADOPTS="-p 32769" diff --git a/debian/ctdb.example/nfs-kernel-server/services b/debian/ctdb.example/nfs-kernel-server/services new file mode 100644 index 0000000..3ff6b1d --- /dev/null +++ b/debian/ctdb.example/nfs-kernel-server/services @@ -0,0 +1,16 @@ +# CTDB: fixed NFS/RPC service ports for clustering + +rpc.nfsd 2049/tcp # RPC nfsd +rpc.nfsd 2049/udp # RPC nfsd +rpc.nfs-cb 32764/tcp # RPC nfs callback +rpc.nfs-cb 32764/udp # RPC nfs callback +rpc.statd-bc 32765/tcp # RPC statd broadcast +rpc.statd-bc 32765/udp # RPC statd broadcast +rpc.statd 32766/tcp # RPC statd listen +rpc.statd 32766/udp # RPC statd listen +rpc.mountd 32767/tcp # RPC mountd +rpc.mountd 32767/udp # RPC mountd +rpc.lockd 32768/tcp # RPC lockd/nlockmgr +rpc.lockd 32768/udp # RPC lockd/nlockmgr +rpc.quotad 32769/tcp # RPC quotad +rpc.quotad 32769/udp # RPC quotad diff --git a/debian/ctdb.examples b/debian/ctdb.examples new file mode 100644 index 0000000..cad960b --- /dev/null +++ b/debian/ctdb.examples @@ -0,0 +1,2 @@ +ctdb/doc/examples/* +debian/ctdb.example/nfs-kernel-server/ diff --git a/debian/ctdb.install b/debian/ctdb.install new file mode 100755 index 0000000..484fc67 --- /dev/null +++ b/debian/ctdb.install @@ -0,0 +1,31 @@ +#!/usr/bin/dh-exec --with-scripts=filter-arch +ctdb/config/ctdb.conf etc/ctdb +ctdb/config/ctdb.tunables etc/ctdb +ctdb/config/script.options etc/ctdb +etc/ctdb +etc/sudoers.d +[linux-any] lib/systemd/system/ctdb.service +usr/bin/ctdb +usr/bin/ctdb_diagnostics +usr/bin/ltdbtool +usr/bin/onnode +usr/bin/ping_pong +usr/libexec/ctdb/ +usr/lib/*/samba/libctdb-event-client-samba4.so.0 +usr/lib/*/samba/libtalloc-report-samba4.so.0 +usr/sbin/ctdbd +usr/share/ctdb/events/legacy/*.script +usr/share/man/man1/ctdb.1 +usr/share/man/man1/ctdb_diagnostics.1 +usr/share/man/man1/ctdbd.1 +usr/share/man/man1/ltdbtool.1 +usr/share/man/man1/onnode.1 +usr/share/man/man1/ping_pong.1 +usr/share/man/man5/ctdb-script.options.5 +usr/share/man/man5/ctdb.conf.5 +usr/share/man/man5/ctdb.sysconfig.5 +usr/share/man/man7/ctdb-etcd.7 +usr/share/man/man7/ctdb-statistics.7 +usr/share/man/man7/ctdb-tunables.7 +[amd64 arm64 armel armhf i386 mips64el mipsel ppc64el s390x] usr/share/man/man7/ctdb_mutex_ceph_rados_helper.7 +usr/share/man/man7/ctdb.7 diff --git a/debian/ctdb.logrotate b/debian/ctdb.logrotate new file mode 100644 index 0000000..c1bf28a --- /dev/null +++ b/debian/ctdb.logrotate @@ -0,0 +1,9 @@ +/var/log/ctdb/log.ctdb { + weekly + missingok + rotate 7 + copytruncate + compress + delaycompress + notifempty +} diff --git a/debian/ctdb.postinst b/debian/ctdb.postinst new file mode 100644 index 0000000..d113c3b --- /dev/null +++ b/debian/ctdb.postinst @@ -0,0 +1,62 @@ +#!/bin/sh +# postinst script for ctdb +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * <postinst> `configure' <most-recently-configured-version> +# * <old-postinst> `abort-upgrade' <new version> +# * <conflictor's-postinst> `abort-remove' `in-favour' <package> +# <new-version> +# * <postinst> `abort-remove' +# * <deconfigured's-postinst> `abort-deconfigure' `in-favour' +# <failed-install-package> <version> `removing' +# <conflicting-package> <version> +# for details, see https://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +enable_legacy() { # From ctdb/packaging/RPM/ctdb.spec.in + # If mandatory 00.ctdb event script is not enabled then enable it and + # some other scripts. The assumption here is that this is a + # first-time install or an upgrade to a version that requires event + # scripts to be enabled via symlinks. + required_script="00.ctdb" + required_path="/etc/ctdb/events/legacy/${required_script}.script" + if [ ! -L "$required_path" ] && [ ! -e "$required_path" ] ; then + default_scripts="${required_script} + 01.reclock + 05.system + 10.interface + " + for t in $default_scripts ; do + tgt="/usr/share/ctdb/events/legacy/${t}.script" + name="/etc/ctdb/events/legacy/${t}.script" + # Directory is created via install and files + ln -s "$tgt" "$name" + done + fi +} + +case "$1" in + configure) + enable_legacy + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 diff --git a/debian/ctdb.postrm b/debian/ctdb.postrm new file mode 100644 index 0000000..3ba81db --- /dev/null +++ b/debian/ctdb.postrm @@ -0,0 +1,64 @@ +#!/bin/sh +# postrm script for ctdb +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * <postrm> `remove' +# * <postrm> `purge' +# * <old-postrm> `upgrade' <new-version> +# * <new-postrm> `failed-upgrade' <old-version> +# * <new-postrm> `abort-install' +# * <new-postrm> `abort-install' <old-version> +# * <new-postrm> `abort-upgrade' <old-version> +# * <disappearer's-postrm> `disappear' <overwriter> +# <overwriter-version> +# for details, see https://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +disable_legacy() { # From ctdb/packaging/RPM/ctdb.spec.in + # Uninstall, not upgrade. Clean up by removing any remaining links. + if [ "$1" = "0" ] ; then + for i in "/etc/ctdb/events/legacy/"*.script ; do + if [ -L "$i" ] ; then + rm -f "$i" + fi + done + fi +} + +remove_leftover() { + + # Remove files created after initalization + + rm -f /etc/ctdb/nodes + rm -f /etc/ctdb/public_addresses + rm -f /var/lib/ctdb/volatile/* + rm -f /var/lib/ctdb/state/* + rm -f /var/lib/ctdb/persistent/* + rm -rf /var/lib/ctdb/scripts +} + +case "$1" in + purge) + disable_legacy 0 + remove_leftover + ;; + + remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..acc9c2e --- /dev/null +++ b/debian/dirs @@ -0,0 +1,5 @@ +etc/samba +usr/bin +usr/sbin +usr/share/man/man1 +usr/share/man/man7 diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..844fb4e --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,5 @@ +[DEFAULT] +sign-tags = True +pristine-tar = True +debian-branch = bookworm +upstream-branch = upstream_4.17 diff --git a/debian/gdbcommands b/debian/gdbcommands new file mode 100644 index 0000000..5774b9a --- /dev/null +++ b/debian/gdbcommands @@ -0,0 +1,2 @@ +bt +quit diff --git a/debian/genshlibs b/debian/genshlibs new file mode 100755 index 0000000..4ee9ea9 --- /dev/null +++ b/debian/genshlibs @@ -0,0 +1,111 @@ +#! /bin/sh +# +# generate shlibs/symbols files for samba packages +# +# samba ships a mix of: +# public libraries with stable ABI in /usr/lib +# public libraries in /usr/lib +# public python libraries in /usr/lib +# private libraries in /usr/lib/samba/ +# plugins in /usr/lib/samba/*/ +# +# For public libraries with stable ABI we generate symbols files. +# These are listed in d/package.symbols files. +# For other librries, we only need to generate shlibs files +# with basic version information so that dpkg-shlibdeps will find them. +# Here, for libs without .symbols file, we have 2 choices: +# for public libraries we generate ($pkg >> $version) dependency in +# shlibs file, but for private libs the relation is equality (=). +# We do not process plugins, and we do not process python objects. +# +# dh_makeshlibs is too difficult to use here, we have much simpler approach. +# We know exactly where our libs resides (dh_makeshlibs looks everywhere) +# and we know filename patterns to recognize our shared libs. +# dh_makeshlibs can not be used to generate symbols files for *some* libraries +# (it is either all if .symbols is provided, or nothing if not). +# It is easier to take strightforward approach than to fight a tool. + +set -e +umask 022 + +: ${DEB_VERSION:=$(dpkg-parsechangelog -S Version)} +: ${DEB_HOST_MULTIARCH:=$(dpkg-architecture -qDEB_HOST_MULTIARCH)} + +# arguments in form pkg1=custom-version pkg2=version2... +# to override ${DEB_VERSION} for the given packages +custvers="$*" + +lib=usr/lib/${DEB_HOST_MULTIARCH} # the only library directory +smblib=$lib/samba # samba private libraries + +rc=0 + +# process all packages but skip those without libs of interst +for pkg in $(dh_listpackages); do + pd=debian/$pkg # package directory + + # find library directories + libs= + for x in $lib $smblib ; do + [ -d $pd/$x ] && libs="$libs $x" + done + [ -n "$libs" ] || continue + # find libraries in library dirs (search for libfoo.so.NN names) + libs="$(cd $pd; find $libs -maxdepth 1 -regex '.*\.so.[0-9]+')" + [ -n "$libs" ] || continue + + ver=${DEB_VERSION} + for x in $custvers; do + case "$x" in + ( $pkg=* ) ver=${x#*=}; break;; + esac + done + echo "${0##*/}: processing $pkg $ver" + + # generate shlibs file: for public libs use >>$ver, for private =$ver + mkdir -p $pd/DEBIAN + for x in $libs; do + case "$x" in + ($smblib/*) rel="= $ver";; + (*) rel=">> $ver~";; + esac + x=${x##*/} + echo "${x%.so.*} ${x#**.so.} $pkg ($rel)" + done | LC_ALL=C sort > $pd/DEBIAN/shlibs + + # see if we have any public (eg, not in /usr/lib/samba/) libs + if echo "$libs" | fgrep -qv $smblib/; then + # generate ldconfig trigger activation + x=debian/.debhelper/generated/$pkg/triggers + y="activate-noawait ldconfig" + mkdir -p ${x%/*} + if [ ! -f $x ] || ! grep -q "^$y" $x; then + echo "# Triggers added by Samba:$0 ${DEB_VERSION} +$y" >> $x + fi + fi + + # packages without .symbols file need no further processing + [ -f debian/$pkg.symbols ] || continue + + # process libraries listed in .symbols files with dpkg-gensymbols + # find libraries listed in .symbols, find full path of them in $libs + # and construct -e$filename argument list in $checklibs for dpkg-gensymbols + symlibs=$(sed -n -r 's/^([a-z][^ ]*) .*/\1/p' debian/$pkg.symbols) + checklibs= + for x in $symlibs; do + for y in $libs; do + case $y in (*/$x) checklibs="$checklibs -e$pd/$y"; break;; esac + done + done + # dpkg-gensymbols will detect listed but missing libs + # here we continue if dpkg-gensymbols failed to collect all errors + x=0; dpkg-gensymbols -c4 -p$pkg -P$pd -v$ver -l$smblib $checklibs || x=$? + if [ $x = 0 ]; then : + elif [ $x = 2 ]; then rc=1 + else exit 1 + fi + +done + +exit $rc diff --git a/debian/gitlabracadabra.yml b/debian/gitlabracadabra.yml new file mode 100644 index 0000000..e0018b5 --- /dev/null +++ b/debian/gitlabracadabra.yml @@ -0,0 +1,136 @@ +samba-team/: + create_object: true + name: Debian Samba Team + description: |- + visibility: public + lfs_enabled: false + request_access_enabled: true + members: + ivodd: owner + jelmer: owner + sathieu: owner + vorlon: owner + carnil: developer + unknown_members: delete + variables: [] + unknown_variables: delete + +.samba-project: + create_object: true + name: '' + default_branch: master + description: '' + issues_access_level: disabled + repository_access_level: enabled + merge_requests_access_level: enabled + builds_access_level: enabled + wiki_access_level: disabled + snippets_access_level: disabled + resolve_outdated_diff_discussions: false + build_git_strategy: fetch + build_timeout: 3600 + auto_cancel_pending_pipelines: enabled + build_coverage_regex: '' + ci_config_path: 'debian/salsa-ci.yml' + ci_default_git_depth: + auto_devops_enabled: false + auto_devops_deploy_strategy: continuous + container_registry_enabled: false + shared_runners_enabled: true + visibility: public + public_builds: + only_allow_merge_if_pipeline_succeeds: false + only_allow_merge_if_all_discussions_are_resolved: true + merge_method: merge + lfs_enabled: false + request_access_enabled: false + tag_list: [Debian, Samba] + # avatar + printing_merge_request_link_enabled: true + initialize_with_readme: true + branches: + - master + groups: {} + unknown_groups: delete + members: {} + unknown_members: delete + protected_branches: + master: + merge_access_level: maintainer + push_access_level: maintainer + '*jessie*': + merge_access_level: maintainer + push_access_level: maintainer + pristine-tar: + merge_access_level: noone + push_access_level: maintainer + squeeze*: + merge_access_level: maintainer + push_access_level: maintainer + wheezy*: + merge_access_level: maintainer + push_access_level: maintainer + stretch: + merge_access_level: maintainer + push_access_level: maintainer + stretch-security: + merge_access_level: maintainer + push_access_level: maintainer + upstream_*: + merge_access_level: noone + push_access_level: maintainer + upstream-*: + merge_access_level: noone + push_access_level: maintainer + unknown_protected_branches: delete + protected_tags: + '*': developer + unknown_protected_tags: delete + archived: false + variables: [] + unknown_variables: delete + +samba-team/cifs-utils: + extends: .samba-project + name: cifs-utils + description: |- + cifs-utils packaging + +samba-team/ldb: + extends: .samba-project + name: ldb + description: |- + ldb packaging + +samba-team/libsmb2: + extends: .samba-project + name: libsmb2 + description: |- + libsmb2 packaging + +samba-team/samba: + extends: .samba-project + name: samba + description: |- + samba packaging. + + See [debian/README.source.md](https://salsa.debian.org/samba-team/samba/blob/master/debian/README.source.md) for build instructions. + build_timeout: 10800 + +samba-team/talloc: + extends: .samba-project + name: talloc + description: |- + talloc packaging + +samba-team/tdb: + extends: .samba-project + name: tdb + description: |- + tdb packaging + +samba-team/tevent: + extends: .samba-project + name: tevent + description: |- + tevent packaging diff --git a/debian/is-configured b/debian/is-configured new file mode 100755 index 0000000..0ba6c22 --- /dev/null +++ b/debian/is-configured @@ -0,0 +1,32 @@ +#! /bin/sh +# Check if the given service (smb|nmb|winbind|samba) +# should be run according to the settings in smb.conf + +[ -f /etc/samba/smb.conf ] || exit 1 + +server_role=$(testparm -s --parameter-name="server role" 2>/dev/null) +[ "active directory domain controller" = "$server_role" ] \ + && addc=1 || addc=0 + +case "$1" in + ( smb | smbd ) + exit $addc + ;; + ( winbind | winbindd ) + exit $addc + ;; + ( nmb | nmbd ) + [ "$addc" = 1 ] && exit 1 + disable_netbios=$(testparm -s --parameter-name="disable netbios" 2>/dev/null) + [ Yes = "$disable_netbios" ] && exit 1 || exit 0 + ;; + ( samba | samba-ad-dc ) + # source4/samba/server.c checks for other parameters too, even if !AD-DC + # Should we support these? + exit $((!$addc)) + ;; + ( * ) + echo "Wrong usage: should be smb|nmb|winbind|samba" >&2 + exit 255 + ;; +esac diff --git a/debian/ldb-tools.install b/debian/ldb-tools.install new file mode 100644 index 0000000..0e4e3d2 --- /dev/null +++ b/debian/ldb-tools.install @@ -0,0 +1,8 @@ +usr/bin/ldb* +usr/lib/*/samba/libldb-cmdline-samba4.so.0 +usr/share/man/man1/ldbadd.1 +usr/share/man/man1/ldbdel.1 +usr/share/man/man1/ldbedit.1 +usr/share/man/man1/ldbmodify.1 +usr/share/man/man1/ldbrename.1 +usr/share/man/man1/ldbsearch.1 diff --git a/debian/libldb-dev.examples b/debian/libldb-dev.examples new file mode 100644 index 0000000..8d5de99 --- /dev/null +++ b/debian/libldb-dev.examples @@ -0,0 +1,2 @@ +lib/ldb/examples/ldbreader.c +lib/ldb/examples/ldifreader.c diff --git a/debian/libldb-dev.install b/debian/libldb-dev.install new file mode 100644 index 0000000..5ce0cfd --- /dev/null +++ b/debian/libldb-dev.install @@ -0,0 +1,9 @@ +usr/include/samba-4.0/ldb.h +usr/include/samba-4.0/ldb_errors.h +usr/include/samba-4.0/ldb_handlers.h +usr/include/samba-4.0/ldb_module.h +usr/include/samba-4.0/ldb_version.h +#usr/lib/*/samba/libldb.a +usr/lib/*/libldb.so +usr/lib/*/pkgconfig/ldb.pc +usr/share/man/man3/ldb.3 diff --git a/debian/libldb2.install b/debian/libldb2.install new file mode 100755 index 0000000..57516a1 --- /dev/null +++ b/debian/libldb2.install @@ -0,0 +1,21 @@ +#!/bin/sh +echo 'usr/lib/*/libldb.so.*' +# lib/ldb/wscript: (sizeof(size_t) >= 8), >=64bit is required for lmdb +if [ 64 -le "$(dpkg-architecture -qDEB_HOST_ARCH_BITS)" ] +then + echo 'usr/lib/*/samba/libldb-mdb-int-samba4.so.0' + echo 'usr/lib/*/samba/ldb/mdb.so' +fi +echo 'usr/lib/*/samba/libldb-key-value-samba4.so.0' +echo 'usr/lib/*/samba/libldb-tdb-err-map-samba4.so.0' +echo 'usr/lib/*/samba/libldb-tdb-int-samba4.so.0' + +echo 'usr/lib/*/samba/ldb/asq.so' +echo 'usr/lib/*/samba/ldb/ldap.so' +echo 'usr/lib/*/samba/ldb/ldb.so' +echo 'usr/lib/*/samba/ldb/paged_searches.so' +echo 'usr/lib/*/samba/ldb/rdn_name.so' +echo 'usr/lib/*/samba/ldb/sample.so' +echo 'usr/lib/*/samba/ldb/server_sort.so' +echo 'usr/lib/*/samba/ldb/skel.so' +echo 'usr/lib/*/samba/ldb/tdb.so' diff --git a/debian/libldb2.lintian-overrides b/debian/libldb2.lintian-overrides new file mode 100644 index 0000000..2d93b41 --- /dev/null +++ b/debian/libldb2.lintian-overrides @@ -0,0 +1,3 @@ +libldb2: shared-library-lacks-prerequisites */samba/lib*.so.0* +libldb2: repeated-path-segment ldb */ldb/modules/ldb/* +libldb2: package-contains-empty-directory */ldb/modules/ldb/* diff --git a/debian/libldb2.symbols b/debian/libldb2.symbols new file mode 100644 index 0000000..f042df4 --- /dev/null +++ b/debian/libldb2.symbols @@ -0,0 +1,383 @@ +libldb.so.2 #PACKAGE# #MINVER# +* Build-Depends-Package: libldb-dev + LDB_0.9.10@LDB_0.9.10 0.9.21 + LDB_0.9.12@LDB_0.9.12 0.9.21 + LDB_0.9.15@LDB_0.9.15 0.9.21 + LDB_0.9.16@LDB_0.9.16 0.9.21 + LDB_0.9.17@LDB_0.9.17 0.9.21 + LDB_0.9.18@LDB_0.9.18 0.9.21 + LDB_0.9.19@LDB_0.9.19 0.9.21 + LDB_0.9.20@LDB_0.9.20 0.9.21 + LDB_0.9.22@LDB_0.9.22 0.9.22 + LDB_0.9.23@LDB_0.9.23 0.9.23 + LDB_0.9.24@LDB_0.9.24 0.9.24 + LDB_1.0.0@LDB_1.0.0 1.0.2~ + LDB_1.0.1@LDB_1.0.1 1.0.1~ + LDB_1.0.2@LDB_1.0.2 1.0.2~ + LDB_1.1.0@LDB_1.1.0 1.1.0 + LDB_1.1.1@LDB_1.1.1 1.1.1~ + LDB_1.1.2@LDB_1.1.2 1.1.2~ + LDB_1.1.3@LDB_1.1.3 1.1.3 + LDB_1.1.4@LDB_1.1.4 1.1.4 + LDB_1.1.5@LDB_1.1.5 1.1.5 + LDB_1.1.6@LDB_1.1.6 1.1.6 + LDB_1.1.7@LDB_1.1.7 1.1.12 + LDB_1.1.8@LDB_1.1.8 1.1.12 + LDB_1.1.9@LDB_1.1.9 1.1.12 + LDB_1.1.10@LDB_1.1.10 1.1.12 + LDB_1.1.11@LDB_1.1.11 1.1.12 + LDB_1.1.12@LDB_1.1.12 1.1.12 + LDB_1.1.13@LDB_1.1.13 1.1.13 + LDB_1.1.14@LDB_1.1.14 1:1.1.15 + LDB_1.1.15@LDB_1.1.15 1:1.1.15 + LDB_1.1.16@LDB_1.1.16 1:1.1.16 + LDB_1.1.17@LDB_1.1.17 1:1.1.17 + LDB_1.1.18@LDB_1.1.18 1:1.1.18 + LDB_1.1.19@LDB_1.1.19 1:1.1.19 + LDB_1.1.20@LDB_1.1.20 1:1.1.20 + LDB_1.1.21@LDB_1.1.21 2:1.1.21 + LDB_1.1.22@LDB_1.1.22 2:1.1.22 + LDB_1.1.23@LDB_1.1.23 2:1.1.23 + LDB_1.1.24@LDB_1.1.24 2:1.1.24 + LDB_1.1.25@LDB_1.1.25 2:1.1.25 + LDB_1.1.26@LDB_1.1.26 2:1.1.26 + LDB_1.1.27@LDB_1.1.27 2:1.1.27 + LDB_1.1.28@LDB_1.1.28 2:1.1.29 + LDB_1.1.29@LDB_1.1.29 2:1.1.29 + LDB_1.1.30@LDB_1.1.30 2:1.1.30 + LDB_1.1.31@LDB_1.1.31 2:1.1.31 + LDB_1.2.0@LDB_1.2.0 2:1.2.0 + LDB_1.2.1@LDB_1.2.1 2:1.2.1 + LDB_1.2.2@LDB_1.2.2 2:1.2.2 + LDB_1.2.3@LDB_1.2.3 2:1.2.3 + LDB_1.3.0@LDB_1.3.0 2:1.3.0 + LDB_1.3.1@LDB_1.3.1 2:1.3.1 + LDB_1.3.2@LDB_1.3.2 2:1.3.2 + LDB_1.4.0@LDB_1.4.0 2:1.4.0 + LDB_1.4.1@LDB_1.4.1 2:1.4.1 + LDB_1.5.0@LDB_1.5.0 2:1.5.0 + LDB_1.5.1@LDB_1.5.1 2:1.5.1 + LDB_1.5.2@LDB_1.5.2 2:1.5.2 + LDB_1.5.3@LDB_1.5.3 2:1.5.3 + LDB_1.6.0@LDB_1.6.0 2:1.6.0 + LDB_1.6.1@LDB_1.6.1 2:1.6.1 + LDB_1.6.2@LDB_1.6.2 2:1.6.2 + LDB_1.6.3@LDB_1.6.3 2:1.6.3 + LDB_2.0.0@LDB_2.0.0 2:2.0.0 + LDB_2.0.1@LDB_2.0.1 2:2.0.1 + LDB_2.0.2@LDB_2.0.2 2:2.0.2 + LDB_2.0.3@LDB_2.0.3 2:2.0.3 + LDB_2.0.4@LDB_2.0.4 2:2.0.4 + LDB_2.0.5@LDB_2.0.5 2:2.0.5 + LDB_2.1.0@LDB_2.1.0 2:2.1.0 + LDB_2.1.1@LDB_2.1.1 2:2.1.1 + LDB_2.2.0@LDB_2.2.0 2:2.2.0 + LDB_2.4.0@LDB_2.4.0 2:2.5.0 + LDB_2.4.1@LDB_2.4.1 2:2.5.0 + LDB_2.4.4@LDB_2.4.4 2:2.4.4 + LDB_2.5.0@LDB_2.5.0 2:2.5.0 + LDB_2.6.0@LDB_2.6.0 2:2.6.0 + LDB_2.6.1@LDB_2.6.1 2:2.6.1 + LDB_2.6.2@LDB_2.6.2 2:2.6.2 + ldb_check_critical_controls@LDB_0.9.22 0.9.22 + ldb_controls_except_specified@LDB_0.9.22 0.9.22 + ldb_control_to_string@LDB_1.0.2 1.0.2~git20110403 + ldb_add@LDB_0.9.10 0.9.21 + ldb_any_comparison@LDB_0.9.10 0.9.21 + ldb_asprintf_errstring@LDB_0.9.10 0.9.21 + ldb_attr_casefold@LDB_0.9.10 0.9.21 + ldb_attr_dn@LDB_0.9.10 0.9.21 + ldb_attr_in_list@LDB_0.9.10 0.9.21 + ldb_attr_list_copy@LDB_0.9.10 0.9.21 + ldb_attr_list_copy_add@LDB_0.9.10 0.9.21 + ldb_base64_decode@LDB_0.9.10 0.9.21 + ldb_base64_encode@LDB_0.9.10 0.9.21 + ldb_binary_decode@LDB_0.9.10 0.9.21 + ldb_binary_encode@LDB_0.9.10 0.9.21 + ldb_binary_encode_string@LDB_0.9.10 0.9.21 + ldb_build_add_req@LDB_0.9.10 0.9.21 + ldb_build_del_req@LDB_0.9.10 0.9.21 + ldb_build_extended_req@LDB_0.9.10 0.9.21 + ldb_build_mod_req@LDB_0.9.10 0.9.21 + ldb_build_rename_req@LDB_0.9.10 0.9.21 + ldb_build_search_req@LDB_0.9.10 0.9.21 + ldb_build_search_req_ex@LDB_0.9.10 0.9.21 + ldb_casefold@LDB_0.9.10 0.9.21 + ldb_casefold_default@LDB_0.9.10 0.9.21 + ldb_comparison_binary@LDB_0.9.10 0.9.21 + ldb_comparison_fold@LDB_0.9.10 0.9.21 + ldb_connect@LDB_0.9.10 0.9.21 + ldb_control_to_string@LDB_1.0.2 1.0.2 + ldb_debug@LDB_0.9.10 0.9.21 + ldb_debug_add@LDB_0.9.10 0.9.21 + ldb_debug_end@LDB_0.9.10 0.9.21 + ldb_debug_set@LDB_0.9.10 0.9.21 + ldb_delete@LDB_0.9.10 0.9.21 + ldb_dn_add_base@LDB_0.9.10 0.9.21 + ldb_dn_add_base_fmt@LDB_0.9.10 0.9.21 + ldb_dn_add_child@LDB_0.9.10 0.9.21 + ldb_dn_add_child_fmt@LDB_0.9.10 0.9.21 + ldb_dn_add_child_val@LDB_1.5.1 2:1.5.4 + ldb_dn_alloc_casefold@LDB_0.9.10 0.9.21 + ldb_dn_alloc_linearized@LDB_0.9.10 0.9.21 + ldb_dn_canonical_ex_string@LDB_0.9.10 0.9.21 + ldb_dn_canonical_string@LDB_0.9.10 0.9.21 + ldb_dn_check_local@LDB_0.9.10 0.9.21 + ldb_dn_check_special@LDB_0.9.10 0.9.21 + ldb_dn_compare@LDB_0.9.10 0.9.21 + ldb_dn_compare_base@LDB_0.9.10 0.9.21 + ldb_dn_copy@LDB_0.9.10 0.9.21 + ldb_dn_escape_value@LDB_0.9.10 0.9.21 + ldb_dn_extended_add_syntax@LDB_0.9.10 0.9.21 + ldb_dn_extended_filter@LDB_0.9.10 0.9.21 + ldb_dn_extended_syntax_by_name@LDB_0.9.10 0.9.21 + ldb_dn_from_ldb_val@LDB_0.9.10 0.9.21 + ldb_dn_get_casefold@LDB_0.9.10 0.9.21 + ldb_dn_get_comp_num@LDB_0.9.10 0.9.21 + ldb_dn_get_component_name@LDB_0.9.10 0.9.21 + ldb_dn_get_component_val@LDB_0.9.10 0.9.21 + ldb_dn_get_extended_comp_num@LDB_0.9.23 0.9.23 + ldb_dn_get_extended_component@LDB_0.9.10 0.9.21 + ldb_dn_get_extended_linearized@LDB_0.9.10 0.9.21 + ldb_dn_get_ldb_context@LDB_1.1.22 2:1.1.23 + ldb_dn_get_linearized@LDB_0.9.10 0.9.21 + ldb_dn_get_parent@LDB_0.9.10 0.9.21 + ldb_dn_get_rdn_name@LDB_0.9.10 0.9.21 + ldb_dn_get_rdn_val@LDB_0.9.10 0.9.21 + ldb_dn_has_extended@LDB_0.9.10 0.9.21 + ldb_dn_is_null@LDB_0.9.10 0.9.21 + ldb_dn_is_special@LDB_0.9.10 0.9.21 + ldb_dn_is_valid@LDB_0.9.10 0.9.21 + ldb_dn_map_local@LDB_0.9.10 0.9.21 + ldb_dn_map_rebase_remote@LDB_0.9.10 0.9.21 + ldb_dn_map_remote@LDB_0.9.10 0.9.21 + ldb_dn_minimise@LDB_0.9.23 0.9.23 + ldb_dn_new@LDB_0.9.10 0.9.21 + ldb_dn_new_fmt@LDB_0.9.10 0.9.21 + ldb_dn_remove_base_components@LDB_0.9.10 0.9.21 + ldb_dn_remove_child_components@LDB_0.9.10 0.9.21 + ldb_dn_remove_extended_components@LDB_0.9.10 0.9.21 + ldb_dn_replace_components@LDB_1.1.2 1.1.2~ + ldb_dn_set_component@LDB_0.9.10 0.9.21 + ldb_dn_set_extended_component@LDB_0.9.10 0.9.21 + ldb_dn_update_components@LDB_0.9.10 0.9.21 + ldb_dn_validate@LDB_0.9.10 0.9.21 + ldb_dump_results@LDB_0.9.10 0.9.21 + ldb_error_at@LDB_0.9.15 0.9.21 + ldb_errstring@LDB_0.9.10 0.9.21 + ldb_extended@LDB_0.9.10 0.9.21 + ldb_extended_default_callback@LDB_0.9.10 0.9.21 + ldb_filter_attrs@LDB_2.0.1 2:2.0.1 + ldb_filter_attrs_in_place@LDB_2.6.2 2:2.6.2 + ldb_filter_from_tree@LDB_0.9.10 0.9.21 + ldb_get_config_basedn@LDB_0.9.10 0.9.21 + ldb_get_create_perms@LDB_0.9.10 0.9.21 + ldb_get_default_basedn@LDB_0.9.10 0.9.21 + ldb_get_event_context@LDB_0.9.10 0.9.21 + ldb_get_flags@LDB_0.9.10 0.9.21 + ldb_get_opaque@LDB_0.9.10 0.9.21 + ldb_get_root_basedn@LDB_0.9.10 0.9.21 + ldb_get_schema_basedn@LDB_0.9.10 0.9.21 + ldb_global_init@LDB_0.9.10 0.9.21 + ldb_handle_get_event_context@LDB_1.1.30 2:1.2.2 + ldb_handle_new@LDB_0.9.10 0.9.21 + ldb_handle_use_global_event_context@LDB_1.1.30 2:1.2.2 + ldb_handler_copy@LDB_0.9.10 0.9.21 + ldb_handler_fold@LDB_0.9.10 0.9.21 + ldb_init@LDB_0.9.10 0.9.21 + ldb_ldif_message_redacted_string@LDB_1.2.2 2:1.2.2 + ldb_ldif_message_string@LDB_0.9.10 0.9.21 + ldb_ldif_parse_modrdn@LDB_1.1.0 1.1.0 + ldb_ldif_read@LDB_0.9.10 0.9.21 + ldb_ldif_read_file@LDB_0.9.10 0.9.21 + ldb_ldif_read_file_state@LDB_1.1.5 1.1.5 + ldb_ldif_read_free@LDB_0.9.10 0.9.21 + ldb_ldif_read_string@LDB_0.9.10 0.9.21 + ldb_ldif_write@LDB_0.9.10 0.9.21 + ldb_ldif_write_file@LDB_0.9.10 0.9.21 + ldb_ldif_write_redacted_trace_string@LDB_1.1.12 1.1.12 + ldb_ldif_write_string@LDB_0.9.10 0.9.21 + ldb_load_modules@LDB_0.9.10 0.9.21 + ldb_map_add@LDB_0.9.22 0.9.22 + ldb_map_delete@LDB_0.9.22 0.9.22 + ldb_map_init@LDB_0.9.10 0.9.21 + ldb_map_modify@LDB_0.9.22 0.9.22 + ldb_map_rename@LDB_0.9.22 0.9.22 + ldb_map_search@LDB_0.9.22 0.9.22 + ldb_match_message@LDB_1.3.0 2:1.3.0 + ldb_match_msg@LDB_0.9.10 0.9.21 + ldb_match_msg_error@LDB_0.9.15 0.9.21 + ldb_match_msg_objectclass@LDB_0.9.10 0.9.21 + ldb_match_scope@LDB_2.6.2 2:2.6.2 + ldb_mod_register_control@LDB_0.9.10 0.9.21 + ldb_modify@LDB_0.9.10 0.9.21 + ldb_modify_default_callback@LDB_0.9.12 0.9.21 + ldb_module_call_chain@LDB_0.9.19 0.9.21 + ldb_module_connect_backend@LDB_0.9.19 0.9.21 + ldb_module_done@LDB_0.9.10 0.9.21 + ldb_module_flags@LDB_0.9.19 0.9.21 + ldb_module_get_ctx@LDB_0.9.10 0.9.21 + ldb_module_get_name@LDB_0.9.10 0.9.21 + ldb_module_get_ops@LDB_0.9.10 0.9.21 + ldb_module_get_private@LDB_0.9.10 0.9.21 + ldb_module_init_chain@LDB_0.9.19 0.9.21 + ldb_module_load_list@LDB_0.9.19 0.9.21 + ldb_module_new@LDB_0.9.10 0.9.21 + ldb_module_next@LDB_0.9.19 0.9.21 + ldb_module_popt_options@LDB_0.9.19 0.9.21 + ldb_module_send_entry@LDB_0.9.10 0.9.21 + ldb_module_send_referral@LDB_0.9.10 0.9.21 + ldb_module_set_next@LDB_0.9.19 0.9.21 + ldb_module_set_private@LDB_0.9.10 0.9.21 + ldb_modules_hook@LDB_0.9.18 0.9.21 + ldb_modules_list_from_string@LDB_0.9.10 0.9.21 + ldb_modules_load@LDB_0.9.18 0.9.21 + ldb_msg_add@LDB_0.9.10 0.9.21 + ldb_msg_add_distinguished_name@LDB_2.6.2 2:2.6.2 + ldb_msg_add_empty@LDB_0.9.10 0.9.21 + ldb_msg_add_fmt@LDB_0.9.10 0.9.21 + ldb_msg_add_linearized_dn@LDB_0.9.10 0.9.21 + ldb_msg_add_steal_string@LDB_0.9.10 0.9.21 + ldb_msg_add_steal_value@LDB_0.9.10 0.9.21 + ldb_msg_add_string@LDB_0.9.10 0.9.21 + ldb_msg_add_string_flags@LDB_2.6.1 2:2.6.1 + ldb_msg_add_value@LDB_0.9.10 0.9.21 + ldb_msg_append_fmt@LDB_2.6.1 2:2.6.1 + ldb_msg_append_linearized_dn@LDB_2.6.1 2:2.6.1 + ldb_msg_append_steal_string@LDB_2.6.1 2:2.6.1 + ldb_msg_append_steal_value@LDB_2.6.1 2:2.6.1 + ldb_msg_append_string@LDB_2.6.1 2:2.6.1 + ldb_msg_append_value@LDB_2.6.1 2:2.6.1 + ldb_msg_canonicalize@LDB_0.9.10 0.9.21 + ldb_msg_check_string_attribute@LDB_0.9.10 0.9.21 + ldb_msg_copy@LDB_0.9.10 0.9.21 + ldb_msg_copy_attr@LDB_0.9.10 0.9.21 + ldb_msg_copy_shallow@LDB_0.9.10 0.9.21 + ldb_msg_diff@LDB_0.9.10 0.9.21 + ldb_msg_difference@LDB_0.9.15 0.9.21 + ldb_msg_element_add_value@LDB_2.6.1 2:2.6.1 + ldb_msg_element_compare@LDB_0.9.10 0.9.21 + ldb_msg_element_compare_name@LDB_0.9.10 0.9.21 + ldb_msg_element_equal_ordered@LDB_1.1.6 1:1.1.6 + ldb_msg_element_is_inaccessible@LDB_2.6.2 2:2.6.2 + ldb_msg_element_mark_inaccessible@LDB_2.6.2 2:2.6.2 + ldb_msg_elements_take_ownership@LDB_2.6.2 2:2.6.2 + ldb_msg_find_attr_as_bool@LDB_0.9.10 0.9.21 + ldb_msg_find_attr_as_dn@LDB_0.9.10 0.9.21 + ldb_msg_find_attr_as_double@LDB_0.9.10 0.9.21 + ldb_msg_find_attr_as_int64@LDB_0.9.10 0.9.21 + ldb_msg_find_attr_as_int@LDB_0.9.10 0.9.21 + ldb_msg_find_attr_as_string@LDB_0.9.10 0.9.21 + ldb_msg_find_attr_as_uint64@LDB_0.9.10 0.9.21 + ldb_msg_find_attr_as_uint@LDB_0.9.10 0.9.21 + ldb_msg_find_common_values@LDB_1.1.31 2:1.2.2 + ldb_msg_find_duplicate_val@LDB_1.1.31 2:1.2.2 + ldb_msg_find_element@LDB_0.9.10 0.9.21 + ldb_msg_find_ldb_val@LDB_0.9.10 0.9.21 + ldb_msg_find_val@LDB_0.9.10 0.9.21 + ldb_msg_new@LDB_0.9.10 0.9.21 + ldb_msg_normalize@LDB_0.9.15 0.9.21 + ldb_msg_remove_attr@LDB_0.9.10 0.9.21 + ldb_msg_remove_element@LDB_0.9.10 0.9.21 + ldb_msg_remove_inaccessible@LDB_2.6.2 2:2.6.2 + ldb_msg_rename_attr@LDB_0.9.10 0.9.21 + ldb_msg_sanity_check@LDB_0.9.10 0.9.21 + ldb_msg_shrink_to_fit@LDB_2.6.2 2:2.6.2 + ldb_msg_sort_elements@LDB_0.9.10 0.9.21 + ldb_next_del_trans@LDB_0.9.10 0.9.21 + ldb_next_end_trans@LDB_0.9.10 0.9.21 + ldb_next_init@LDB_0.9.10 0.9.21 + ldb_next_prepare_commit@LDB_0.9.10 0.9.21 + ldb_next_read_lock@LDB_1.2.0 2:1.2.2 + ldb_next_read_unlock@LDB_1.2.0 2:1.2.2 + ldb_next_remote_request@LDB_0.9.10 0.9.21 + ldb_next_request@LDB_0.9.10 0.9.21 + ldb_next_start_trans@LDB_0.9.10 0.9.21 + ldb_op_default_callback@LDB_0.9.10 0.9.21 + ldb_options_copy@LDB_2.0.4 2:2.0.4 + ldb_options_find@LDB_0.9.17 0.9.21 + ldb_options_get@LDB_2.0.5 2:2.0.5 + ldb_pack_data@LDB_1.1.14 1:2.0.2 + ldb_parse_control_from_string@LDB_1.0.2 1.0.2~git20110403 + ldb_parse_control_strings@LDB_0.9.10 0.9.21 + ldb_parse_tree@LDB_0.9.10 0.9.21 + ldb_parse_tree_attr_replace@LDB_0.9.10 0.9.21 + ldb_parse_tree_copy_shallow@LDB_0.9.10 0.9.21 + ldb_parse_tree_get_attr@LDB_2.6.2 2:2.6.2 + ldb_parse_tree_walk@LDB_1.1.2 1.1.2~ + ldb_qsort@LDB_0.9.10 0.9.21 + ldb_register_backend@LDB_0.9.10 0.9.21 + ldb_register_extended_match_rule@LDB_1.1.19 1:1.1.20 + ldb_register_hook@LDB_0.9.18 0.9.21 + ldb_register_module@LDB_0.9.10 0.9.21 + ldb_register_redact_callback@LDB_2.6.2 2:2.6.2 + ldb_rename@LDB_0.9.10 0.9.21 + ldb_reply_add_control@LDB_0.9.10 0.9.21 + ldb_reply_get_control@LDB_0.9.10 0.9.21 + ldb_req_get_custom_flags@LDB_1.1.0 1.1.0 + ldb_req_is_untrusted@LDB_0.9.16 0.9.21 + ldb_req_location@LDB_0.9.15 0.9.21 + ldb_req_mark_trusted@LDB_0.9.24 0.9.24 + ldb_req_mark_untrusted@LDB_0.9.16 0.9.21 + ldb_req_set_custom_flags@LDB_1.1.0 1.1.0 + ldb_req_set_location@LDB_0.9.15 0.9.21 + ldb_request@LDB_0.9.10 0.9.21 + ldb_request_add_control@LDB_0.9.10 0.9.21 + ldb_request_done@LDB_0.9.10 0.9.21 + ldb_request_get_control@LDB_0.9.10 0.9.21 + ldb_request_get_status@LDB_0.9.10 0.9.21 + ldb_request_replace_control@LDB_0.9.15 0.9.21 + ldb_request_set_state@LDB_0.9.10 0.9.21 + ldb_reset_err_string@LDB_0.9.10 0.9.21 + ldb_schema_attribute_add@LDB_0.9.10 0.9.21 + ldb_schema_attribute_add_with_syntax@LDB_0.9.10 0.9.21 + ldb_schema_attribute_by_name@LDB_0.9.10 0.9.21 + ldb_schema_attribute_fill_with_syntax@LDB_1.1.29 2:1.1.29 + ldb_schema_attribute_remove@LDB_0.9.10 0.9.21 + ldb_schema_attribute_remove_flagged@LDB_1.1.29 2:1.1.29 + ldb_schema_attribute_set_override_handler@LDB_0.9.10 0.9.21 + ldb_schema_set_override_indexlist@LDB_1.1.30 2:1.2.2 + ldb_schema_set_override_GUID_index@LDB_1.3.0 2:1.3.0 + ldb_search@LDB_0.9.10 0.9.21 + ldb_search_default_callback@LDB_0.9.10 0.9.21 + ldb_sequence_number@LDB_0.9.10 0.9.21 + ldb_set_create_perms@LDB_0.9.10 0.9.21 + ldb_set_debug@LDB_0.9.10 0.9.21 + ldb_set_debug_stderr@LDB_0.9.10 0.9.21 + ldb_set_default_dns@LDB_0.9.10 0.9.21 + ldb_set_errstring@LDB_0.9.10 0.9.21 + ldb_set_event_context@LDB_0.9.10 0.9.21 + ldb_set_flags@LDB_0.9.10 0.9.21 + ldb_set_modules_dir@LDB_0.9.10 0.9.21 + ldb_set_opaque@LDB_0.9.10 0.9.21 + ldb_set_require_private_event_context@LDB_1.1.30 2:1.2.2 + ldb_set_timeout@LDB_0.9.10 0.9.21 + ldb_set_timeout_from_prev_req@LDB_0.9.10 0.9.21 + ldb_set_utf8_default@LDB_0.9.10 0.9.21 + ldb_set_utf8_fns@LDB_0.9.10 0.9.21 + ldb_setup_wellknown_attributes@LDB_0.9.10 0.9.21 + ldb_should_b64_encode@LDB_0.9.10 0.9.21 + ldb_standard_syntax_by_name@LDB_0.9.10 0.9.21 + ldb_strerror@LDB_0.9.10 0.9.21 + ldb_string_to_time@LDB_0.9.10 0.9.21 + ldb_string_utc_to_time@LDB_0.9.10 0.9.21 + ldb_timestring@LDB_0.9.10 0.9.21 + ldb_timestring_utc@LDB_0.9.10 0.9.21 + ldb_transaction_cancel@LDB_0.9.10 0.9.21 + ldb_transaction_cancel_noerr@LDB_0.9.10 0.9.21 + ldb_transaction_commit@LDB_0.9.10 0.9.21 + ldb_transaction_prepare_commit@LDB_0.9.10 0.9.21 + ldb_transaction_start@LDB_0.9.10 0.9.21 + ldb_unpack_data@LDB_1.1.14 1:1.1.15 + ldb_unpack_data_flags@LDB_2.0.1 2:2.0.1 + ldb_unpack_get_format@LDB_2.0.2 2:2.0.2 + ldb_val_dup@LDB_0.9.10 0.9.21 + ldb_val_equal_exact@LDB_0.9.10 0.9.21 + ldb_val_map_local@LDB_0.9.10 0.9.21 + ldb_val_map_remote@LDB_0.9.10 0.9.21 + ldb_val_string_cmp@LDB_1.1.1 1.1.1~ + ldb_val_to_time@LDB_0.9.10 0.9.21 + ldb_valid_attr_name@LDB_0.9.10 0.9.21 + ldb_vdebug@LDB_1.1.10 1.1.12 + ldb_wait@LDB_0.9.10 0.9.21 + ldb_save_controls@LDB_0.9.22 0.9.22 diff --git a/debian/libnss-winbind.install b/debian/libnss-winbind.install new file mode 100644 index 0000000..74e7dc7 --- /dev/null +++ b/debian/libnss-winbind.install @@ -0,0 +1,2 @@ +lib/*/libnss_winbind.so.2 +lib/*/libnss_wins.so.2 diff --git a/debian/libnss-winbind.postinst b/debian/libnss-winbind.postinst new file mode 100644 index 0000000..2f751f2 --- /dev/null +++ b/debian/libnss-winbind.postinst @@ -0,0 +1,22 @@ +#!/bin/sh + +set -e + +# Try to add the nss entry to the "passwd" and "group" lines in +# /etc/nsswitch.conf to automatically enable libnss-winbind support; +# do not change the configuration if the lines already contain "winbind" +# Only add winbind, not wins, since the latter is of little use in 2022+ + +if [ "$1" = configure ] && [ -z "$2" ]; then + echo "First installation detected, adding winbind to /etc/nsswitch.conf..." + if ! [ -e /etc/nsswitch.conf ]; then + echo "Could not find /etc/nsswitch.conf." + else + sed -r -i \ + -e '/^(passwd|group):.*[[:space:]]winbind\b/b' \ + -e 's/^(passwd|group):.*/& winbind/' \ + /etc/nsswitch.conf + fi +fi + +#DEBHELPER# diff --git a/debian/libnss-winbind.postrm b/debian/libnss-winbind.postrm new file mode 100644 index 0000000..cd1c7e3 --- /dev/null +++ b/debian/libnss-winbind.postrm @@ -0,0 +1,29 @@ +#!/bin/sh + +set -e + +remove_nss_entry() { + local file=$1 + local pkg=$2 + local module=$3 + refcount=$(dpkg-query -f '${db:Status-Abbrev} ${binary:Package}\n' \ + -W $pkg | grep '^i' | wc -l) + if [ "$refcount" -gt 0 ] ; then + # package is installed for other architectures still, do nothing + return + fi + # abort if file does not exist + if ! [ -e $file ]; then + echo "Could not find ${file}." + return + fi + echo "Removing $module from $file if any..." + # we must remove possible [foo=bar] options as well + sed -i -r "/(passwd|group):/ s/[[:space:]]+$module\b([[:space:]]*\[[^]]*\])*//" $file +} + +if [ "$1" = remove ]; then + remove_nss_entry /etc/nsswitch.conf libnss-winbind winbind +fi + +#DEBHELPER# diff --git a/debian/libnss-winbind.triggers b/debian/libnss-winbind.triggers new file mode 100644 index 0000000..dd86603 --- /dev/null +++ b/debian/libnss-winbind.triggers @@ -0,0 +1 @@ +activate-noawait ldconfig diff --git a/debian/libpam-winbind.NEWS b/debian/libpam-winbind.NEWS new file mode 100644 index 0000000..1bc7c1c --- /dev/null +++ b/debian/libpam-winbind.NEWS @@ -0,0 +1,11 @@ +samba (2:3.6.5-2) unstable; urgency=low + + NSS modules have been split out from libpam-winbind to + libnss-winbind. + + If Recommends: installs are disabled on your system you may need + to manually install the libnss-winbind package after upgrading + from former versions of winbind (for instance from squeeze) or + from former versions of libpam-winbind. + + -- Christian Perrier <bubulle@debian.org> Mon, 07 May 2012 22:16:32 +0200 diff --git a/debian/libpam-winbind.examples b/debian/libpam-winbind.examples new file mode 100644 index 0000000..8fe89ad --- /dev/null +++ b/debian/libpam-winbind.examples @@ -0,0 +1 @@ +examples/pam_winbind diff --git a/debian/libpam-winbind.install b/debian/libpam-winbind.install new file mode 100644 index 0000000..a8aa8df --- /dev/null +++ b/debian/libpam-winbind.install @@ -0,0 +1,4 @@ +lib/*/security/pam_winbind.so +usr/share/man/man5/pam_winbind.conf.5 +usr/share/man/man8/pam_winbind.8 +usr/share/pam-configs/winbind diff --git a/debian/libpam-winbind.lintian-overrides b/debian/libpam-winbind.lintian-overrides new file mode 100644 index 0000000..092a74f --- /dev/null +++ b/debian/libpam-winbind.lintian-overrides @@ -0,0 +1 @@ +libpam-winbind: spare-manual-page */man/man8/pam_winbind.8* diff --git a/debian/libpam-winbind.postinst b/debian/libpam-winbind.postinst new file mode 100644 index 0000000..7e37590 --- /dev/null +++ b/debian/libpam-winbind.postinst @@ -0,0 +1,7 @@ +#!/bin/sh + +set -e + +pam-auth-update --package + +#DEBHELPER# diff --git a/debian/libpam-winbind.prerm b/debian/libpam-winbind.prerm new file mode 100644 index 0000000..ad655ca --- /dev/null +++ b/debian/libpam-winbind.prerm @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +if [ "$1" = remove ] && [ "${DPKG_MAINTSCRIPT_PACKAGE_REFCOUNT:-1}" = 1 ]; then + pam-auth-update --package --remove winbind +fi + +#DEBHELPER# diff --git a/debian/libsmbclient-dev.examples b/debian/libsmbclient-dev.examples new file mode 100644 index 0000000..1993979 --- /dev/null +++ b/debian/libsmbclient-dev.examples @@ -0,0 +1 @@ +examples/libsmbclient/* diff --git a/debian/libsmbclient-dev.install b/debian/libsmbclient-dev.install new file mode 100644 index 0000000..e13d6dc --- /dev/null +++ b/debian/libsmbclient-dev.install @@ -0,0 +1,3 @@ +usr/include/samba-4.0/libsmbclient.h +usr/lib/*/libsmbclient.so +usr/lib/*/pkgconfig/smbclient.pc diff --git a/debian/libsmbclient.install b/debian/libsmbclient.install new file mode 100644 index 0000000..1f92ece --- /dev/null +++ b/debian/libsmbclient.install @@ -0,0 +1,2 @@ +usr/lib/*/libsmbclient.so.0* +usr/share/man/man7/libsmbclient.7 diff --git a/debian/libsmbclient.lintian-overrides b/debian/libsmbclient.lintian-overrides new file mode 100644 index 0000000..19d73ff --- /dev/null +++ b/debian/libsmbclient.lintian-overrides @@ -0,0 +1,3 @@ +# changing a library package name needlessly is always worse than having a +# name that doesn't match the soname. +libsmbclient: package-name-doesnt-match-sonames libsmbclient0 diff --git a/debian/libsmbclient.symbols b/debian/libsmbclient.symbols new file mode 100644 index 0000000..4508e41 --- /dev/null +++ b/debian/libsmbclient.symbols @@ -0,0 +1,203 @@ +libsmbclient.so.0 libsmbclient #MINVER# +* Build-Depends-Package: libsmbclient-dev + SMBCLIENT_0.1.0@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + SMBCLIENT_0.2.0@SMBCLIENT_0.2.0 2:4.0.3+dfsg1 + SMBCLIENT_0.2.1@SMBCLIENT_0.2.1 2:4.1.1 + SMBCLIENT_0.2.2@SMBCLIENT_0.2.2 2:4.3.0+dfsg + SMBCLIENT_0.2.3@SMBCLIENT_0.2.3 2:4.3.0+dfsg + SMBCLIENT_0.3.0@SMBCLIENT_0.3.0 2:4.8.0+dfsg + SMBCLIENT_0.3.1@SMBCLIENT_0.3.1 2:4.8.0+dfsg + SMBCLIENT_0.3.2@SMBCLIENT_0.3.2 2:4.9.0+dfsg + SMBCLIENT_0.3.3@SMBCLIENT_0.3.3 2:4.9.0+dfsg + SMBCLIENT_0.4.0@SMBCLIENT_0.4.0 2:4.9.0+dfsg + SMBCLIENT_0.5.0@SMBCLIENT_0.5.0 2:4.10.0+dfsg + SMBCLIENT_0.6.0@SMBCLIENT_0.6.0 2:4.12.0+dfsg + SMBCLIENT_0.7.0@SMBCLIENT_0.7.0 2:4.16.0+dfsg + smbc_chmod@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_close@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_closedir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_creat@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_fgetxattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_flistxattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_free_context@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_fremovexattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_fsetxattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_fstat@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_fstatvfs@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_ftruncate@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getDebug@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionAddCachedServer@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionAuthData@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionAuthDataWithContext@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionCheckServer@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionChmod@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionClose@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionClosedir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionCreat@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionFstat@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionFstatVFS@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionFstatdir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionFtruncate@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionGetCachedServer@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionGetdents@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionGetxattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionListPrintJobs@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionListxattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionLseek@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionLseekdir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionMkdir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionNotify@SMBCLIENT_0.2.3 2:4.3.0+dfsg + smbc_getFunctionOpen@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionOpenPrintJob@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionOpendir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionPrintFile@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionPurgeCachedServers@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionRead@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionReaddir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionReaddirPlus2@SMBCLIENT_0.6.0 2:4.12.0+dfsg + smbc_getFunctionReaddirPlus@SMBCLIENT_0.3.3 2:4.9.0+dfsg + smbc_getFunctionRemoveCachedServer@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionRemoveUnusedServer@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionRemovexattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionRename@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionRmdir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionSetxattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionSplice@SMBCLIENT_0.2.2 2:4.3.0+dfsg + smbc_getFunctionStat@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionStatVFS@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionTelldir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionUnlink@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionUnlinkPrintJob@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionUtimes@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getFunctionWrite@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getNetbiosName@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getOptionBrowseMaxLmbCount@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getOptionCaseSensitive@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getOptionDebugToStderr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getOptionFallbackAfterKerberos@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getOptionFullTimeNames@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getOptionNoAutoAnonymousLogin@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getOptionOneSharePerServer@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getOptionOpenShareMode@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getOptionSmbEncryptionLevel@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getOptionUrlEncodeReaddirEntries@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getOptionUseCCache@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getOptionUseKerberos@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getOptionUseNTHash@SMBCLIENT_0.2.0 2:4.0.3+dfsg1 + smbc_getOptionUserData@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getPort@SMBCLIENT_0.1.0 2:4.1.1 + smbc_getServerCacheData@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getTimeout@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getUser@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getWorkgroup@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getdents@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_getxattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_init@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_init_context@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_lgetxattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_list_print_jobs@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_listxattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_llistxattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_lremovexattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_lseek@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_lseekdir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_lsetxattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_mkdir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_new_context@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_notify@SMBCLIENT_0.2.3 2:4.3.0+dfsg + smbc_open@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_open_print_job@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_opendir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_option_get@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_option_set@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_print_file@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_read@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_readdir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_readdirplus2@SMBCLIENT_0.6.0 2:4.12.0+dfsg + smbc_readdirplus@SMBCLIENT_0.3.3 2:4.9.0+dfsg + smbc_removexattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_rename@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_rmdir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setConfiguration@SMBCLIENT_0.3.2 2:4.9.0+dfsg + smbc_setDebug@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionAddCachedServer@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionAuthData@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionAuthDataWithContext@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionCheckServer@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionChmod@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionClose@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionClosedir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionCreat@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionFstat@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionFstatVFS@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionFstatdir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionFtruncate@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionGetCachedServer@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionGetdents@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionGetxattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionListPrintJobs@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionListxattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionLseek@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionLseekdir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionMkdir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionNotify@SMBCLIENT_0.2.3 2:4.3.0+dfsg + smbc_setFunctionOpen@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionOpenPrintJob@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionOpendir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionPrintFile@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionPurgeCachedServers@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionRead@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionReaddir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionReaddirPlus2@SMBCLIENT_0.6.0 2:4.12.0+dfsg + smbc_setFunctionReaddirPlus@SMBCLIENT_0.3.3 2:4.9.0+dfsg + smbc_setFunctionRemoveCachedServer@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionRemoveUnusedServer@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionRemovexattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionRename@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionRmdir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionSetxattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionSplice@SMBCLIENT_0.2.2 2:4.3.0+dfsg + smbc_setFunctionStat@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionStatVFS@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionTelldir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionUnlink@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionUnlinkPrintJob@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionUtimes@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setFunctionWrite@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setLogCallback@SMBCLIENT_0.3.1 2:4.8.0+dfsg + smbc_setNetbiosName@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setOptionBrowseMaxLmbCount@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setOptionCaseSensitive@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setOptionDebugToStderr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setOptionFallbackAfterKerberos@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setOptionFullTimeNames@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setOptionNoAutoAnonymousLogin@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setOptionOneSharePerServer@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setOptionOpenShareMode@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setOptionProtocols@SMBCLIENT_0.5.0 2:4.10.0+dfsg + smbc_setOptionSmbEncryptionLevel@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setOptionUrlEncodeReaddirEntries@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setOptionUseCCache@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setOptionUseKerberos@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setOptionUseNTHash@SMBCLIENT_0.2.0 2:4.0.3+dfsg1 + smbc_setOptionUserData@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setPort@SMBCLIENT_0.1.0 2:4.1.1 + smbc_setServerCacheData@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setTimeout@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setUser@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setWorkgroup@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_set_context@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_set_credentials@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_set_credentials_with_fallback@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_setxattr@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_stat@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_statvfs@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_telldir@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_unlink@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_unlink_print_job@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_urldecode@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_urlencode@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_utime@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_utimes@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_version@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 + smbc_write@SMBCLIENT_0.1.0 2:4.0.3+dfsg1 diff --git a/debian/libwbclient-dev.install b/debian/libwbclient-dev.install new file mode 100644 index 0000000..cab0e5e --- /dev/null +++ b/debian/libwbclient-dev.install @@ -0,0 +1,4 @@ +usr/include/samba-4.0/wbclient.h +usr/lib/*/libwbclient.so +usr/lib/*/pkgconfig/samba-util.pc +usr/lib/*/pkgconfig/wbclient.pc diff --git a/debian/libwbclient0.install b/debian/libwbclient0.install new file mode 100644 index 0000000..afd2d64 --- /dev/null +++ b/debian/libwbclient0.install @@ -0,0 +1 @@ +usr/lib/*/libwbclient.so.0* diff --git a/debian/libwbclient0.symbols b/debian/libwbclient0.symbols new file mode 100644 index 0000000..b6798e3 --- /dev/null +++ b/debian/libwbclient0.symbols @@ -0,0 +1,142 @@ +libwbclient.so.0 libwbclient0 #MINVER# +* Build-Depends-Package: libwbclient-dev + WBCLIENT_0.9@WBCLIENT_0.9 2:4.0.3+dfsg1 + WBCLIENT_0.10@WBCLIENT_0.10 2:4.0.3+dfsg1 + WBCLIENT_0.11@WBCLIENT_0.11 2:4.0.3+dfsg1 + WBCLIENT_0.12@WBCLIENT_0.12 2:4.2.1+dfsg + WBCLIENT_0.13@WBCLIENT_0.13 2:4.5.0+dfsg + WBCLIENT_0.14@WBCLIENT_0.14 2:4.7.0+dfsg + WBCLIENT_0.15@WBCLIENT_0.15 2:4.10.0+dfsg + wbcAddNamedBlob@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcAllocateGid@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcAllocateMemory@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcAllocateStringArray@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcAllocateUid@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcAuthenticateUser@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcAuthenticateUserEx@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcChangeTrustCredentials@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcChangeUserPassword@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcChangeUserPasswordEx@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcCheckTrustCredentials@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcCredentialCache@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcCredentialSave@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcCtxAllocateGid@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxAllocateUid@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxAuthenticateUser@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxAuthenticateUserEx@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxChangeTrustCredentials@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxChangeUserPassword@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxChangeUserPasswordEx@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxCheckTrustCredentials@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxCreate@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxCredentialCache@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxCredentialSave@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxDcInfo@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxDomainInfo@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxEndgrent@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxEndpwent@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxFree@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxGetDisplayName@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxGetGroups@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxGetSidAliases@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxGetgrent@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxGetgrgid@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxGetgrlist@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxGetgrnam@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxGetpwent@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxGetpwnam@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxGetpwsid@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxGetpwuid@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxGidToSid@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxInterfaceDetails@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxListGroups@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxListTrusts@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxListUsers@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxLogoffUser@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxLogoffUserEx@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxLogonUser@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxLookupDomainController@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxLookupDomainControllerEx@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxLookupName@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxLookupRids@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxLookupSid@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxLookupSids@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxLookupUserSids@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxPing@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxPingDc2@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxPingDc@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxResolveWinsByIP@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxResolveWinsByName@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxSetgrent@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxSetpwent@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxSidToGid@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxSidToUid@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxSidsToUnixIds@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxUidToSid@WBCLIENT_0.12 2:4.2.1+dfsg + wbcCtxUnixIdsToSids@WBCLIENT_0.13 2:4.5.0+dfsg + wbcDcInfo@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcDomainInfo@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcEndgrent@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcEndpwent@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcErrorString@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcFreeMemory@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcGetDisplayName@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcGetGlobalCtx@WBCLIENT_0.12 2:4.2.1+dfsg + wbcGetGroups@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcGetSidAliases@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcGetgrent@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcGetgrgid@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcGetgrlist@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcGetgrnam@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcGetpwent@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcGetpwnam@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcGetpwsid@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcGetpwuid@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcGidToSid@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcGuidToString@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcInterfaceDetails@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcLibraryDetails@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcListGroups@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcListTrusts@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcListUsers@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcLogoffUser@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcLogoffUserEx@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcLogonUser@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcLookupDomainController@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcLookupDomainControllerEx@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcLookupName@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcLookupRids@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcLookupSid@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcLookupSids@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcLookupUserSids@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcPing@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcPingDc2@WBCLIENT_0.10 2:4.0.3+dfsg1 + wbcPingDc@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcQueryGidToSid@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcQuerySidToGid@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcQuerySidToUid@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcQueryUidToSid@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcRemoveGidMapping@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcRemoveUidMapping@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcRequestResponse@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcRequestResponsePriv@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcResolveWinsByIP@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcResolveWinsByName@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcSetClientProcessName@WBCLIENT_0.15 2:4.10.0+dfsg + wbcSetGidHwm@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcSetGidMapping@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcSetUidHwm@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcSetUidMapping@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcSetgrent@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcSetpwent@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcSidToGid@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcSidToString@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcSidToStringBuf@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcSidToUid@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcSidTypeString@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcSidsToUnixIds@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcStrDup@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcStringToGuid@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcStringToSid@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcUidToSid@WBCLIENT_0.9 2:4.0.3+dfsg1 + wbcUnixIdsToSids@WBCLIENT_0.13 2:4.5.0+dfsg diff --git a/debian/not-installed b/debian/not-installed new file mode 100644 index 0000000..8d27f47 --- /dev/null +++ b/debian/not-installed @@ -0,0 +1,4 @@ +etc/sysconfig/samba +usr/share/man/man7/traffic_replay.7 +usr/share/man/man7/traffic_learner.7 +usr/share/samba/setup diff --git a/debian/panic-action b/debian/panic-action new file mode 100644 index 0000000..7b73024 --- /dev/null +++ b/debian/panic-action @@ -0,0 +1,63 @@ +#!/bin/sh + +# bail out if there's no "mail" command +type mail >/dev/null 2>&1 || exit 0 + +# Redirect all output to our mail command +( + # We must be given a pid to look at + if [ -z "$1" ]; then + echo "$0 called with no arguments." + exit 1 + fi + + if [ ! -d "/proc/$1" ]; then + echo "$0: No such process: $1" + exit 1 + fi + + # Find out what binary we're debugging + BINARYNAME=`readlink "/proc/$1/exe"` + + # Generic header for our email + echo "The Samba 'panic action' script, $0," + echo "was called for PID $1 ($BINARYNAME)." + echo + + echo "This means there was a problem with the program, such as a segfault." + + if [ -z "$BINARYNAME" ]; then + echo "However, the executable could not be found for process $1." + echo "It may have died unexpectedly, or you may not have permission to debug" + echo "the process." + exit 1 + fi + + # No debugger + if [ ! -x /usr/bin/gdb ]; then + echo "However, gdb was not found on your system, so the error could not be" + echo "debugged. Please install the gdb package so that debugging information" + echo "is available the next time such a problem occurs." + exit 1 + fi + + echo "Below is a backtrace for this process generated with gdb, which shows" + echo "the state of the program at the time the error occurred. The Samba log" + echo "files may contain additional information about the problem." + echo + echo "If the problem persists, you are encouraged to first install the" + echo "samba-dbgsym package, which contains the debugging symbols for the Samba" + echo "binaries. Then submit the provided information as a bug report to" + if [ -x "`which lsb_release 2>/dev/null`" ] \ + && [ "`lsb_release -s -i`" = "Ubuntu" ] + then + echo "Ubuntu by visiting this link:" + echo "https://launchpad.net/ubuntu/+source/samba/+filebug" + else + echo "Debian. For information about the procedure for submitting bug reports," + echo "please see http://www.debian.org/Bugs/Reporting or the reportbug(1)" + echo "manual page." + fi + echo + gdb -x /etc/samba/gdbcommands -batch "$BINARYNAME" "$1" +) | mail -s "Panic or segfault in Samba" root diff --git a/debian/patches/Force-LDB-as-standalone.patch b/debian/patches/Force-LDB-as-standalone.patch new file mode 100644 index 0000000..9be14c0 --- /dev/null +++ b/debian/patches/Force-LDB-as-standalone.patch @@ -0,0 +1,25 @@ +From 052023a67ca022b8bf323574c540964cf656f0b2 Mon Sep 17 00:00:00 2001 +From: Mathieu Parent <math.parent@gmail.com> +Date: Sun, 19 Dec 2021 22:29:13 +0100 +Subject: [PATCH] Force LDB as standalone + +--- + lib/ldb/wscript | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/lib/ldb/wscript b/lib/ldb/wscript +index 57dfdd6fe6b..70a982da352 100644 +--- a/lib/ldb/wscript ++++ b/lib/ldb/wscript +@@ -68,7 +68,7 @@ def configure(conf): + # + conf.CONFIG_PATH('LDB_MODULESDIR', conf.SUBST_ENV_VAR('MODULESDIR') + '/ldb') + +- conf.env.standalone_ldb = conf.IN_LAUNCH_DIR() ++ conf.env.standalone_ldb = conf.IN_LAUNCH_DIR() or True + + if not conf.env.standalone_ldb: + max_ldb_version = [int(x) for x in VERSION.split(".")] +-- +2.30.2 + diff --git a/debian/patches/README_nosmbldap-tools.patch b/debian/patches/README_nosmbldap-tools.patch new file mode 100644 index 0000000..c8748c7 --- /dev/null +++ b/debian/patches/README_nosmbldap-tools.patch @@ -0,0 +1,23 @@ +From: Christian Perrier <bubulle@debian.org> +Subject: Mention smbldap-tools package in examples/LDAP/README + +Bug-Debian: http://bugs.debian.org/341934 +Forwarded: not-needed +--- + examples/LDAP/README | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/examples/LDAP/README b/examples/LDAP/README +index f6ce3a9..a918acf 100644 +--- a/examples/LDAP/README ++++ b/examples/LDAP/README +@@ -69,6 +69,9 @@ in Samba releases. + The smbldap-tools package can be downloaded individually from + https://gna.org/projects/smbldap-tools/ + ++On Debian systems, the smbldap-tools exists as a separate package ++and is not included in LDAP examples. ++ + !== + !== end of README + !== diff --git a/debian/patches/add-missing-libs-deps.diff b/debian/patches/add-missing-libs-deps.diff new file mode 100644 index 0000000..9db8e78 --- /dev/null +++ b/debian/patches/add-missing-libs-deps.diff @@ -0,0 +1,49 @@ +From: Michael Tokarev <mjt@tls.msk.ru> +Date: Thu, 19 May 2022 20:37:21 +0300 +Subject: add missing libs deps +Bug-Debian: https://bugs.debian.org/1010922 + +Lots of samba libraries has incomplete dependencies listed +in wscript files. This usually is not a problem since the +link line includes dependencies of their dependencies of +their dependencies, and somewhere down that line all immediate +dependencies which are missing are actually present. But +sometimes this becomes a problem when a library does not +declare direct dependency on at least one private library +which it actually uses: in case no private library is +listed as direct dependency, private library directory is +not put into RUNPATH of the resulting binary, so the binary +can not find its own dependencies. + +Fix a few such places, including one library which is a part +of public abi (libsmbldap). + +diff --git a/lib/util/wscript_build b/lib/util/wscript_build +index 2f31e8fa5b1..08a77b8940c 100644 +--- a/lib/util/wscript_build ++++ b/lib/util/wscript_build +@@ -218,5 +218,5 @@ else: + bld.SAMBA_LIBRARY('samba-modules', + source='modules.c', +- deps='samba-errors samba-util', ++ deps='samba-errors samba-util samba-debug', + local_include=False, + private_library=True) +diff --git a/source3/wscript_build b/source3/wscript_build +index acfc0c56f03..e919f38d9cb 100644 +--- a/source3/wscript_build ++++ b/source3/wscript_build +@@ -189,5 +189,5 @@ bld.SAMBA3_LIBRARY('smbldaphelper', + passdb/pdb_ldap_util.c + ''', +- deps='smbldap secrets3', ++ deps='smbldap secrets3 replace', + allow_undefined_symbols=True, + enabled=bld.CONFIG_SET('HAVE_LDAP'), +@@ -483,5 +483,5 @@ bld.SAMBA3_LIBRARY('secrets3', + bld.SAMBA3_LIBRARY('smbldap', + source='lib/smbldap.c', +- deps='ldap lber samba-util smbconf', ++ deps='ldap lber samba-util smbconf replace samba-debug samba-security', + enabled=bld.CONFIG_SET("HAVE_LDAP"), + private_library=False, diff --git a/debian/patches/add-so-version-to-private-libraries b/debian/patches/add-so-version-to-private-libraries new file mode 100644 index 0000000..8313f1e --- /dev/null +++ b/debian/patches/add-so-version-to-private-libraries @@ -0,0 +1,22 @@ +From: Jeroen Dekkers <jeroen@dekkers.ch> +Subject: Add so version number to private libraries for dpkg-shlibdeps + +We also want dpkg-shlibdeps to generate correct dependency information +for the private libraries in our binary packages, but dpkg-shlibdeps +only works when the library has a version number. + +Origin: vendor +Forwarded: not-needed +--- + buildtools/wafsamba/wafsamba.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py +index 185ef3b73a2..291239fcaa7 100644 +--- a/buildtools/wafsamba/wafsamba.py ++++ b/buildtools/wafsamba/wafsamba.py +@@ -307,3 +307,3 @@ def SAMBA_LIBRARY(bld, libname, source, + bundled_name = PRIVATE_NAME(bld, libname.replace('_', '-')) +- vnum = None ++ vnum = '0' + diff --git a/debian/patches/ctdb-config-enable-syslog-by-default.patch b/debian/patches/ctdb-config-enable-syslog-by-default.patch new file mode 100644 index 0000000..3ab746d --- /dev/null +++ b/debian/patches/ctdb-config-enable-syslog-by-default.patch @@ -0,0 +1,42 @@ +ctdb-config: enable syslog by default + +CTDB uses /var/log/ctdb/ directory for the default log files. With +syslog disabled, systemd journal is not able to correctly inform +errors happening during service initialization. + +Upstream community creates generic config files to be used by different +distributions, so this change makes no big difference to be accepted by +upstream. + +With this patch the end user will be able to identify initialization +errors by executing: + + systemctl status ctdb.service + +or to follow ctdb logs by executing: + + journalctl -f -u ctdb + +Signed-off-by: Rafael David Tinoco <rafaeldtinoco@ubuntu.com> +- +Author: Rafael David Tinoco <rafaeldtinoco@ubuntu.com> +Bug-Debian: https://bugs.debian.org/929931 +Bug-Ubuntu: https://bugs.launchpad.net/bugs/722201 +Last-Update: 2022-03-24 +--- + ctdb/config/ctdb.conf | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/ctdb/config/ctdb.conf b/ctdb/config/ctdb.conf +index 8e1b3760973..def0803578f 100644 +--- a/ctdb/config/ctdb.conf ++++ b/ctdb/config/ctdb.conf +@@ -7,6 +7,6 @@ + # Enable logging to syslog +- # location = syslog ++ location = syslog + + # Default log level +- # log level = NOTICE ++ log level = NOTICE + diff --git a/debian/patches/ctdb-create-piddir.patch b/debian/patches/ctdb-create-piddir.patch new file mode 100644 index 0000000..708f787 --- /dev/null +++ b/debian/patches/ctdb-create-piddir.patch @@ -0,0 +1,26 @@ +From: Michael Tokarev <mjt@tls.msk.ru> +Date: Fri, 09 Sep 2022 12:49:55 +0300 +Subject: create ctdb pid directory + +(which is /run/ctdb/). Create it in the systemd service +file (using RuntimeDirectory directive) and in the sysv-init +script. + +diff --git a/ctdb/config/ctdb.init b/ctdb/config/ctdb.init +index 7fe8f0085ae..57fd0dda63d 100755 +--- a/ctdb/config/ctdb.init ++++ b/ctdb/config/ctdb.init +@@ -78,4 +78,5 @@ start() + ;; + debian) ++ mkdir -p -m0755 ${pidfile%/*} + eval start-stop-daemon --start --quiet --background --exec "$ctdbd" + ;; +diff --git a/packaging/systemd/ctdb.service.in b/packaging/systemd/ctdb.service.in +index 7905a93e242..eefc7468a44 100644 +--- a/packaging/systemd/ctdb.service.in ++++ b/packaging/systemd/ctdb.service.in +@@ -12,2 +12,3 @@ TasksMax=4096 + PIDFile=@CTDB_RUNDIR@/ctdbd.pid ++RuntimeDirectory=ctdb + ExecStart=@SBINDIR@/ctdbd diff --git a/debian/patches/ctdb-use-run-instead-of-var-run.patch b/debian/patches/ctdb-use-run-instead-of-var-run.patch new file mode 100644 index 0000000..946d6dc --- /dev/null +++ b/debian/patches/ctdb-use-run-instead-of-var-run.patch @@ -0,0 +1,26 @@ +From a4f5852f55439bcc1aaaa6762d230a28599298d2 Mon Sep 17 00:00:00 2001 +From: Michael Tokarev <mjt@tls.msk.ru> +Date: Fri, 2 Dec 2022 11:45:01 +0300 +Subject: ctdb: use /run/ctdb instead of /var/run/ctdb + +Whole upstream path assignment needs a review. +--- + ctdb/wscript | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/ctdb/wscript b/ctdb/wscript +index c082c3b7a7d..523984487a3 100644 +--- a/ctdb/wscript ++++ b/ctdb/wscript +@@ -288,7 +288,7 @@ def configure(conf): + conf.env.CTDB_DATADIR = os.path.join(conf.env.EXEC_PREFIX, 'share/ctdb') + conf.env.CTDB_ETCDIR = os.path.join(conf.env.SYSCONFDIR, 'ctdb') + conf.env.CTDB_VARDIR = os.path.join(conf.env.LOCALSTATEDIR, 'lib/ctdb') +- conf.env.CTDB_RUNDIR = os.path.join(conf.env.LOCALSTATEDIR, 'run/ctdb') ++ conf.env.CTDB_RUNDIR = '/run/ctdb' + conf.env.CTDB_HELPER_BINDIR = os.path.join(conf.env.LIBEXECDIR, 'ctdb') + + if Options.options.ctdb_logdir: +-- +2.30.2 + diff --git a/debian/patches/ctdb_etcd_lock-path.patch b/debian/patches/ctdb_etcd_lock-path.patch new file mode 100644 index 0000000..411b047 --- /dev/null +++ b/debian/patches/ctdb_etcd_lock-path.patch @@ -0,0 +1,20 @@ +Subject: fix pathname for ctdb_etcd_lock +From: Michael Tokarev <mjt@tls.msk.ru> +Date: Sat, 02 Apr 2022 17:49:38 +0300 + +Specify the actual installation path for this helper script. + +diff --git a/ctdb/doc/ctdb-etcd.7.xml b/ctdb/doc/ctdb-etcd.7.xml +index f84989f854f..fcb3d0c3b5f 100644 +--- a/ctdb/doc/ctdb-etcd.7.xml ++++ b/ctdb/doc/ctdb-etcd.7.xml +@@ -71 +71 @@ +-cluster lock = !/usr/local/usr/libexec/ctdb/ctdb_etcd_lock ++cluster lock = !/usr/libexec/ctdb/ctdb_etcd_lock +diff --git a/ctdb/utils/etcd/ctdb_etcd_lock b/ctdb/utils/etcd/ctdb_etcd_lock +index dac24361e77..e695ac7cab2 100755 +--- a/ctdb/utils/etcd/ctdb_etcd_lock ++++ b/ctdb/utils/etcd/ctdb_etcd_lock +@@ -26 +26 @@ the following line in the ctdb.conf: +- cluster lock = !/path/to/script ++ cluster lock = !/usr/libexec/ctdb/ctdb_etcd_lock diff --git a/debian/patches/disable-setuid-confchecks.patch b/debian/patches/disable-setuid-confchecks.patch new file mode 100644 index 0000000..68ad262 --- /dev/null +++ b/debian/patches/disable-setuid-confchecks.patch @@ -0,0 +1,25 @@ +From: Michael Tokarev <mjt@tls.msk.ru> +Date: Fri, 08 Apr 2022 11:50:21 +0300 +Subject: disable setuid configure checks + +For some strange reason, when running reprotest test on salsa-ci, +which apparently is running as root, - on the *second* build only +the configure fails (after successfully built package the first +time). The configure test tries to change gid and verifies it +actually changed (not that the syscall exist), - and that fails. +Since it is extremely uncommon to configure the build process as +root, salsa-ci test environment details are quite deep down the line, +and we know the syscall actually works, just disable the probe, +pretending we are not root. + +diff --git a/source3/lib/util_sec.c b/source3/lib/util_sec.c +index 30a29f535b1..451ad396965 100644 +--- a/source3/lib/util_sec.c ++++ b/source3/lib/util_sec.c +@@ -556,5 +556,5 @@ static int have_syscall(void) + int main(void) + { +- if (getuid() != 0) { ++ if (1 || getuid() != 0) { + #if (defined(AIX) && defined(USE_SETREUID)) + /* setreuid is badly broken on AIX 4.1, we avoid it completely */ diff --git a/debian/patches/fix-nfs-service-name-to-nfs-kernel-server.patch b/debian/patches/fix-nfs-service-name-to-nfs-kernel-server.patch new file mode 100644 index 0000000..ad0a9b9 --- /dev/null +++ b/debian/patches/fix-nfs-service-name-to-nfs-kernel-server.patch @@ -0,0 +1,96 @@ +From: Rafael David Tinoco <rafaeldtinoco@gmail.com> +Subject: fix nfs related service names + +Upstream defines nfs related service names based on the Linux +distribution. This patch fixes the names for Debian and derivatives. + +Update by Andreas Hasenack <andreas@canonical.com> (LP: #1961840): +Use nfsconf(8) if it's available, instead of parsing the old config +files in /etc/default/nfs-* + +Bug-Debian: https://bugs.debian.org/929931 +Bug-Ubuntu: https://bugs.launchpad.net/bugs/722201 +Last-Update: 2022-09-09 +diff --git a/ctdb/config/events/legacy/06.nfs.script b/ctdb/config/events/legacy/06.nfs.script +index b937d433254..943b5005bd9 100755 +--- a/ctdb/config/events/legacy/06.nfs.script ++++ b/ctdb/config/events/legacy/06.nfs.script +@@ -6,7 +6,7 @@ + + . "${CTDB_BASE}/functions" + +-service_name="nfs" ++service_name="nfs-kernel-server" + + load_script_options "service" "60.nfs" + +diff --git a/ctdb/config/events/legacy/60.nfs.script b/ctdb/config/events/legacy/60.nfs.script +index 8e496f73cc5..f47b91bff2d 100755 +--- a/ctdb/config/events/legacy/60.nfs.script ++++ b/ctdb/config/events/legacy/60.nfs.script +@@ -6,9 +6,11 @@ + + . "${CTDB_BASE}/functions" + +-service_name="nfs" ++service_name="nfs-kernel-server" + +-load_system_config "nfs" ++if ! type nfsconf > /dev/null 2>&1; then ++ load_system_config "nfs-kernel-server" ++fi + + load_script_options + +diff --git a/ctdb/config/nfs-linux-kernel-callout b/ctdb/config/nfs-linux-kernel-callout +index f2f3e3824d0..4e3b1e21c04 100755 +--- a/ctdb/config/nfs-linux-kernel-callout ++++ b/ctdb/config/nfs-linux-kernel-callout +@@ -14,7 +14,7 @@ nfs_exports_file="${CTDB_NFS_EXPORTS_FILE:-/var/lib/nfs/etab}" + + # As above, edit the default value below. CTDB_NFS_DISTRO_STYLE is a + # test variable only. +-nfs_distro_style="${CTDB_NFS_DISTRO_STYLE:-systemd-redhat}" ++nfs_distro_style="${CTDB_NFS_DISTRO_STYLE:-systemd-debian}" + + # As above, edit the default value below. CTDB_SYS_ETCDIR is a + # test variable only. +@@ -42,7 +42,22 @@ systemd-*) + : # Defaults only + ;; + *-debian) +- nfs_rquotad_service="quotarpc" ++ # XXX ++ # Undefine nfs_rquotad_services because the quotarpc service won't ++ # start unless there are specific "quota" mount options in /etc/fstab. ++ # In this way, we let ctdb start it up manually once the ++ # /etc/ctdb/nfs-checks.d/50.rquotad.check detects rpc.rquotad isn't ++ # running. ++ # Users who really don't want rpc.rquotad running should then move ++ # the 50.rquotad.check script away. ++ nfs_rquotad_service="" ++ nfs_service="nfs-kernel-server" ++ if type nfsconf >/dev/null 2>&1; then ++ nfs_config="" ++ else ++ nfs_config="/etc/default/nfs-kernel-server" ++ fi ++ nfs_rquotad_config="/etc/default/quota" + ;; + *) + echo "Internal error" +diff --git a/ctdb/config/statd-callout b/ctdb/config/statd-callout +index 38c155e4793..c138e71c7b1 100755 +--- a/ctdb/config/statd-callout ++++ b/ctdb/config/statd-callout +@@ -29,7 +29,9 @@ die () + } + + # Try different variables to find config file for NFS_HOSTNAME +-load_system_config "nfs" "nfs-common" ++if ! type nfsconf > /dev/null 2>&1; then ++ load_system_config "nfs-common" "nfs-kernel-server" ++fi + + # If NFS_HOSTNAME not set then try to pull it out of /etc/nfs.conf + if [ -z "$NFS_HOSTNAME" ]; then diff --git a/debian/patches/fruit-disable-useless-size_t-overflow-check.patch b/debian/patches/fruit-disable-useless-size_t-overflow-check.patch new file mode 100644 index 0000000..828f835 --- /dev/null +++ b/debian/patches/fruit-disable-useless-size_t-overflow-check.patch @@ -0,0 +1,53 @@ +From e4bf63c976b0e3253f980360b2fe6244092b777c Mon Sep 17 00:00:00 2001 +From: Michael Tokarev <mjt@tls.msk.ru> +Date: Thu, 17 Nov 2022 23:51:03 +0300 +Subject: [PATCH] fruit: disable useless size_t overflow check +Bug-Debian: http://bugs.debian.org/974868 + +As has been said several times in +https://bugzilla.samba.org/show_bug.cgi?id=13622 , +the check 'bandsize > SIZE_MAX/nbands' is useless. But it +is also wrong, in 2 ways: first, nbands might be 0 (when +no bands has been allocated yet), and second, there's no +point in comparing this with SIZE_MAX, since size_t on 32bit +platforms is a 32bit integer, while bandsize is off_t which +is 64bits (samba always enables LFS). + +This check causes the module to fail when bandsize*nbands +exceeds 32bits, which has been reported for example at +https://bugs.debian.org/974868 . + +Whole thing can't overflow because it is already guarded +by time_machine_max_size. Or at the very least, by current +disk sizes... :) + +Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> +--- + source3/modules/vfs_fruit.c | 11 ----------- + 1 file changed, 11 deletions(-) + +diff --git a/source3/modules/vfs_fruit.c b/source3/modules/vfs_fruit.c +index 4058d4834e7..8e31e74f2a6 100644 +--- a/source3/modules/vfs_fruit.c ++++ b/source3/modules/vfs_fruit.c +@@ -5273,17 +5273,6 @@ static bool fruit_tmsize_do_dirent(vfs_handle_struct *handle, + return true; + } + +- /* +- * Arithmetic on 32-bit systems may cause overflow, depending on +- * size_t precision. First we check its unlikely, then we +- * force the precision into target off_t, then we check that +- * the total did not overflow either. +- */ +- if (bandsize > SIZE_MAX/nbands) { +- DBG_ERR("tmsize potential overflow: bandsize [%zu] nbands [%zu]\n", +- bandsize, nbands); +- return false; +- } + tm_size = (off_t)bandsize * (off_t)nbands; + + if (state->total_size + tm_size < state->total_size) { +-- +2.30.2 + diff --git a/debian/patches/heimdal-rfc3454.txt b/debian/patches/heimdal-rfc3454.txt new file mode 100644 index 0000000..162bd2e --- /dev/null +++ b/debian/patches/heimdal-rfc3454.txt @@ -0,0 +1,7122 @@ +From: Brian May <bam@debian.org> +Subject: Patch in symbol table from rfc3454, for Heimdal scripts +Forwarded: not-needed + +Status: cherry-picked from heimdal package +--- + third_party/heimdal/lib/wind/rfc3454.txt-table | 7074 ++++++++++++++++++++++++++++ + third_party/heimdal_build/wscript_build | 6 +- + 2 files changed, 7077 insertions(+), 3 deletions(-) + create mode 100644 source4/heimdal/lib/wind/rfc3454.txt-table + +diff --git a/third_party/heimdal/lib/wind/rfc3454.txt-table b/third_party/heimdal/lib/wind/rfc3454.txt-table +new file mode 100644 +index 0000000..5bef0b5 +--- /dev/null ++++ b/third_party/heimdal/lib/wind/rfc3454.txt-table +@@ -0,0 +1,7074 @@ ++ ----- Start Table A.1 ----- ++ ++ 0221 ++ ++ 0234-024F ++ ++ 02AE-02AF ++ ++ 02EF-02FF ++ ++ 0350-035F ++ ++ 0370-0373 ++ ++ 0376-0379 ++ ++ 037B-037D ++ ++ 037F-0383 ++ ++ 038B ++ ++ 038D ++ ++ 03A2 ++ ++ 03CF ++ ++ 03F7-03FF ++ ++ 0487 ++ ++ 04CF ++ ++ 04F6-04F7 ++ ++ 04FA-04FF ++ ++ 0510-0530 ++ ++ 0557-0558 ++ ++ 0560 ++ ++ 0588 ++ ++ 058B-0590 ++ ++ 05A2 ++ ++ 05BA ++ ++ 05C5-05CF ++ ++ 05EB-05EF ++ ++ 05F5-060B ++ ++ 060D-061A ++ ++ 061C-061E ++ ++ 0620 ++ ++ 063B-063F ++ ++ 0656-065F ++ ++ 06EE-06EF ++ ++ 06FF ++ ++ 070E ++ ++ 072D-072F ++ ++ 074B-077F ++ ++ 07B2-0900 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 0904 ++ ++ 093A-093B ++ ++ 094E-094F ++ ++ 0955-0957 ++ ++ 0971-0980 ++ ++ 0984 ++ ++ 098D-098E ++ ++ 0991-0992 ++ ++ 09A9 ++ ++ 09B1 ++ ++ 09B3-09B5 ++ ++ 09BA-09BB ++ ++ 09BD ++ ++ 09C5-09C6 ++ ++ 09C9-09CA ++ ++ 09CE-09D6 ++ ++ 09D8-09DB ++ ++ 09DE ++ ++ 09E4-09E5 ++ ++ 09FB-0A01 ++ ++ 0A03-0A04 ++ ++ 0A0B-0A0E ++ ++ 0A11-0A12 ++ ++ 0A29 ++ ++ 0A31 ++ ++ 0A34 ++ ++ 0A37 ++ ++ 0A3A-0A3B ++ ++ 0A3D ++ ++ 0A43-0A46 ++ ++ 0A49-0A4A ++ ++ 0A4E-0A58 ++ ++ 0A5D ++ ++ 0A5F-0A65 ++ ++ 0A75-0A80 ++ ++ 0A84 ++ ++ 0A8C ++ ++ 0A8E ++ ++ 0A92 ++ ++ 0AA9 ++ ++ 0AB1 ++ ++ 0AB4 ++ ++ 0ABA-0ABB ++ ++ 0AC6 ++ ++ 0ACA ++ ++ 0ACE-0ACF ++ ++ 0AD1-0ADF ++ ++ 0AE1-0AE5 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 0AF0-0B00 ++ ++ 0B04 ++ ++ 0B0D-0B0E ++ ++ 0B11-0B12 ++ ++ 0B29 ++ ++ 0B31 ++ ++ 0B34-0B35 ++ ++ 0B3A-0B3B ++ ++ 0B44-0B46 ++ ++ 0B49-0B4A ++ ++ 0B4E-0B55 ++ ++ 0B58-0B5B ++ ++ 0B5E ++ ++ 0B62-0B65 ++ ++ 0B71-0B81 ++ ++ 0B84 ++ ++ 0B8B-0B8D ++ ++ 0B91 ++ ++ 0B96-0B98 ++ ++ 0B9B ++ ++ 0B9D ++ ++ 0BA0-0BA2 ++ ++ 0BA5-0BA7 ++ ++ 0BAB-0BAD ++ ++ 0BB6 ++ ++ 0BBA-0BBD ++ ++ 0BC3-0BC5 ++ ++ 0BC9 ++ ++ 0BCE-0BD6 ++ ++ 0BD8-0BE6 ++ ++ 0BF3-0C00 ++ ++ 0C04 ++ ++ 0C0D ++ ++ 0C11 ++ ++ 0C29 ++ ++ 0C34 ++ ++ 0C3A-0C3D ++ ++ 0C45 ++ ++ 0C49 ++ ++ 0C4E-0C54 ++ ++ 0C57-0C5F ++ ++ 0C62-0C65 ++ ++ 0C70-0C81 ++ ++ 0C84 ++ ++ 0C8D ++ ++ 0C91 ++ ++ 0CA9 ++ ++ 0CB4 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 0CBA-0CBD ++ ++ 0CC5 ++ ++ 0CC9 ++ ++ 0CCE-0CD4 ++ ++ 0CD7-0CDD ++ ++ 0CDF ++ ++ 0CE2-0CE5 ++ ++ 0CF0-0D01 ++ ++ 0D04 ++ ++ 0D0D ++ ++ 0D11 ++ ++ 0D29 ++ ++ 0D3A-0D3D ++ ++ 0D44-0D45 ++ ++ 0D49 ++ ++ 0D4E-0D56 ++ ++ 0D58-0D5F ++ ++ 0D62-0D65 ++ ++ 0D70-0D81 ++ ++ 0D84 ++ ++ 0D97-0D99 ++ ++ 0DB2 ++ ++ 0DBC ++ ++ 0DBE-0DBF ++ ++ 0DC7-0DC9 ++ ++ 0DCB-0DCE ++ ++ 0DD5 ++ ++ 0DD7 ++ ++ 0DE0-0DF1 ++ ++ 0DF5-0E00 ++ ++ 0E3B-0E3E ++ ++ 0E5C-0E80 ++ ++ 0E83 ++ ++ 0E85-0E86 ++ ++ 0E89 ++ ++ 0E8B-0E8C ++ ++ 0E8E-0E93 ++ ++ 0E98 ++ ++ 0EA0 ++ ++ 0EA4 ++ ++ 0EA6 ++ ++ 0EA8-0EA9 ++ ++ 0EAC ++ ++ 0EBA ++ ++ 0EBE-0EBF ++ ++ 0EC5 ++ ++ 0EC7 ++ ++ 0ECE-0ECF ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 0EDA-0EDB ++ ++ 0EDE-0EFF ++ ++ 0F48 ++ ++ 0F6B-0F70 ++ ++ 0F8C-0F8F ++ ++ 0F98 ++ ++ 0FBD ++ ++ 0FCD-0FCE ++ ++ 0FD0-0FFF ++ ++ 1022 ++ ++ 1028 ++ ++ 102B ++ ++ 1033-1035 ++ ++ 103A-103F ++ ++ 105A-109F ++ ++ 10C6-10CF ++ ++ 10F9-10FA ++ ++ 10FC-10FF ++ ++ 115A-115E ++ ++ 11A3-11A7 ++ ++ 11FA-11FF ++ ++ 1207 ++ ++ 1247 ++ ++ 1249 ++ ++ 124E-124F ++ ++ 1257 ++ ++ 1259 ++ ++ 125E-125F ++ ++ 1287 ++ ++ 1289 ++ ++ 128E-128F ++ ++ 12AF ++ ++ 12B1 ++ ++ 12B6-12B7 ++ ++ 12BF ++ ++ 12C1 ++ ++ 12C6-12C7 ++ ++ 12CF ++ ++ 12D7 ++ ++ 12EF ++ ++ 130F ++ ++ 1311 ++ ++ 1316-1317 ++ ++ 131F ++ ++ 1347 ++ ++ 135B-1360 ++ ++ 137D-139F ++ ++ 13F5-1400 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1677-167F ++ ++ 169D-169F ++ ++ 16F1-16FF ++ ++ 170D ++ ++ 1715-171F ++ ++ 1737-173F ++ ++ 1754-175F ++ ++ 176D ++ ++ 1771 ++ ++ 1774-177F ++ ++ 17DD-17DF ++ ++ 17EA-17FF ++ ++ 180F ++ ++ 181A-181F ++ ++ 1878-187F ++ ++ 18AA-1DFF ++ ++ 1E9C-1E9F ++ ++ 1EFA-1EFF ++ ++ 1F16-1F17 ++ ++ 1F1E-1F1F ++ ++ 1F46-1F47 ++ ++ 1F4E-1F4F ++ ++ 1F58 ++ ++ 1F5A ++ ++ 1F5C ++ ++ 1F5E ++ ++ 1F7E-1F7F ++ ++ 1FB5 ++ ++ 1FC5 ++ ++ 1FD4-1FD5 ++ ++ 1FDC ++ ++ 1FF0-1FF1 ++ ++ 1FF5 ++ ++ 1FFF ++ ++ 2053-2056 ++ ++ 2058-205E ++ ++ 2064-2069 ++ ++ 2072-2073 ++ ++ 208F-209F ++ ++ 20B2-20CF ++ ++ 20EB-20FF ++ ++ 213B-213C ++ ++ 214C-2152 ++ ++ 2184-218F ++ ++ 23CF-23FF ++ ++ 2427-243F ++ ++ 244B-245F ++ ++ 24FF ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 2614-2615 ++ ++ 2618 ++ ++ 267E-267F ++ ++ 268A-2700 ++ ++ 2705 ++ ++ 270A-270B ++ ++ 2728 ++ ++ 274C ++ ++ 274E ++ ++ 2753-2755 ++ ++ 2757 ++ ++ 275F-2760 ++ ++ 2795-2797 ++ ++ 27B0 ++ ++ 27BF-27CF ++ ++ 27EC-27EF ++ ++ 2B00-2E7F ++ ++ 2E9A ++ ++ 2EF4-2EFF ++ ++ 2FD6-2FEF ++ ++ 2FFC-2FFF ++ ++ 3040 ++ ++ 3097-3098 ++ ++ 3100-3104 ++ ++ 312D-3130 ++ ++ 318F ++ ++ 31B8-31EF ++ ++ 321D-321F ++ ++ 3244-3250 ++ ++ 327C-327E ++ ++ 32CC-32CF ++ ++ 32FF ++ ++ 3377-337A ++ ++ 33DE-33DF ++ ++ 33FF ++ ++ 4DB6-4DFF ++ ++ 9FA6-9FFF ++ ++ A48D-A48F ++ ++ A4C7-ABFF ++ ++ D7A4-D7FF ++ ++ FA2E-FA2F ++ ++ FA6B-FAFF ++ ++ FB07-FB12 ++ ++ FB18-FB1C ++ ++ FB37 ++ ++ FB3D ++ ++ FB3F ++ ++ FB42 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ FB45 ++ ++ FBB2-FBD2 ++ ++ FD40-FD4F ++ ++ FD90-FD91 ++ ++ FDC8-FDCF ++ ++ FDFD-FDFF ++ ++ FE10-FE1F ++ ++ FE24-FE2F ++ ++ FE47-FE48 ++ ++ FE53 ++ ++ FE67 ++ ++ FE6C-FE6F ++ ++ FE75 ++ ++ FEFD-FEFE ++ ++ FF00 ++ ++ FFBF-FFC1 ++ ++ FFC8-FFC9 ++ ++ FFD0-FFD1 ++ ++ FFD8-FFD9 ++ ++ FFDD-FFDF ++ ++ FFE7 ++ ++ FFEF-FFF8 ++ ++ 10000-102FF ++ ++ 1031F ++ ++ 10324-1032F ++ ++ 1034B-103FF ++ ++ 10426-10427 ++ ++ 1044E-1CFFF ++ ++ 1D0F6-1D0FF ++ ++ 1D127-1D129 ++ ++ 1D1DE-1D3FF ++ ++ 1D455 ++ ++ 1D49D ++ ++ 1D4A0-1D4A1 ++ ++ 1D4A3-1D4A4 ++ ++ 1D4A7-1D4A8 ++ ++ 1D4AD ++ ++ 1D4BA ++ ++ 1D4BC ++ ++ 1D4C1 ++ ++ 1D4C4 ++ ++ 1D506 ++ ++ 1D50B-1D50C ++ ++ 1D515 ++ ++ 1D51D ++ ++ 1D53A ++ ++ 1D53F ++ ++ 1D545 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1D547-1D549 ++ ++ 1D551 ++ ++ 1D6A4-1D6A7 ++ ++ 1D7CA-1D7CD ++ ++ 1D800-1FFFD ++ ++ 2A6D7-2F7FF ++ ++ 2FA1E-2FFFD ++ ++ 30000-3FFFD ++ ++ 40000-4FFFD ++ ++ 50000-5FFFD ++ ++ 60000-6FFFD ++ ++ 70000-7FFFD ++ ++ 80000-8FFFD ++ ++ 90000-9FFFD ++ ++ A0000-AFFFD ++ ++ B0000-BFFFD ++ ++ C0000-CFFFD ++ ++ D0000-DFFFD ++ ++ E0000 ++ ++ E0002-E001F ++ ++ E0080-EFFFD ++ ++ ----- End Table A.1 ----- ++ ++ ----- Start Table B.1 ----- ++ ++ 00AD; ; Map to nothing ++ ++ 034F; ; Map to nothing ++ ++ 1806; ; Map to nothing ++ ++ 180B; ; Map to nothing ++ ++ 180C; ; Map to nothing ++ ++ 180D; ; Map to nothing ++ ++ 200B; ; Map to nothing ++ ++ 200C; ; Map to nothing ++ ++ 200D; ; Map to nothing ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 2060; ; Map to nothing ++ ++ FE00; ; Map to nothing ++ ++ FE01; ; Map to nothing ++ ++ FE02; ; Map to nothing ++ ++ FE03; ; Map to nothing ++ ++ FE04; ; Map to nothing ++ ++ FE05; ; Map to nothing ++ ++ FE06; ; Map to nothing ++ ++ FE07; ; Map to nothing ++ ++ FE08; ; Map to nothing ++ ++ FE09; ; Map to nothing ++ ++ FE0A; ; Map to nothing ++ ++ FE0B; ; Map to nothing ++ ++ FE0C; ; Map to nothing ++ ++ FE0D; ; Map to nothing ++ ++ FE0E; ; Map to nothing ++ ++ FE0F; ; Map to nothing ++ ++ FEFF; ; Map to nothing ++ ++ ----- End Table B.1 ----- ++ ++ ----- Start Table B.2 ----- ++ ++ 0041; 0061; Case map ++ ++ 0042; 0062; Case map ++ ++ 0043; 0063; Case map ++ ++ 0044; 0064; Case map ++ ++ 0045; 0065; Case map ++ ++ 0046; 0066; Case map ++ ++ 0047; 0067; Case map ++ ++ 0048; 0068; Case map ++ ++ 0049; 0069; Case map ++ ++ 004A; 006A; Case map ++ ++ 004B; 006B; Case map ++ ++ 004C; 006C; Case map ++ ++ 004D; 006D; Case map ++ ++ 004E; 006E; Case map ++ ++ 004F; 006F; Case map ++ ++ 0050; 0070; Case map ++ ++ 0051; 0071; Case map ++ ++ 0052; 0072; Case map ++ ++ 0053; 0073; Case map ++ ++ 0054; 0074; Case map ++ ++ 0055; 0075; Case map ++ ++ 0056; 0076; Case map ++ ++ 0057; 0077; Case map ++ ++ 0058; 0078; Case map ++ ++ 0059; 0079; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 005A; 007A; Case map ++ ++ 00B5; 03BC; Case map ++ ++ 00C0; 00E0; Case map ++ ++ 00C1; 00E1; Case map ++ ++ 00C2; 00E2; Case map ++ ++ 00C3; 00E3; Case map ++ ++ 00C4; 00E4; Case map ++ ++ 00C5; 00E5; Case map ++ ++ 00C6; 00E6; Case map ++ ++ 00C7; 00E7; Case map ++ ++ 00C8; 00E8; Case map ++ ++ 00C9; 00E9; Case map ++ ++ 00CA; 00EA; Case map ++ ++ 00CB; 00EB; Case map ++ ++ 00CC; 00EC; Case map ++ ++ 00CD; 00ED; Case map ++ ++ 00CE; 00EE; Case map ++ ++ 00CF; 00EF; Case map ++ ++ 00D0; 00F0; Case map ++ ++ 00D1; 00F1; Case map ++ ++ 00D2; 00F2; Case map ++ ++ 00D3; 00F3; Case map ++ ++ 00D4; 00F4; Case map ++ ++ 00D5; 00F5; Case map ++ ++ 00D6; 00F6; Case map ++ ++ 00D8; 00F8; Case map ++ ++ 00D9; 00F9; Case map ++ ++ 00DA; 00FA; Case map ++ ++ 00DB; 00FB; Case map ++ ++ 00DC; 00FC; Case map ++ ++ 00DD; 00FD; Case map ++ ++ 00DE; 00FE; Case map ++ ++ 00DF; 0073 0073; Case map ++ ++ 0100; 0101; Case map ++ ++ 0102; 0103; Case map ++ ++ 0104; 0105; Case map ++ ++ 0106; 0107; Case map ++ ++ 0108; 0109; Case map ++ ++ 010A; 010B; Case map ++ ++ 010C; 010D; Case map ++ ++ 010E; 010F; Case map ++ ++ 0110; 0111; Case map ++ ++ 0112; 0113; Case map ++ ++ 0114; 0115; Case map ++ ++ 0116; 0117; Case map ++ ++ 0118; 0119; Case map ++ ++ 011A; 011B; Case map ++ ++ 011C; 011D; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 011E; 011F; Case map ++ ++ 0120; 0121; Case map ++ ++ 0122; 0123; Case map ++ ++ 0124; 0125; Case map ++ ++ 0126; 0127; Case map ++ ++ 0128; 0129; Case map ++ ++ 012A; 012B; Case map ++ ++ 012C; 012D; Case map ++ ++ 012E; 012F; Case map ++ ++ 0130; 0069 0307; Case map ++ ++ 0132; 0133; Case map ++ ++ 0134; 0135; Case map ++ ++ 0136; 0137; Case map ++ ++ 0139; 013A; Case map ++ ++ 013B; 013C; Case map ++ ++ 013D; 013E; Case map ++ ++ 013F; 0140; Case map ++ ++ 0141; 0142; Case map ++ ++ 0143; 0144; Case map ++ ++ 0145; 0146; Case map ++ ++ 0147; 0148; Case map ++ ++ 0149; 02BC 006E; Case map ++ ++ 014A; 014B; Case map ++ ++ 014C; 014D; Case map ++ ++ 014E; 014F; Case map ++ ++ 0150; 0151; Case map ++ ++ 0152; 0153; Case map ++ ++ 0154; 0155; Case map ++ ++ 0156; 0157; Case map ++ ++ 0158; 0159; Case map ++ ++ 015A; 015B; Case map ++ ++ 015C; 015D; Case map ++ ++ 015E; 015F; Case map ++ ++ 0160; 0161; Case map ++ ++ 0162; 0163; Case map ++ ++ 0164; 0165; Case map ++ ++ 0166; 0167; Case map ++ ++ 0168; 0169; Case map ++ ++ 016A; 016B; Case map ++ ++ 016C; 016D; Case map ++ ++ 016E; 016F; Case map ++ ++ 0170; 0171; Case map ++ ++ 0172; 0173; Case map ++ ++ 0174; 0175; Case map ++ ++ 0176; 0177; Case map ++ ++ 0178; 00FF; Case map ++ ++ 0179; 017A; Case map ++ ++ 017B; 017C; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 017D; 017E; Case map ++ ++ 017F; 0073; Case map ++ ++ 0181; 0253; Case map ++ ++ 0182; 0183; Case map ++ ++ 0184; 0185; Case map ++ ++ 0186; 0254; Case map ++ ++ 0187; 0188; Case map ++ ++ 0189; 0256; Case map ++ ++ 018A; 0257; Case map ++ ++ 018B; 018C; Case map ++ ++ 018E; 01DD; Case map ++ ++ 018F; 0259; Case map ++ ++ 0190; 025B; Case map ++ ++ 0191; 0192; Case map ++ ++ 0193; 0260; Case map ++ ++ 0194; 0263; Case map ++ ++ 0196; 0269; Case map ++ ++ 0197; 0268; Case map ++ ++ 0198; 0199; Case map ++ ++ 019C; 026F; Case map ++ ++ 019D; 0272; Case map ++ ++ 019F; 0275; Case map ++ ++ 01A0; 01A1; Case map ++ ++ 01A2; 01A3; Case map ++ ++ 01A4; 01A5; Case map ++ ++ 01A6; 0280; Case map ++ ++ 01A7; 01A8; Case map ++ ++ 01A9; 0283; Case map ++ ++ 01AC; 01AD; Case map ++ ++ 01AE; 0288; Case map ++ ++ 01AF; 01B0; Case map ++ ++ 01B1; 028A; Case map ++ ++ 01B2; 028B; Case map ++ ++ 01B3; 01B4; Case map ++ ++ 01B5; 01B6; Case map ++ ++ 01B7; 0292; Case map ++ ++ 01B8; 01B9; Case map ++ ++ 01BC; 01BD; Case map ++ ++ 01C4; 01C6; Case map ++ ++ 01C5; 01C6; Case map ++ ++ 01C7; 01C9; Case map ++ ++ 01C8; 01C9; Case map ++ ++ 01CA; 01CC; Case map ++ ++ 01CB; 01CC; Case map ++ ++ 01CD; 01CE; Case map ++ ++ 01CF; 01D0; Case map ++ ++ 01D1; 01D2; Case map ++ ++ 01D3; 01D4; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 01D5; 01D6; Case map ++ ++ 01D7; 01D8; Case map ++ ++ 01D9; 01DA; Case map ++ ++ 01DB; 01DC; Case map ++ ++ 01DE; 01DF; Case map ++ ++ 01E0; 01E1; Case map ++ ++ 01E2; 01E3; Case map ++ ++ 01E4; 01E5; Case map ++ ++ 01E6; 01E7; Case map ++ ++ 01E8; 01E9; Case map ++ ++ 01EA; 01EB; Case map ++ ++ 01EC; 01ED; Case map ++ ++ 01EE; 01EF; Case map ++ ++ 01F0; 006A 030C; Case map ++ ++ 01F1; 01F3; Case map ++ ++ 01F2; 01F3; Case map ++ ++ 01F4; 01F5; Case map ++ ++ 01F6; 0195; Case map ++ ++ 01F7; 01BF; Case map ++ ++ 01F8; 01F9; Case map ++ ++ 01FA; 01FB; Case map ++ ++ 01FC; 01FD; Case map ++ ++ 01FE; 01FF; Case map ++ ++ 0200; 0201; Case map ++ ++ 0202; 0203; Case map ++ ++ 0204; 0205; Case map ++ ++ 0206; 0207; Case map ++ ++ 0208; 0209; Case map ++ ++ 020A; 020B; Case map ++ ++ 020C; 020D; Case map ++ ++ 020E; 020F; Case map ++ ++ 0210; 0211; Case map ++ ++ 0212; 0213; Case map ++ ++ 0214; 0215; Case map ++ ++ 0216; 0217; Case map ++ ++ 0218; 0219; Case map ++ ++ 021A; 021B; Case map ++ ++ 021C; 021D; Case map ++ ++ 021E; 021F; Case map ++ ++ 0220; 019E; Case map ++ ++ 0222; 0223; Case map ++ ++ 0224; 0225; Case map ++ ++ 0226; 0227; Case map ++ ++ 0228; 0229; Case map ++ ++ 022A; 022B; Case map ++ ++ 022C; 022D; Case map ++ ++ 022E; 022F; Case map ++ ++ 0230; 0231; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 0232; 0233; Case map ++ ++ 0345; 03B9; Case map ++ ++ 037A; 0020 03B9; Additional folding ++ ++ 0386; 03AC; Case map ++ ++ 0388; 03AD; Case map ++ ++ 0389; 03AE; Case map ++ ++ 038A; 03AF; Case map ++ ++ 038C; 03CC; Case map ++ ++ 038E; 03CD; Case map ++ ++ 038F; 03CE; Case map ++ ++ 0390; 03B9 0308 0301; Case map ++ ++ 0391; 03B1; Case map ++ ++ 0392; 03B2; Case map ++ ++ 0393; 03B3; Case map ++ ++ 0394; 03B4; Case map ++ ++ 0395; 03B5; Case map ++ ++ 0396; 03B6; Case map ++ ++ 0397; 03B7; Case map ++ ++ 0398; 03B8; Case map ++ ++ 0399; 03B9; Case map ++ ++ 039A; 03BA; Case map ++ ++ 039B; 03BB; Case map ++ ++ 039C; 03BC; Case map ++ ++ 039D; 03BD; Case map ++ ++ 039E; 03BE; Case map ++ ++ 039F; 03BF; Case map ++ ++ 03A0; 03C0; Case map ++ ++ 03A1; 03C1; Case map ++ ++ 03A3; 03C3; Case map ++ ++ 03A4; 03C4; Case map ++ ++ 03A5; 03C5; Case map ++ ++ 03A6; 03C6; Case map ++ ++ 03A7; 03C7; Case map ++ ++ 03A8; 03C8; Case map ++ ++ 03A9; 03C9; Case map ++ ++ 03AA; 03CA; Case map ++ ++ 03AB; 03CB; Case map ++ ++ 03B0; 03C5 0308 0301; Case map ++ ++ 03C2; 03C3; Case map ++ ++ 03D0; 03B2; Case map ++ ++ 03D1; 03B8; Case map ++ ++ 03D2; 03C5; Additional folding ++ ++ 03D3; 03CD; Additional folding ++ ++ 03D4; 03CB; Additional folding ++ ++ 03D5; 03C6; Case map ++ ++ 03D6; 03C0; Case map ++ ++ 03D8; 03D9; Case map ++ ++ 03DA; 03DB; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 03DC; 03DD; Case map ++ ++ 03DE; 03DF; Case map ++ ++ 03E0; 03E1; Case map ++ ++ 03E2; 03E3; Case map ++ ++ 03E4; 03E5; Case map ++ ++ 03E6; 03E7; Case map ++ ++ 03E8; 03E9; Case map ++ ++ 03EA; 03EB; Case map ++ ++ 03EC; 03ED; Case map ++ ++ 03EE; 03EF; Case map ++ ++ 03F0; 03BA; Case map ++ ++ 03F1; 03C1; Case map ++ ++ 03F2; 03C3; Case map ++ ++ 03F4; 03B8; Case map ++ ++ 03F5; 03B5; Case map ++ ++ 0400; 0450; Case map ++ ++ 0401; 0451; Case map ++ ++ 0402; 0452; Case map ++ ++ 0403; 0453; Case map ++ ++ 0404; 0454; Case map ++ ++ 0405; 0455; Case map ++ ++ 0406; 0456; Case map ++ ++ 0407; 0457; Case map ++ ++ 0408; 0458; Case map ++ ++ 0409; 0459; Case map ++ ++ 040A; 045A; Case map ++ ++ 040B; 045B; Case map ++ ++ 040C; 045C; Case map ++ ++ 040D; 045D; Case map ++ ++ 040E; 045E; Case map ++ ++ 040F; 045F; Case map ++ ++ 0410; 0430; Case map ++ ++ 0411; 0431; Case map ++ ++ 0412; 0432; Case map ++ ++ 0413; 0433; Case map ++ ++ 0414; 0434; Case map ++ ++ 0415; 0435; Case map ++ ++ 0416; 0436; Case map ++ ++ 0417; 0437; Case map ++ ++ 0418; 0438; Case map ++ ++ 0419; 0439; Case map ++ ++ 041A; 043A; Case map ++ ++ 041B; 043B; Case map ++ ++ 041C; 043C; Case map ++ ++ 041D; 043D; Case map ++ ++ 041E; 043E; Case map ++ ++ 041F; 043F; Case map ++ ++ 0420; 0440; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 0421; 0441; Case map ++ ++ 0422; 0442; Case map ++ ++ 0423; 0443; Case map ++ ++ 0424; 0444; Case map ++ ++ 0425; 0445; Case map ++ ++ 0426; 0446; Case map ++ ++ 0427; 0447; Case map ++ ++ 0428; 0448; Case map ++ ++ 0429; 0449; Case map ++ ++ 042A; 044A; Case map ++ ++ 042B; 044B; Case map ++ ++ 042C; 044C; Case map ++ ++ 042D; 044D; Case map ++ ++ 042E; 044E; Case map ++ ++ 042F; 044F; Case map ++ ++ 0460; 0461; Case map ++ ++ 0462; 0463; Case map ++ ++ 0464; 0465; Case map ++ ++ 0466; 0467; Case map ++ ++ 0468; 0469; Case map ++ ++ 046A; 046B; Case map ++ ++ 046C; 046D; Case map ++ ++ 046E; 046F; Case map ++ ++ 0470; 0471; Case map ++ ++ 0472; 0473; Case map ++ ++ 0474; 0475; Case map ++ ++ 0476; 0477; Case map ++ ++ 0478; 0479; Case map ++ ++ 047A; 047B; Case map ++ ++ 047C; 047D; Case map ++ ++ 047E; 047F; Case map ++ ++ 0480; 0481; Case map ++ ++ 048A; 048B; Case map ++ ++ 048C; 048D; Case map ++ ++ 048E; 048F; Case map ++ ++ 0490; 0491; Case map ++ ++ 0492; 0493; Case map ++ ++ 0494; 0495; Case map ++ ++ 0496; 0497; Case map ++ ++ 0498; 0499; Case map ++ ++ 049A; 049B; Case map ++ ++ 049C; 049D; Case map ++ ++ 049E; 049F; Case map ++ ++ 04A0; 04A1; Case map ++ ++ 04A2; 04A3; Case map ++ ++ 04A4; 04A5; Case map ++ ++ 04A6; 04A7; Case map ++ ++ 04A8; 04A9; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 04AA; 04AB; Case map ++ ++ 04AC; 04AD; Case map ++ ++ 04AE; 04AF; Case map ++ ++ 04B0; 04B1; Case map ++ ++ 04B2; 04B3; Case map ++ ++ 04B4; 04B5; Case map ++ ++ 04B6; 04B7; Case map ++ ++ 04B8; 04B9; Case map ++ ++ 04BA; 04BB; Case map ++ ++ 04BC; 04BD; Case map ++ ++ 04BE; 04BF; Case map ++ ++ 04C1; 04C2; Case map ++ ++ 04C3; 04C4; Case map ++ ++ 04C5; 04C6; Case map ++ ++ 04C7; 04C8; Case map ++ ++ 04C9; 04CA; Case map ++ ++ 04CB; 04CC; Case map ++ ++ 04CD; 04CE; Case map ++ ++ 04D0; 04D1; Case map ++ ++ 04D2; 04D3; Case map ++ ++ 04D4; 04D5; Case map ++ ++ 04D6; 04D7; Case map ++ ++ 04D8; 04D9; Case map ++ ++ 04DA; 04DB; Case map ++ ++ 04DC; 04DD; Case map ++ ++ 04DE; 04DF; Case map ++ ++ 04E0; 04E1; Case map ++ ++ 04E2; 04E3; Case map ++ ++ 04E4; 04E5; Case map ++ ++ 04E6; 04E7; Case map ++ ++ 04E8; 04E9; Case map ++ ++ 04EA; 04EB; Case map ++ ++ 04EC; 04ED; Case map ++ ++ 04EE; 04EF; Case map ++ ++ 04F0; 04F1; Case map ++ ++ 04F2; 04F3; Case map ++ ++ 04F4; 04F5; Case map ++ ++ 04F8; 04F9; Case map ++ ++ 0500; 0501; Case map ++ ++ 0502; 0503; Case map ++ ++ 0504; 0505; Case map ++ ++ 0506; 0507; Case map ++ ++ 0508; 0509; Case map ++ ++ 050A; 050B; Case map ++ ++ 050C; 050D; Case map ++ ++ 050E; 050F; Case map ++ ++ 0531; 0561; Case map ++ ++ 0532; 0562; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 0533; 0563; Case map ++ ++ 0534; 0564; Case map ++ ++ 0535; 0565; Case map ++ ++ 0536; 0566; Case map ++ ++ 0537; 0567; Case map ++ ++ 0538; 0568; Case map ++ ++ 0539; 0569; Case map ++ ++ 053A; 056A; Case map ++ ++ 053B; 056B; Case map ++ ++ 053C; 056C; Case map ++ ++ 053D; 056D; Case map ++ ++ 053E; 056E; Case map ++ ++ 053F; 056F; Case map ++ ++ 0540; 0570; Case map ++ ++ 0541; 0571; Case map ++ ++ 0542; 0572; Case map ++ ++ 0543; 0573; Case map ++ ++ 0544; 0574; Case map ++ ++ 0545; 0575; Case map ++ ++ 0546; 0576; Case map ++ ++ 0547; 0577; Case map ++ ++ 0548; 0578; Case map ++ ++ 0549; 0579; Case map ++ ++ 054A; 057A; Case map ++ ++ 054B; 057B; Case map ++ ++ 054C; 057C; Case map ++ ++ 054D; 057D; Case map ++ ++ 054E; 057E; Case map ++ ++ 054F; 057F; Case map ++ ++ 0550; 0580; Case map ++ ++ 0551; 0581; Case map ++ ++ 0552; 0582; Case map ++ ++ 0553; 0583; Case map ++ ++ 0554; 0584; Case map ++ ++ 0555; 0585; Case map ++ ++ 0556; 0586; Case map ++ ++ 0587; 0565 0582; Case map ++ ++ 1E00; 1E01; Case map ++ ++ 1E02; 1E03; Case map ++ ++ 1E04; 1E05; Case map ++ ++ 1E06; 1E07; Case map ++ ++ 1E08; 1E09; Case map ++ ++ 1E0A; 1E0B; Case map ++ ++ 1E0C; 1E0D; Case map ++ ++ 1E0E; 1E0F; Case map ++ ++ 1E10; 1E11; Case map ++ ++ 1E12; 1E13; Case map ++ ++ 1E14; 1E15; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1E16; 1E17; Case map ++ ++ 1E18; 1E19; Case map ++ ++ 1E1A; 1E1B; Case map ++ ++ 1E1C; 1E1D; Case map ++ ++ 1E1E; 1E1F; Case map ++ ++ 1E20; 1E21; Case map ++ ++ 1E22; 1E23; Case map ++ ++ 1E24; 1E25; Case map ++ ++ 1E26; 1E27; Case map ++ ++ 1E28; 1E29; Case map ++ ++ 1E2A; 1E2B; Case map ++ ++ 1E2C; 1E2D; Case map ++ ++ 1E2E; 1E2F; Case map ++ ++ 1E30; 1E31; Case map ++ ++ 1E32; 1E33; Case map ++ ++ 1E34; 1E35; Case map ++ ++ 1E36; 1E37; Case map ++ ++ 1E38; 1E39; Case map ++ ++ 1E3A; 1E3B; Case map ++ ++ 1E3C; 1E3D; Case map ++ ++ 1E3E; 1E3F; Case map ++ ++ 1E40; 1E41; Case map ++ ++ 1E42; 1E43; Case map ++ ++ 1E44; 1E45; Case map ++ ++ 1E46; 1E47; Case map ++ ++ 1E48; 1E49; Case map ++ ++ 1E4A; 1E4B; Case map ++ ++ 1E4C; 1E4D; Case map ++ ++ 1E4E; 1E4F; Case map ++ ++ 1E50; 1E51; Case map ++ ++ 1E52; 1E53; Case map ++ ++ 1E54; 1E55; Case map ++ ++ 1E56; 1E57; Case map ++ ++ 1E58; 1E59; Case map ++ ++ 1E5A; 1E5B; Case map ++ ++ 1E5C; 1E5D; Case map ++ ++ 1E5E; 1E5F; Case map ++ ++ 1E60; 1E61; Case map ++ ++ 1E62; 1E63; Case map ++ ++ 1E64; 1E65; Case map ++ ++ 1E66; 1E67; Case map ++ ++ 1E68; 1E69; Case map ++ ++ 1E6A; 1E6B; Case map ++ ++ 1E6C; 1E6D; Case map ++ ++ 1E6E; 1E6F; Case map ++ ++ 1E70; 1E71; Case map ++ ++ 1E72; 1E73; Case map ++ ++ 1E74; 1E75; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1E76; 1E77; Case map ++ ++ 1E78; 1E79; Case map ++ ++ 1E7A; 1E7B; Case map ++ ++ 1E7C; 1E7D; Case map ++ ++ 1E7E; 1E7F; Case map ++ ++ 1E80; 1E81; Case map ++ ++ 1E82; 1E83; Case map ++ ++ 1E84; 1E85; Case map ++ ++ 1E86; 1E87; Case map ++ ++ 1E88; 1E89; Case map ++ ++ 1E8A; 1E8B; Case map ++ ++ 1E8C; 1E8D; Case map ++ ++ 1E8E; 1E8F; Case map ++ ++ 1E90; 1E91; Case map ++ ++ 1E92; 1E93; Case map ++ ++ 1E94; 1E95; Case map ++ ++ 1E96; 0068 0331; Case map ++ ++ 1E97; 0074 0308; Case map ++ ++ 1E98; 0077 030A; Case map ++ ++ 1E99; 0079 030A; Case map ++ ++ 1E9A; 0061 02BE; Case map ++ ++ 1E9B; 1E61; Case map ++ ++ 1EA0; 1EA1; Case map ++ ++ 1EA2; 1EA3; Case map ++ ++ 1EA4; 1EA5; Case map ++ ++ 1EA6; 1EA7; Case map ++ ++ 1EA8; 1EA9; Case map ++ ++ 1EAA; 1EAB; Case map ++ ++ 1EAC; 1EAD; Case map ++ ++ 1EAE; 1EAF; Case map ++ ++ 1EB0; 1EB1; Case map ++ ++ 1EB2; 1EB3; Case map ++ ++ 1EB4; 1EB5; Case map ++ ++ 1EB6; 1EB7; Case map ++ ++ 1EB8; 1EB9; Case map ++ ++ 1EBA; 1EBB; Case map ++ ++ 1EBC; 1EBD; Case map ++ ++ 1EBE; 1EBF; Case map ++ ++ 1EC0; 1EC1; Case map ++ ++ 1EC2; 1EC3; Case map ++ ++ 1EC4; 1EC5; Case map ++ ++ 1EC6; 1EC7; Case map ++ ++ 1EC8; 1EC9; Case map ++ ++ 1ECA; 1ECB; Case map ++ ++ 1ECC; 1ECD; Case map ++ ++ 1ECE; 1ECF; Case map ++ ++ 1ED0; 1ED1; Case map ++ ++ 1ED2; 1ED3; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1ED4; 1ED5; Case map ++ ++ 1ED6; 1ED7; Case map ++ ++ 1ED8; 1ED9; Case map ++ ++ 1EDA; 1EDB; Case map ++ ++ 1EDC; 1EDD; Case map ++ ++ 1EDE; 1EDF; Case map ++ ++ 1EE0; 1EE1; Case map ++ ++ 1EE2; 1EE3; Case map ++ ++ 1EE4; 1EE5; Case map ++ ++ 1EE6; 1EE7; Case map ++ ++ 1EE8; 1EE9; Case map ++ ++ 1EEA; 1EEB; Case map ++ ++ 1EEC; 1EED; Case map ++ ++ 1EEE; 1EEF; Case map ++ ++ 1EF0; 1EF1; Case map ++ ++ 1EF2; 1EF3; Case map ++ ++ 1EF4; 1EF5; Case map ++ ++ 1EF6; 1EF7; Case map ++ ++ 1EF8; 1EF9; Case map ++ ++ 1F08; 1F00; Case map ++ ++ 1F09; 1F01; Case map ++ ++ 1F0A; 1F02; Case map ++ ++ 1F0B; 1F03; Case map ++ ++ 1F0C; 1F04; Case map ++ ++ 1F0D; 1F05; Case map ++ ++ 1F0E; 1F06; Case map ++ ++ 1F0F; 1F07; Case map ++ ++ 1F18; 1F10; Case map ++ ++ 1F19; 1F11; Case map ++ ++ 1F1A; 1F12; Case map ++ ++ 1F1B; 1F13; Case map ++ ++ 1F1C; 1F14; Case map ++ ++ 1F1D; 1F15; Case map ++ ++ 1F28; 1F20; Case map ++ ++ 1F29; 1F21; Case map ++ ++ 1F2A; 1F22; Case map ++ ++ 1F2B; 1F23; Case map ++ ++ 1F2C; 1F24; Case map ++ ++ 1F2D; 1F25; Case map ++ ++ 1F2E; 1F26; Case map ++ ++ 1F2F; 1F27; Case map ++ ++ 1F38; 1F30; Case map ++ ++ 1F39; 1F31; Case map ++ ++ 1F3A; 1F32; Case map ++ ++ 1F3B; 1F33; Case map ++ ++ 1F3C; 1F34; Case map ++ ++ 1F3D; 1F35; Case map ++ ++ 1F3E; 1F36; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1F3F; 1F37; Case map ++ ++ 1F48; 1F40; Case map ++ ++ 1F49; 1F41; Case map ++ ++ 1F4A; 1F42; Case map ++ ++ 1F4B; 1F43; Case map ++ ++ 1F4C; 1F44; Case map ++ ++ 1F4D; 1F45; Case map ++ ++ 1F50; 03C5 0313; Case map ++ ++ 1F52; 03C5 0313 0300; Case map ++ ++ 1F54; 03C5 0313 0301; Case map ++ ++ 1F56; 03C5 0313 0342; Case map ++ ++ 1F59; 1F51; Case map ++ ++ 1F5B; 1F53; Case map ++ ++ 1F5D; 1F55; Case map ++ ++ 1F5F; 1F57; Case map ++ ++ 1F68; 1F60; Case map ++ ++ 1F69; 1F61; Case map ++ ++ 1F6A; 1F62; Case map ++ ++ 1F6B; 1F63; Case map ++ ++ 1F6C; 1F64; Case map ++ ++ 1F6D; 1F65; Case map ++ ++ 1F6E; 1F66; Case map ++ ++ 1F6F; 1F67; Case map ++ ++ 1F80; 1F00 03B9; Case map ++ ++ 1F81; 1F01 03B9; Case map ++ ++ 1F82; 1F02 03B9; Case map ++ ++ 1F83; 1F03 03B9; Case map ++ ++ 1F84; 1F04 03B9; Case map ++ ++ 1F85; 1F05 03B9; Case map ++ ++ 1F86; 1F06 03B9; Case map ++ ++ 1F87; 1F07 03B9; Case map ++ ++ 1F88; 1F00 03B9; Case map ++ ++ 1F89; 1F01 03B9; Case map ++ ++ 1F8A; 1F02 03B9; Case map ++ ++ 1F8B; 1F03 03B9; Case map ++ ++ 1F8C; 1F04 03B9; Case map ++ ++ 1F8D; 1F05 03B9; Case map ++ ++ 1F8E; 1F06 03B9; Case map ++ ++ 1F8F; 1F07 03B9; Case map ++ ++ 1F90; 1F20 03B9; Case map ++ ++ 1F91; 1F21 03B9; Case map ++ ++ 1F92; 1F22 03B9; Case map ++ ++ 1F93; 1F23 03B9; Case map ++ ++ 1F94; 1F24 03B9; Case map ++ ++ 1F95; 1F25 03B9; Case map ++ ++ 1F96; 1F26 03B9; Case map ++ ++ 1F97; 1F27 03B9; Case map ++ ++ 1F98; 1F20 03B9; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1F99; 1F21 03B9; Case map ++ ++ 1F9A; 1F22 03B9; Case map ++ ++ 1F9B; 1F23 03B9; Case map ++ ++ 1F9C; 1F24 03B9; Case map ++ ++ 1F9D; 1F25 03B9; Case map ++ ++ 1F9E; 1F26 03B9; Case map ++ ++ 1F9F; 1F27 03B9; Case map ++ ++ 1FA0; 1F60 03B9; Case map ++ ++ 1FA1; 1F61 03B9; Case map ++ ++ 1FA2; 1F62 03B9; Case map ++ ++ 1FA3; 1F63 03B9; Case map ++ ++ 1FA4; 1F64 03B9; Case map ++ ++ 1FA5; 1F65 03B9; Case map ++ ++ 1FA6; 1F66 03B9; Case map ++ ++ 1FA7; 1F67 03B9; Case map ++ ++ 1FA8; 1F60 03B9; Case map ++ ++ 1FA9; 1F61 03B9; Case map ++ ++ 1FAA; 1F62 03B9; Case map ++ ++ 1FAB; 1F63 03B9; Case map ++ ++ 1FAC; 1F64 03B9; Case map ++ ++ 1FAD; 1F65 03B9; Case map ++ ++ 1FAE; 1F66 03B9; Case map ++ ++ 1FAF; 1F67 03B9; Case map ++ ++ 1FB2; 1F70 03B9; Case map ++ ++ 1FB3; 03B1 03B9; Case map ++ ++ 1FB4; 03AC 03B9; Case map ++ ++ 1FB6; 03B1 0342; Case map ++ ++ 1FB7; 03B1 0342 03B9; Case map ++ ++ 1FB8; 1FB0; Case map ++ ++ 1FB9; 1FB1; Case map ++ ++ 1FBA; 1F70; Case map ++ ++ 1FBB; 1F71; Case map ++ ++ 1FBC; 03B1 03B9; Case map ++ ++ 1FBE; 03B9; Case map ++ ++ 1FC2; 1F74 03B9; Case map ++ ++ 1FC3; 03B7 03B9; Case map ++ ++ 1FC4; 03AE 03B9; Case map ++ ++ 1FC6; 03B7 0342; Case map ++ ++ 1FC7; 03B7 0342 03B9; Case map ++ ++ 1FC8; 1F72; Case map ++ ++ 1FC9; 1F73; Case map ++ ++ 1FCA; 1F74; Case map ++ ++ 1FCB; 1F75; Case map ++ ++ 1FCC; 03B7 03B9; Case map ++ ++ 1FD2; 03B9 0308 0300; Case map ++ ++ 1FD3; 03B9 0308 0301; Case map ++ ++ 1FD6; 03B9 0342; Case map ++ ++ 1FD7; 03B9 0308 0342; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1FD8; 1FD0; Case map ++ ++ 1FD9; 1FD1; Case map ++ ++ 1FDA; 1F76; Case map ++ ++ 1FDB; 1F77; Case map ++ ++ 1FE2; 03C5 0308 0300; Case map ++ ++ 1FE3; 03C5 0308 0301; Case map ++ ++ 1FE4; 03C1 0313; Case map ++ ++ 1FE6; 03C5 0342; Case map ++ ++ 1FE7; 03C5 0308 0342; Case map ++ ++ 1FE8; 1FE0; Case map ++ ++ 1FE9; 1FE1; Case map ++ ++ 1FEA; 1F7A; Case map ++ ++ 1FEB; 1F7B; Case map ++ ++ 1FEC; 1FE5; Case map ++ ++ 1FF2; 1F7C 03B9; Case map ++ ++ 1FF3; 03C9 03B9; Case map ++ ++ 1FF4; 03CE 03B9; Case map ++ ++ 1FF6; 03C9 0342; Case map ++ ++ 1FF7; 03C9 0342 03B9; Case map ++ ++ 1FF8; 1F78; Case map ++ ++ 1FF9; 1F79; Case map ++ ++ 1FFA; 1F7C; Case map ++ ++ 1FFB; 1F7D; Case map ++ ++ 1FFC; 03C9 03B9; Case map ++ ++ 20A8; 0072 0073; Additional folding ++ ++ 2102; 0063; Additional folding ++ ++ 2103; 00B0 0063; Additional folding ++ ++ 2107; 025B; Additional folding ++ ++ 2109; 00B0 0066; Additional folding ++ ++ 210B; 0068; Additional folding ++ ++ 210C; 0068; Additional folding ++ ++ 210D; 0068; Additional folding ++ ++ 2110; 0069; Additional folding ++ ++ 2111; 0069; Additional folding ++ ++ 2112; 006C; Additional folding ++ ++ 2115; 006E; Additional folding ++ ++ 2116; 006E 006F; Additional folding ++ ++ 2119; 0070; Additional folding ++ ++ 211A; 0071; Additional folding ++ ++ 211B; 0072; Additional folding ++ ++ 211C; 0072; Additional folding ++ ++ 211D; 0072; Additional folding ++ ++ 2120; 0073 006D; Additional folding ++ ++ 2121; 0074 0065 006C; Additional folding ++ ++ 2122; 0074 006D; Additional folding ++ ++ 2124; 007A; Additional folding ++ ++ 2126; 03C9; Case map ++ ++ 2128; 007A; Additional folding ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 212A; 006B; Case map ++ ++ 212B; 00E5; Case map ++ ++ 212C; 0062; Additional folding ++ ++ 212D; 0063; Additional folding ++ ++ 2130; 0065; Additional folding ++ ++ 2131; 0066; Additional folding ++ ++ 2133; 006D; Additional folding ++ ++ 213E; 03B3; Additional folding ++ ++ 213F; 03C0; Additional folding ++ ++ 2145; 0064; Additional folding ++ ++ 2160; 2170; Case map ++ ++ 2161; 2171; Case map ++ ++ 2162; 2172; Case map ++ ++ 2163; 2173; Case map ++ ++ 2164; 2174; Case map ++ ++ 2165; 2175; Case map ++ ++ 2166; 2176; Case map ++ ++ 2167; 2177; Case map ++ ++ 2168; 2178; Case map ++ ++ 2169; 2179; Case map ++ ++ 216A; 217A; Case map ++ ++ 216B; 217B; Case map ++ ++ 216C; 217C; Case map ++ ++ 216D; 217D; Case map ++ ++ 216E; 217E; Case map ++ ++ 216F; 217F; Case map ++ ++ 24B6; 24D0; Case map ++ ++ 24B7; 24D1; Case map ++ ++ 24B8; 24D2; Case map ++ ++ 24B9; 24D3; Case map ++ ++ 24BA; 24D4; Case map ++ ++ 24BB; 24D5; Case map ++ ++ 24BC; 24D6; Case map ++ ++ 24BD; 24D7; Case map ++ ++ 24BE; 24D8; Case map ++ ++ 24BF; 24D9; Case map ++ ++ 24C0; 24DA; Case map ++ ++ 24C1; 24DB; Case map ++ ++ 24C2; 24DC; Case map ++ ++ 24C3; 24DD; Case map ++ ++ 24C4; 24DE; Case map ++ ++ 24C5; 24DF; Case map ++ ++ 24C6; 24E0; Case map ++ ++ 24C7; 24E1; Case map ++ ++ 24C8; 24E2; Case map ++ ++ 24C9; 24E3; Case map ++ ++ 24CA; 24E4; Case map ++ ++ 24CB; 24E5; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 24CC; 24E6; Case map ++ ++ 24CD; 24E7; Case map ++ ++ 24CE; 24E8; Case map ++ ++ 24CF; 24E9; Case map ++ ++ 3371; 0068 0070 0061; Additional folding ++ ++ 3373; 0061 0075; Additional folding ++ ++ 3375; 006F 0076; Additional folding ++ ++ 3380; 0070 0061; Additional folding ++ ++ 3381; 006E 0061; Additional folding ++ ++ 3382; 03BC 0061; Additional folding ++ ++ 3383; 006D 0061; Additional folding ++ ++ 3384; 006B 0061; Additional folding ++ ++ 3385; 006B 0062; Additional folding ++ ++ 3386; 006D 0062; Additional folding ++ ++ 3387; 0067 0062; Additional folding ++ ++ 338A; 0070 0066; Additional folding ++ ++ 338B; 006E 0066; Additional folding ++ ++ 338C; 03BC 0066; Additional folding ++ ++ 3390; 0068 007A; Additional folding ++ ++ 3391; 006B 0068 007A; Additional folding ++ ++ 3392; 006D 0068 007A; Additional folding ++ ++ 3393; 0067 0068 007A; Additional folding ++ ++ 3394; 0074 0068 007A; Additional folding ++ ++ 33A9; 0070 0061; Additional folding ++ ++ 33AA; 006B 0070 0061; Additional folding ++ ++ 33AB; 006D 0070 0061; Additional folding ++ ++ 33AC; 0067 0070 0061; Additional folding ++ ++ 33B4; 0070 0076; Additional folding ++ ++ 33B5; 006E 0076; Additional folding ++ ++ 33B6; 03BC 0076; Additional folding ++ ++ 33B7; 006D 0076; Additional folding ++ ++ 33B8; 006B 0076; Additional folding ++ ++ 33B9; 006D 0076; Additional folding ++ ++ 33BA; 0070 0077; Additional folding ++ ++ 33BB; 006E 0077; Additional folding ++ ++ 33BC; 03BC 0077; Additional folding ++ ++ 33BD; 006D 0077; Additional folding ++ ++ 33BE; 006B 0077; Additional folding ++ ++ 33BF; 006D 0077; Additional folding ++ ++ 33C0; 006B 03C9; Additional folding ++ ++ 33C1; 006D 03C9; Additional folding ++ ++ 33C3; 0062 0071; Additional folding ++ ++ 33C6; 0063 2215 006B 0067; Additional folding ++ ++ 33C7; 0063 006F 002E; Additional folding ++ ++ 33C8; 0064 0062; Additional folding ++ ++ 33C9; 0067 0079; Additional folding ++ ++ 33CB; 0068 0070; Additional folding ++ ++ 33CD; 006B 006B; Additional folding ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 33CE; 006B 006D; Additional folding ++ ++ 33D7; 0070 0068; Additional folding ++ ++ 33D9; 0070 0070 006D; Additional folding ++ ++ 33DA; 0070 0072; Additional folding ++ ++ 33DC; 0073 0076; Additional folding ++ ++ 33DD; 0077 0062; Additional folding ++ ++ FB00; 0066 0066; Case map ++ ++ FB01; 0066 0069; Case map ++ ++ FB02; 0066 006C; Case map ++ ++ FB03; 0066 0066 0069; Case map ++ ++ FB04; 0066 0066 006C; Case map ++ ++ FB05; 0073 0074; Case map ++ ++ FB06; 0073 0074; Case map ++ ++ FB13; 0574 0576; Case map ++ ++ FB14; 0574 0565; Case map ++ ++ FB15; 0574 056B; Case map ++ ++ FB16; 057E 0576; Case map ++ ++ FB17; 0574 056D; Case map ++ ++ FF21; FF41; Case map ++ ++ FF22; FF42; Case map ++ ++ FF23; FF43; Case map ++ ++ FF24; FF44; Case map ++ ++ FF25; FF45; Case map ++ ++ FF26; FF46; Case map ++ ++ FF27; FF47; Case map ++ ++ FF28; FF48; Case map ++ ++ FF29; FF49; Case map ++ ++ FF2A; FF4A; Case map ++ ++ FF2B; FF4B; Case map ++ ++ FF2C; FF4C; Case map ++ ++ FF2D; FF4D; Case map ++ ++ FF2E; FF4E; Case map ++ ++ FF2F; FF4F; Case map ++ ++ FF30; FF50; Case map ++ ++ FF31; FF51; Case map ++ ++ FF32; FF52; Case map ++ ++ FF33; FF53; Case map ++ ++ FF34; FF54; Case map ++ ++ FF35; FF55; Case map ++ ++ FF36; FF56; Case map ++ ++ FF37; FF57; Case map ++ ++ FF38; FF58; Case map ++ ++ FF39; FF59; Case map ++ ++ FF3A; FF5A; Case map ++ ++ 10400; 10428; Case map ++ ++ 10401; 10429; Case map ++ ++ 10402; 1042A; Case map ++ ++ 10403; 1042B; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 10404; 1042C; Case map ++ ++ 10405; 1042D; Case map ++ ++ 10406; 1042E; Case map ++ ++ 10407; 1042F; Case map ++ ++ 10408; 10430; Case map ++ ++ 10409; 10431; Case map ++ ++ 1040A; 10432; Case map ++ ++ 1040B; 10433; Case map ++ ++ 1040C; 10434; Case map ++ ++ 1040D; 10435; Case map ++ ++ 1040E; 10436; Case map ++ ++ 1040F; 10437; Case map ++ ++ 10410; 10438; Case map ++ ++ 10411; 10439; Case map ++ ++ 10412; 1043A; Case map ++ ++ 10413; 1043B; Case map ++ ++ 10414; 1043C; Case map ++ ++ 10415; 1043D; Case map ++ ++ 10416; 1043E; Case map ++ ++ 10417; 1043F; Case map ++ ++ 10418; 10440; Case map ++ ++ 10419; 10441; Case map ++ ++ 1041A; 10442; Case map ++ ++ 1041B; 10443; Case map ++ ++ 1041C; 10444; Case map ++ ++ 1041D; 10445; Case map ++ ++ 1041E; 10446; Case map ++ ++ 1041F; 10447; Case map ++ ++ 10420; 10448; Case map ++ ++ 10421; 10449; Case map ++ ++ 10422; 1044A; Case map ++ ++ 10423; 1044B; Case map ++ ++ 10424; 1044C; Case map ++ ++ 10425; 1044D; Case map ++ ++ 1D400; 0061; Additional folding ++ ++ 1D401; 0062; Additional folding ++ ++ 1D402; 0063; Additional folding ++ ++ 1D403; 0064; Additional folding ++ ++ 1D404; 0065; Additional folding ++ ++ 1D405; 0066; Additional folding ++ ++ 1D406; 0067; Additional folding ++ ++ 1D407; 0068; Additional folding ++ ++ 1D408; 0069; Additional folding ++ ++ 1D409; 006A; Additional folding ++ ++ 1D40A; 006B; Additional folding ++ ++ 1D40B; 006C; Additional folding ++ ++ 1D40C; 006D; Additional folding ++ ++ 1D40D; 006E; Additional folding ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1D40E; 006F; Additional folding ++ ++ 1D40F; 0070; Additional folding ++ ++ 1D410; 0071; Additional folding ++ ++ 1D411; 0072; Additional folding ++ ++ 1D412; 0073; Additional folding ++ ++ 1D413; 0074; Additional folding ++ ++ 1D414; 0075; Additional folding ++ ++ 1D415; 0076; Additional folding ++ ++ 1D416; 0077; Additional folding ++ ++ 1D417; 0078; Additional folding ++ ++ 1D418; 0079; Additional folding ++ ++ 1D419; 007A; Additional folding ++ ++ 1D434; 0061; Additional folding ++ ++ 1D435; 0062; Additional folding ++ ++ 1D436; 0063; Additional folding ++ ++ 1D437; 0064; Additional folding ++ ++ 1D438; 0065; Additional folding ++ ++ 1D439; 0066; Additional folding ++ ++ 1D43A; 0067; Additional folding ++ ++ 1D43B; 0068; Additional folding ++ ++ 1D43C; 0069; Additional folding ++ ++ 1D43D; 006A; Additional folding ++ ++ 1D43E; 006B; Additional folding ++ ++ 1D43F; 006C; Additional folding ++ ++ 1D440; 006D; Additional folding ++ ++ 1D441; 006E; Additional folding ++ ++ 1D442; 006F; Additional folding ++ ++ 1D443; 0070; Additional folding ++ ++ 1D444; 0071; Additional folding ++ ++ 1D445; 0072; Additional folding ++ ++ 1D446; 0073; Additional folding ++ ++ 1D447; 0074; Additional folding ++ ++ 1D448; 0075; Additional folding ++ ++ 1D449; 0076; Additional folding ++ ++ 1D44A; 0077; Additional folding ++ ++ 1D44B; 0078; Additional folding ++ ++ 1D44C; 0079; Additional folding ++ ++ 1D44D; 007A; Additional folding ++ ++ 1D468; 0061; Additional folding ++ ++ 1D469; 0062; Additional folding ++ ++ 1D46A; 0063; Additional folding ++ ++ 1D46B; 0064; Additional folding ++ ++ 1D46C; 0065; Additional folding ++ ++ 1D46D; 0066; Additional folding ++ ++ 1D46E; 0067; Additional folding ++ ++ 1D46F; 0068; Additional folding ++ ++ 1D470; 0069; Additional folding ++ ++ 1D471; 006A; Additional folding ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1D472; 006B; Additional folding ++ ++ 1D473; 006C; Additional folding ++ ++ 1D474; 006D; Additional folding ++ ++ 1D475; 006E; Additional folding ++ ++ 1D476; 006F; Additional folding ++ ++ 1D477; 0070; Additional folding ++ ++ 1D478; 0071; Additional folding ++ ++ 1D479; 0072; Additional folding ++ ++ 1D47A; 0073; Additional folding ++ ++ 1D47B; 0074; Additional folding ++ ++ 1D47C; 0075; Additional folding ++ ++ 1D47D; 0076; Additional folding ++ ++ 1D47E; 0077; Additional folding ++ ++ 1D47F; 0078; Additional folding ++ ++ 1D480; 0079; Additional folding ++ ++ 1D481; 007A; Additional folding ++ ++ 1D49C; 0061; Additional folding ++ ++ 1D49E; 0063; Additional folding ++ ++ 1D49F; 0064; Additional folding ++ ++ 1D4A2; 0067; Additional folding ++ ++ 1D4A5; 006A; Additional folding ++ ++ 1D4A6; 006B; Additional folding ++ ++ 1D4A9; 006E; Additional folding ++ ++ 1D4AA; 006F; Additional folding ++ ++ 1D4AB; 0070; Additional folding ++ ++ 1D4AC; 0071; Additional folding ++ ++ 1D4AE; 0073; Additional folding ++ ++ 1D4AF; 0074; Additional folding ++ ++ 1D4B0; 0075; Additional folding ++ ++ 1D4B1; 0076; Additional folding ++ ++ 1D4B2; 0077; Additional folding ++ ++ 1D4B3; 0078; Additional folding ++ ++ 1D4B4; 0079; Additional folding ++ ++ 1D4B5; 007A; Additional folding ++ ++ 1D4D0; 0061; Additional folding ++ ++ 1D4D1; 0062; Additional folding ++ ++ 1D4D2; 0063; Additional folding ++ ++ 1D4D3; 0064; Additional folding ++ ++ 1D4D4; 0065; Additional folding ++ ++ 1D4D5; 0066; Additional folding ++ ++ 1D4D6; 0067; Additional folding ++ ++ 1D4D7; 0068; Additional folding ++ ++ 1D4D8; 0069; Additional folding ++ ++ 1D4D9; 006A; Additional folding ++ ++ 1D4DA; 006B; Additional folding ++ ++ 1D4DB; 006C; Additional folding ++ ++ 1D4DC; 006D; Additional folding ++ ++ 1D4DD; 006E; Additional folding ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1D4DE; 006F; Additional folding ++ ++ 1D4DF; 0070; Additional folding ++ ++ 1D4E0; 0071; Additional folding ++ ++ 1D4E1; 0072; Additional folding ++ ++ 1D4E2; 0073; Additional folding ++ ++ 1D4E3; 0074; Additional folding ++ ++ 1D4E4; 0075; Additional folding ++ ++ 1D4E5; 0076; Additional folding ++ ++ 1D4E6; 0077; Additional folding ++ ++ 1D4E7; 0078; Additional folding ++ ++ 1D4E8; 0079; Additional folding ++ ++ 1D4E9; 007A; Additional folding ++ ++ 1D504; 0061; Additional folding ++ ++ 1D505; 0062; Additional folding ++ ++ 1D507; 0064; Additional folding ++ ++ 1D508; 0065; Additional folding ++ ++ 1D509; 0066; Additional folding ++ ++ 1D50A; 0067; Additional folding ++ ++ 1D50D; 006A; Additional folding ++ ++ 1D50E; 006B; Additional folding ++ ++ 1D50F; 006C; Additional folding ++ ++ 1D510; 006D; Additional folding ++ ++ 1D511; 006E; Additional folding ++ ++ 1D512; 006F; Additional folding ++ ++ 1D513; 0070; Additional folding ++ ++ 1D514; 0071; Additional folding ++ ++ 1D516; 0073; Additional folding ++ ++ 1D517; 0074; Additional folding ++ ++ 1D518; 0075; Additional folding ++ ++ 1D519; 0076; Additional folding ++ ++ 1D51A; 0077; Additional folding ++ ++ 1D51B; 0078; Additional folding ++ ++ 1D51C; 0079; Additional folding ++ ++ 1D538; 0061; Additional folding ++ ++ 1D539; 0062; Additional folding ++ ++ 1D53B; 0064; Additional folding ++ ++ 1D53C; 0065; Additional folding ++ ++ 1D53D; 0066; Additional folding ++ ++ 1D53E; 0067; Additional folding ++ ++ 1D540; 0069; Additional folding ++ ++ 1D541; 006A; Additional folding ++ ++ 1D542; 006B; Additional folding ++ ++ 1D543; 006C; Additional folding ++ ++ 1D544; 006D; Additional folding ++ ++ 1D546; 006F; Additional folding ++ ++ 1D54A; 0073; Additional folding ++ ++ 1D54B; 0074; Additional folding ++ ++ 1D54C; 0075; Additional folding ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1D54D; 0076; Additional folding ++ ++ 1D54E; 0077; Additional folding ++ ++ 1D54F; 0078; Additional folding ++ ++ 1D550; 0079; Additional folding ++ ++ 1D56C; 0061; Additional folding ++ ++ 1D56D; 0062; Additional folding ++ ++ 1D56E; 0063; Additional folding ++ ++ 1D56F; 0064; Additional folding ++ ++ 1D570; 0065; Additional folding ++ ++ 1D571; 0066; Additional folding ++ ++ 1D572; 0067; Additional folding ++ ++ 1D573; 0068; Additional folding ++ ++ 1D574; 0069; Additional folding ++ ++ 1D575; 006A; Additional folding ++ ++ 1D576; 006B; Additional folding ++ ++ 1D577; 006C; Additional folding ++ ++ 1D578; 006D; Additional folding ++ ++ 1D579; 006E; Additional folding ++ ++ 1D57A; 006F; Additional folding ++ ++ 1D57B; 0070; Additional folding ++ ++ 1D57C; 0071; Additional folding ++ ++ 1D57D; 0072; Additional folding ++ ++ 1D57E; 0073; Additional folding ++ ++ 1D57F; 0074; Additional folding ++ ++ 1D580; 0075; Additional folding ++ ++ 1D581; 0076; Additional folding ++ ++ 1D582; 0077; Additional folding ++ ++ 1D583; 0078; Additional folding ++ ++ 1D584; 0079; Additional folding ++ ++ 1D585; 007A; Additional folding ++ ++ 1D5A0; 0061; Additional folding ++ ++ 1D5A1; 0062; Additional folding ++ ++ 1D5A2; 0063; Additional folding ++ ++ 1D5A3; 0064; Additional folding ++ ++ 1D5A4; 0065; Additional folding ++ ++ 1D5A5; 0066; Additional folding ++ ++ 1D5A6; 0067; Additional folding ++ ++ 1D5A7; 0068; Additional folding ++ ++ 1D5A8; 0069; Additional folding ++ ++ 1D5A9; 006A; Additional folding ++ ++ 1D5AA; 006B; Additional folding ++ ++ 1D5AB; 006C; Additional folding ++ ++ 1D5AC; 006D; Additional folding ++ ++ 1D5AD; 006E; Additional folding ++ ++ 1D5AE; 006F; Additional folding ++ ++ 1D5AF; 0070; Additional folding ++ ++ 1D5B0; 0071; Additional folding ++ ++ 1D5B1; 0072; Additional folding ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1D5B2; 0073; Additional folding ++ ++ 1D5B3; 0074; Additional folding ++ ++ 1D5B4; 0075; Additional folding ++ ++ 1D5B5; 0076; Additional folding ++ ++ 1D5B6; 0077; Additional folding ++ ++ 1D5B7; 0078; Additional folding ++ ++ 1D5B8; 0079; Additional folding ++ ++ 1D5B9; 007A; Additional folding ++ ++ 1D5D4; 0061; Additional folding ++ ++ 1D5D5; 0062; Additional folding ++ ++ 1D5D6; 0063; Additional folding ++ ++ 1D5D7; 0064; Additional folding ++ ++ 1D5D8; 0065; Additional folding ++ ++ 1D5D9; 0066; Additional folding ++ ++ 1D5DA; 0067; Additional folding ++ ++ 1D5DB; 0068; Additional folding ++ ++ 1D5DC; 0069; Additional folding ++ ++ 1D5DD; 006A; Additional folding ++ ++ 1D5DE; 006B; Additional folding ++ ++ 1D5DF; 006C; Additional folding ++ ++ 1D5E0; 006D; Additional folding ++ ++ 1D5E1; 006E; Additional folding ++ ++ 1D5E2; 006F; Additional folding ++ ++ 1D5E3; 0070; Additional folding ++ ++ 1D5E4; 0071; Additional folding ++ ++ 1D5E5; 0072; Additional folding ++ ++ 1D5E6; 0073; Additional folding ++ ++ 1D5E7; 0074; Additional folding ++ ++ 1D5E8; 0075; Additional folding ++ ++ 1D5E9; 0076; Additional folding ++ ++ 1D5EA; 0077; Additional folding ++ ++ 1D5EB; 0078; Additional folding ++ ++ 1D5EC; 0079; Additional folding ++ ++ 1D5ED; 007A; Additional folding ++ ++ 1D608; 0061; Additional folding ++ ++ 1D609; 0062; Additional folding ++ ++ 1D60A; 0063; Additional folding ++ ++ 1D60B; 0064; Additional folding ++ ++ 1D60C; 0065; Additional folding ++ ++ 1D60D; 0066; Additional folding ++ ++ 1D60E; 0067; Additional folding ++ ++ 1D60F; 0068; Additional folding ++ ++ 1D610; 0069; Additional folding ++ ++ 1D611; 006A; Additional folding ++ ++ 1D612; 006B; Additional folding ++ ++ 1D613; 006C; Additional folding ++ ++ 1D614; 006D; Additional folding ++ ++ 1D615; 006E; Additional folding ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1D616; 006F; Additional folding ++ ++ 1D617; 0070; Additional folding ++ ++ 1D618; 0071; Additional folding ++ ++ 1D619; 0072; Additional folding ++ ++ 1D61A; 0073; Additional folding ++ ++ 1D61B; 0074; Additional folding ++ ++ 1D61C; 0075; Additional folding ++ ++ 1D61D; 0076; Additional folding ++ ++ 1D61E; 0077; Additional folding ++ ++ 1D61F; 0078; Additional folding ++ ++ 1D620; 0079; Additional folding ++ ++ 1D621; 007A; Additional folding ++ ++ 1D63C; 0061; Additional folding ++ ++ 1D63D; 0062; Additional folding ++ ++ 1D63E; 0063; Additional folding ++ ++ 1D63F; 0064; Additional folding ++ ++ 1D640; 0065; Additional folding ++ ++ 1D641; 0066; Additional folding ++ ++ 1D642; 0067; Additional folding ++ ++ 1D643; 0068; Additional folding ++ ++ 1D644; 0069; Additional folding ++ ++ 1D645; 006A; Additional folding ++ ++ 1D646; 006B; Additional folding ++ ++ 1D647; 006C; Additional folding ++ ++ 1D648; 006D; Additional folding ++ ++ 1D649; 006E; Additional folding ++ ++ 1D64A; 006F; Additional folding ++ ++ 1D64B; 0070; Additional folding ++ ++ 1D64C; 0071; Additional folding ++ ++ 1D64D; 0072; Additional folding ++ ++ 1D64E; 0073; Additional folding ++ ++ 1D64F; 0074; Additional folding ++ ++ 1D650; 0075; Additional folding ++ ++ 1D651; 0076; Additional folding ++ ++ 1D652; 0077; Additional folding ++ ++ 1D653; 0078; Additional folding ++ ++ 1D654; 0079; Additional folding ++ ++ 1D655; 007A; Additional folding ++ ++ 1D670; 0061; Additional folding ++ ++ 1D671; 0062; Additional folding ++ ++ 1D672; 0063; Additional folding ++ ++ 1D673; 0064; Additional folding ++ ++ 1D674; 0065; Additional folding ++ ++ 1D675; 0066; Additional folding ++ ++ 1D676; 0067; Additional folding ++ ++ 1D677; 0068; Additional folding ++ ++ 1D678; 0069; Additional folding ++ ++ 1D679; 006A; Additional folding ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1D67A; 006B; Additional folding ++ ++ 1D67B; 006C; Additional folding ++ ++ 1D67C; 006D; Additional folding ++ ++ 1D67D; 006E; Additional folding ++ ++ 1D67E; 006F; Additional folding ++ ++ 1D67F; 0070; Additional folding ++ ++ 1D680; 0071; Additional folding ++ ++ 1D681; 0072; Additional folding ++ ++ 1D682; 0073; Additional folding ++ ++ 1D683; 0074; Additional folding ++ ++ 1D684; 0075; Additional folding ++ ++ 1D685; 0076; Additional folding ++ ++ 1D686; 0077; Additional folding ++ ++ 1D687; 0078; Additional folding ++ ++ 1D688; 0079; Additional folding ++ ++ 1D689; 007A; Additional folding ++ ++ 1D6A8; 03B1; Additional folding ++ ++ 1D6A9; 03B2; Additional folding ++ ++ 1D6AA; 03B3; Additional folding ++ ++ 1D6AB; 03B4; Additional folding ++ ++ 1D6AC; 03B5; Additional folding ++ ++ 1D6AD; 03B6; Additional folding ++ ++ 1D6AE; 03B7; Additional folding ++ ++ 1D6AF; 03B8; Additional folding ++ ++ 1D6B0; 03B9; Additional folding ++ ++ 1D6B1; 03BA; Additional folding ++ ++ 1D6B2; 03BB; Additional folding ++ ++ 1D6B3; 03BC; Additional folding ++ ++ 1D6B4; 03BD; Additional folding ++ ++ 1D6B5; 03BE; Additional folding ++ ++ 1D6B6; 03BF; Additional folding ++ ++ 1D6B7; 03C0; Additional folding ++ ++ 1D6B8; 03C1; Additional folding ++ ++ 1D6B9; 03B8; Additional folding ++ ++ 1D6BA; 03C3; Additional folding ++ ++ 1D6BB; 03C4; Additional folding ++ ++ 1D6BC; 03C5; Additional folding ++ ++ 1D6BD; 03C6; Additional folding ++ ++ 1D6BE; 03C7; Additional folding ++ ++ 1D6BF; 03C8; Additional folding ++ ++ 1D6C0; 03C9; Additional folding ++ ++ 1D6D3; 03C3; Additional folding ++ ++ 1D6E2; 03B1; Additional folding ++ ++ 1D6E3; 03B2; Additional folding ++ ++ 1D6E4; 03B3; Additional folding ++ ++ 1D6E5; 03B4; Additional folding ++ ++ 1D6E6; 03B5; Additional folding ++ ++ 1D6E7; 03B6; Additional folding ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1D6E8; 03B7; Additional folding ++ ++ 1D6E9; 03B8; Additional folding ++ ++ 1D6EA; 03B9; Additional folding ++ ++ 1D6EB; 03BA; Additional folding ++ ++ 1D6EC; 03BB; Additional folding ++ ++ 1D6ED; 03BC; Additional folding ++ ++ 1D6EE; 03BD; Additional folding ++ ++ 1D6EF; 03BE; Additional folding ++ ++ 1D6F0; 03BF; Additional folding ++ ++ 1D6F1; 03C0; Additional folding ++ ++ 1D6F2; 03C1; Additional folding ++ ++ 1D6F3; 03B8; Additional folding ++ ++ 1D6F4; 03C3; Additional folding ++ ++ 1D6F5; 03C4; Additional folding ++ ++ 1D6F6; 03C5; Additional folding ++ ++ 1D6F7; 03C6; Additional folding ++ ++ 1D6F8; 03C7; Additional folding ++ ++ 1D6F9; 03C8; Additional folding ++ ++ 1D6FA; 03C9; Additional folding ++ ++ 1D70D; 03C3; Additional folding ++ ++ 1D71C; 03B1; Additional folding ++ ++ 1D71D; 03B2; Additional folding ++ ++ 1D71E; 03B3; Additional folding ++ ++ 1D71F; 03B4; Additional folding ++ ++ 1D720; 03B5; Additional folding ++ ++ 1D721; 03B6; Additional folding ++ ++ 1D722; 03B7; Additional folding ++ ++ 1D723; 03B8; Additional folding ++ ++ 1D724; 03B9; Additional folding ++ ++ 1D725; 03BA; Additional folding ++ ++ 1D726; 03BB; Additional folding ++ ++ 1D727; 03BC; Additional folding ++ ++ 1D728; 03BD; Additional folding ++ ++ 1D729; 03BE; Additional folding ++ ++ 1D72A; 03BF; Additional folding ++ ++ 1D72B; 03C0; Additional folding ++ ++ 1D72C; 03C1; Additional folding ++ ++ 1D72D; 03B8; Additional folding ++ ++ 1D72E; 03C3; Additional folding ++ ++ 1D72F; 03C4; Additional folding ++ ++ 1D730; 03C5; Additional folding ++ ++ 1D731; 03C6; Additional folding ++ ++ 1D732; 03C7; Additional folding ++ ++ 1D733; 03C8; Additional folding ++ ++ 1D734; 03C9; Additional folding ++ ++ 1D747; 03C3; Additional folding ++ ++ 1D756; 03B1; Additional folding ++ ++ 1D757; 03B2; Additional folding ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1D758; 03B3; Additional folding ++ ++ 1D759; 03B4; Additional folding ++ ++ 1D75A; 03B5; Additional folding ++ ++ 1D75B; 03B6; Additional folding ++ ++ 1D75C; 03B7; Additional folding ++ ++ 1D75D; 03B8; Additional folding ++ ++ 1D75E; 03B9; Additional folding ++ ++ 1D75F; 03BA; Additional folding ++ ++ 1D760; 03BB; Additional folding ++ ++ 1D761; 03BC; Additional folding ++ ++ 1D762; 03BD; Additional folding ++ ++ 1D763; 03BE; Additional folding ++ ++ 1D764; 03BF; Additional folding ++ ++ 1D765; 03C0; Additional folding ++ ++ 1D766; 03C1; Additional folding ++ ++ 1D767; 03B8; Additional folding ++ ++ 1D768; 03C3; Additional folding ++ ++ 1D769; 03C4; Additional folding ++ ++ 1D76A; 03C5; Additional folding ++ ++ 1D76B; 03C6; Additional folding ++ ++ 1D76C; 03C7; Additional folding ++ ++ 1D76D; 03C8; Additional folding ++ ++ 1D76E; 03C9; Additional folding ++ ++ 1D781; 03C3; Additional folding ++ ++ 1D790; 03B1; Additional folding ++ ++ 1D791; 03B2; Additional folding ++ ++ 1D792; 03B3; Additional folding ++ ++ 1D793; 03B4; Additional folding ++ ++ 1D794; 03B5; Additional folding ++ ++ 1D795; 03B6; Additional folding ++ ++ 1D796; 03B7; Additional folding ++ ++ 1D797; 03B8; Additional folding ++ ++ 1D798; 03B9; Additional folding ++ ++ 1D799; 03BA; Additional folding ++ ++ 1D79A; 03BB; Additional folding ++ ++ 1D79B; 03BC; Additional folding ++ ++ 1D79C; 03BD; Additional folding ++ ++ 1D79D; 03BE; Additional folding ++ ++ 1D79E; 03BF; Additional folding ++ ++ 1D79F; 03C0; Additional folding ++ ++ 1D7A0; 03C1; Additional folding ++ ++ 1D7A1; 03B8; Additional folding ++ ++ 1D7A2; 03C3; Additional folding ++ ++ 1D7A3; 03C4; Additional folding ++ ++ 1D7A4; 03C5; Additional folding ++ ++ 1D7A5; 03C6; Additional folding ++ ++ 1D7A6; 03C7; Additional folding ++ ++ 1D7A7; 03C8; Additional folding ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1D7A8; 03C9; Additional folding ++ ++ 1D7BB; 03C3; Additional folding ++ ++ ----- End Table B.2 ----- ++ ++ ----- Start Table B.3 ----- ++ ++ 0041; 0061; Case map ++ ++ 0042; 0062; Case map ++ ++ 0043; 0063; Case map ++ ++ 0044; 0064; Case map ++ ++ 0045; 0065; Case map ++ ++ 0046; 0066; Case map ++ ++ 0047; 0067; Case map ++ ++ 0048; 0068; Case map ++ ++ 0049; 0069; Case map ++ ++ 004A; 006A; Case map ++ ++ 004B; 006B; Case map ++ ++ 004C; 006C; Case map ++ ++ 004D; 006D; Case map ++ ++ 004E; 006E; Case map ++ ++ 004F; 006F; Case map ++ ++ 0050; 0070; Case map ++ ++ 0051; 0071; Case map ++ ++ 0052; 0072; Case map ++ ++ 0053; 0073; Case map ++ ++ 0054; 0074; Case map ++ ++ 0055; 0075; Case map ++ ++ 0056; 0076; Case map ++ ++ 0057; 0077; Case map ++ ++ 0058; 0078; Case map ++ ++ 0059; 0079; Case map ++ ++ 005A; 007A; Case map ++ ++ 00B5; 03BC; Case map ++ ++ 00C0; 00E0; Case map ++ ++ 00C1; 00E1; Case map ++ ++ 00C2; 00E2; Case map ++ ++ 00C3; 00E3; Case map ++ ++ 00C4; 00E4; Case map ++ ++ 00C5; 00E5; Case map ++ ++ 00C6; 00E6; Case map ++ ++ 00C7; 00E7; Case map ++ ++ 00C8; 00E8; Case map ++ ++ 00C9; 00E9; Case map ++ ++ 00CA; 00EA; Case map ++ ++ 00CB; 00EB; Case map ++ ++ 00CC; 00EC; Case map ++ ++ 00CD; 00ED; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 00CE; 00EE; Case map ++ ++ 00CF; 00EF; Case map ++ ++ 00D0; 00F0; Case map ++ ++ 00D1; 00F1; Case map ++ ++ 00D2; 00F2; Case map ++ ++ 00D3; 00F3; Case map ++ ++ 00D4; 00F4; Case map ++ ++ 00D5; 00F5; Case map ++ ++ 00D6; 00F6; Case map ++ ++ 00D8; 00F8; Case map ++ ++ 00D9; 00F9; Case map ++ ++ 00DA; 00FA; Case map ++ ++ 00DB; 00FB; Case map ++ ++ 00DC; 00FC; Case map ++ ++ 00DD; 00FD; Case map ++ ++ 00DE; 00FE; Case map ++ ++ 00DF; 0073 0073; Case map ++ ++ 0100; 0101; Case map ++ ++ 0102; 0103; Case map ++ ++ 0104; 0105; Case map ++ ++ 0106; 0107; Case map ++ ++ 0108; 0109; Case map ++ ++ 010A; 010B; Case map ++ ++ 010C; 010D; Case map ++ ++ 010E; 010F; Case map ++ ++ 0110; 0111; Case map ++ ++ 0112; 0113; Case map ++ ++ 0114; 0115; Case map ++ ++ 0116; 0117; Case map ++ ++ 0118; 0119; Case map ++ ++ 011A; 011B; Case map ++ ++ 011C; 011D; Case map ++ ++ 011E; 011F; Case map ++ ++ 0120; 0121; Case map ++ ++ 0122; 0123; Case map ++ ++ 0124; 0125; Case map ++ ++ 0126; 0127; Case map ++ ++ 0128; 0129; Case map ++ ++ 012A; 012B; Case map ++ ++ 012C; 012D; Case map ++ ++ 012E; 012F; Case map ++ ++ 0130; 0069 0307; Case map ++ ++ 0132; 0133; Case map ++ ++ 0134; 0135; Case map ++ ++ 0136; 0137; Case map ++ ++ 0139; 013A; Case map ++ ++ 013B; 013C; Case map ++ ++ 013D; 013E; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 013F; 0140; Case map ++ ++ 0141; 0142; Case map ++ ++ 0143; 0144; Case map ++ ++ 0145; 0146; Case map ++ ++ 0147; 0148; Case map ++ ++ 0149; 02BC 006E; Case map ++ ++ 014A; 014B; Case map ++ ++ 014C; 014D; Case map ++ ++ 014E; 014F; Case map ++ ++ 0150; 0151; Case map ++ ++ 0152; 0153; Case map ++ ++ 0154; 0155; Case map ++ ++ 0156; 0157; Case map ++ ++ 0158; 0159; Case map ++ ++ 015A; 015B; Case map ++ ++ 015C; 015D; Case map ++ ++ 015E; 015F; Case map ++ ++ 0160; 0161; Case map ++ ++ 0162; 0163; Case map ++ ++ 0164; 0165; Case map ++ ++ 0166; 0167; Case map ++ ++ 0168; 0169; Case map ++ ++ 016A; 016B; Case map ++ ++ 016C; 016D; Case map ++ ++ 016E; 016F; Case map ++ ++ 0170; 0171; Case map ++ ++ 0172; 0173; Case map ++ ++ 0174; 0175; Case map ++ ++ 0176; 0177; Case map ++ ++ 0178; 00FF; Case map ++ ++ 0179; 017A; Case map ++ ++ 017B; 017C; Case map ++ ++ 017D; 017E; Case map ++ ++ 017F; 0073; Case map ++ ++ 0181; 0253; Case map ++ ++ 0182; 0183; Case map ++ ++ 0184; 0185; Case map ++ ++ 0186; 0254; Case map ++ ++ 0187; 0188; Case map ++ ++ 0189; 0256; Case map ++ ++ 018A; 0257; Case map ++ ++ 018B; 018C; Case map ++ ++ 018E; 01DD; Case map ++ ++ 018F; 0259; Case map ++ ++ 0190; 025B; Case map ++ ++ 0191; 0192; Case map ++ ++ 0193; 0260; Case map ++ ++ 0194; 0263; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 0196; 0269; Case map ++ ++ 0197; 0268; Case map ++ ++ 0198; 0199; Case map ++ ++ 019C; 026F; Case map ++ ++ 019D; 0272; Case map ++ ++ 019F; 0275; Case map ++ ++ 01A0; 01A1; Case map ++ ++ 01A2; 01A3; Case map ++ ++ 01A4; 01A5; Case map ++ ++ 01A6; 0280; Case map ++ ++ 01A7; 01A8; Case map ++ ++ 01A9; 0283; Case map ++ ++ 01AC; 01AD; Case map ++ ++ 01AE; 0288; Case map ++ ++ 01AF; 01B0; Case map ++ ++ 01B1; 028A; Case map ++ ++ 01B2; 028B; Case map ++ ++ 01B3; 01B4; Case map ++ ++ 01B5; 01B6; Case map ++ ++ 01B7; 0292; Case map ++ ++ 01B8; 01B9; Case map ++ ++ 01BC; 01BD; Case map ++ ++ 01C4; 01C6; Case map ++ ++ 01C5; 01C6; Case map ++ ++ 01C7; 01C9; Case map ++ ++ 01C8; 01C9; Case map ++ ++ 01CA; 01CC; Case map ++ ++ 01CB; 01CC; Case map ++ ++ 01CD; 01CE; Case map ++ ++ 01CF; 01D0; Case map ++ ++ 01D1; 01D2; Case map ++ ++ 01D3; 01D4; Case map ++ ++ 01D5; 01D6; Case map ++ ++ 01D7; 01D8; Case map ++ ++ 01D9; 01DA; Case map ++ ++ 01DB; 01DC; Case map ++ ++ 01DE; 01DF; Case map ++ ++ 01E0; 01E1; Case map ++ ++ 01E2; 01E3; Case map ++ ++ 01E4; 01E5; Case map ++ ++ 01E6; 01E7; Case map ++ ++ 01E8; 01E9; Case map ++ ++ 01EA; 01EB; Case map ++ ++ 01EC; 01ED; Case map ++ ++ 01EE; 01EF; Case map ++ ++ 01F0; 006A 030C; Case map ++ ++ 01F1; 01F3; Case map ++ ++ 01F2; 01F3; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 01F4; 01F5; Case map ++ ++ 01F6; 0195; Case map ++ ++ 01F7; 01BF; Case map ++ ++ 01F8; 01F9; Case map ++ ++ 01FA; 01FB; Case map ++ ++ 01FC; 01FD; Case map ++ ++ 01FE; 01FF; Case map ++ ++ 0200; 0201; Case map ++ ++ 0202; 0203; Case map ++ ++ 0204; 0205; Case map ++ ++ 0206; 0207; Case map ++ ++ 0208; 0209; Case map ++ ++ 020A; 020B; Case map ++ ++ 020C; 020D; Case map ++ ++ 020E; 020F; Case map ++ ++ 0210; 0211; Case map ++ ++ 0212; 0213; Case map ++ ++ 0214; 0215; Case map ++ ++ 0216; 0217; Case map ++ ++ 0218; 0219; Case map ++ ++ 021A; 021B; Case map ++ ++ 021C; 021D; Case map ++ ++ 021E; 021F; Case map ++ ++ 0220; 019E; Case map ++ ++ 0222; 0223; Case map ++ ++ 0224; 0225; Case map ++ ++ 0226; 0227; Case map ++ ++ 0228; 0229; Case map ++ ++ 022A; 022B; Case map ++ ++ 022C; 022D; Case map ++ ++ 022E; 022F; Case map ++ ++ 0230; 0231; Case map ++ ++ 0232; 0233; Case map ++ ++ 0345; 03B9; Case map ++ ++ 0386; 03AC; Case map ++ ++ 0388; 03AD; Case map ++ ++ 0389; 03AE; Case map ++ ++ 038A; 03AF; Case map ++ ++ 038C; 03CC; Case map ++ ++ 038E; 03CD; Case map ++ ++ 038F; 03CE; Case map ++ ++ 0390; 03B9 0308 0301; Case map ++ ++ 0391; 03B1; Case map ++ ++ 0392; 03B2; Case map ++ ++ 0393; 03B3; Case map ++ ++ 0394; 03B4; Case map ++ ++ 0395; 03B5; Case map ++ ++ 0396; 03B6; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 0397; 03B7; Case map ++ ++ 0398; 03B8; Case map ++ ++ 0399; 03B9; Case map ++ ++ 039A; 03BA; Case map ++ ++ 039B; 03BB; Case map ++ ++ 039C; 03BC; Case map ++ ++ 039D; 03BD; Case map ++ ++ 039E; 03BE; Case map ++ ++ 039F; 03BF; Case map ++ ++ 03A0; 03C0; Case map ++ ++ 03A1; 03C1; Case map ++ ++ 03A3; 03C3; Case map ++ ++ 03A4; 03C4; Case map ++ ++ 03A5; 03C5; Case map ++ ++ 03A6; 03C6; Case map ++ ++ 03A7; 03C7; Case map ++ ++ 03A8; 03C8; Case map ++ ++ 03A9; 03C9; Case map ++ ++ 03AA; 03CA; Case map ++ ++ 03AB; 03CB; Case map ++ ++ 03B0; 03C5 0308 0301; Case map ++ ++ 03C2; 03C3; Case map ++ ++ 03D0; 03B2; Case map ++ ++ 03D1; 03B8; Case map ++ ++ 03D5; 03C6; Case map ++ ++ 03D6; 03C0; Case map ++ ++ 03D8; 03D9; Case map ++ ++ 03DA; 03DB; Case map ++ ++ 03DC; 03DD; Case map ++ ++ 03DE; 03DF; Case map ++ ++ 03E0; 03E1; Case map ++ ++ 03E2; 03E3; Case map ++ ++ 03E4; 03E5; Case map ++ ++ 03E6; 03E7; Case map ++ ++ 03E8; 03E9; Case map ++ ++ 03EA; 03EB; Case map ++ ++ 03EC; 03ED; Case map ++ ++ 03EE; 03EF; Case map ++ ++ 03F0; 03BA; Case map ++ ++ 03F1; 03C1; Case map ++ ++ 03F2; 03C3; Case map ++ ++ 03F4; 03B8; Case map ++ ++ 03F5; 03B5; Case map ++ ++ 0400; 0450; Case map ++ ++ 0401; 0451; Case map ++ ++ 0402; 0452; Case map ++ ++ 0403; 0453; Case map ++ ++ 0404; 0454; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 0405; 0455; Case map ++ ++ 0406; 0456; Case map ++ ++ 0407; 0457; Case map ++ ++ 0408; 0458; Case map ++ ++ 0409; 0459; Case map ++ ++ 040A; 045A; Case map ++ ++ 040B; 045B; Case map ++ ++ 040C; 045C; Case map ++ ++ 040D; 045D; Case map ++ ++ 040E; 045E; Case map ++ ++ 040F; 045F; Case map ++ ++ 0410; 0430; Case map ++ ++ 0411; 0431; Case map ++ ++ 0412; 0432; Case map ++ ++ 0413; 0433; Case map ++ ++ 0414; 0434; Case map ++ ++ 0415; 0435; Case map ++ ++ 0416; 0436; Case map ++ ++ 0417; 0437; Case map ++ ++ 0418; 0438; Case map ++ ++ 0419; 0439; Case map ++ ++ 041A; 043A; Case map ++ ++ 041B; 043B; Case map ++ ++ 041C; 043C; Case map ++ ++ 041D; 043D; Case map ++ ++ 041E; 043E; Case map ++ ++ 041F; 043F; Case map ++ ++ 0420; 0440; Case map ++ ++ 0421; 0441; Case map ++ ++ 0422; 0442; Case map ++ ++ 0423; 0443; Case map ++ ++ 0424; 0444; Case map ++ ++ 0425; 0445; Case map ++ ++ 0426; 0446; Case map ++ ++ 0427; 0447; Case map ++ ++ 0428; 0448; Case map ++ ++ 0429; 0449; Case map ++ ++ 042A; 044A; Case map ++ ++ 042B; 044B; Case map ++ ++ 042C; 044C; Case map ++ ++ 042D; 044D; Case map ++ ++ 042E; 044E; Case map ++ ++ 042F; 044F; Case map ++ ++ 0460; 0461; Case map ++ ++ 0462; 0463; Case map ++ ++ 0464; 0465; Case map ++ ++ 0466; 0467; Case map ++ ++ 0468; 0469; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 046A; 046B; Case map ++ ++ 046C; 046D; Case map ++ ++ 046E; 046F; Case map ++ ++ 0470; 0471; Case map ++ ++ 0472; 0473; Case map ++ ++ 0474; 0475; Case map ++ ++ 0476; 0477; Case map ++ ++ 0478; 0479; Case map ++ ++ 047A; 047B; Case map ++ ++ 047C; 047D; Case map ++ ++ 047E; 047F; Case map ++ ++ 0480; 0481; Case map ++ ++ 048A; 048B; Case map ++ ++ 048C; 048D; Case map ++ ++ 048E; 048F; Case map ++ ++ 0490; 0491; Case map ++ ++ 0492; 0493; Case map ++ ++ 0494; 0495; Case map ++ ++ 0496; 0497; Case map ++ ++ 0498; 0499; Case map ++ ++ 049A; 049B; Case map ++ ++ 049C; 049D; Case map ++ ++ 049E; 049F; Case map ++ ++ 04A0; 04A1; Case map ++ ++ 04A2; 04A3; Case map ++ ++ 04A4; 04A5; Case map ++ ++ 04A6; 04A7; Case map ++ ++ 04A8; 04A9; Case map ++ ++ 04AA; 04AB; Case map ++ ++ 04AC; 04AD; Case map ++ ++ 04AE; 04AF; Case map ++ ++ 04B0; 04B1; Case map ++ ++ 04B2; 04B3; Case map ++ ++ 04B4; 04B5; Case map ++ ++ 04B6; 04B7; Case map ++ ++ 04B8; 04B9; Case map ++ ++ 04BA; 04BB; Case map ++ ++ 04BC; 04BD; Case map ++ ++ 04BE; 04BF; Case map ++ ++ 04C1; 04C2; Case map ++ ++ 04C3; 04C4; Case map ++ ++ 04C5; 04C6; Case map ++ ++ 04C7; 04C8; Case map ++ ++ 04C9; 04CA; Case map ++ ++ 04CB; 04CC; Case map ++ ++ 04CD; 04CE; Case map ++ ++ 04D0; 04D1; Case map ++ ++ 04D2; 04D3; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 04D4; 04D5; Case map ++ ++ 04D6; 04D7; Case map ++ ++ 04D8; 04D9; Case map ++ ++ 04DA; 04DB; Case map ++ ++ 04DC; 04DD; Case map ++ ++ 04DE; 04DF; Case map ++ ++ 04E0; 04E1; Case map ++ ++ 04E2; 04E3; Case map ++ ++ 04E4; 04E5; Case map ++ ++ 04E6; 04E7; Case map ++ ++ 04E8; 04E9; Case map ++ ++ 04EA; 04EB; Case map ++ ++ 04EC; 04ED; Case map ++ ++ 04EE; 04EF; Case map ++ ++ 04F0; 04F1; Case map ++ ++ 04F2; 04F3; Case map ++ ++ 04F4; 04F5; Case map ++ ++ 04F8; 04F9; Case map ++ ++ 0500; 0501; Case map ++ ++ 0502; 0503; Case map ++ ++ 0504; 0505; Case map ++ ++ 0506; 0507; Case map ++ ++ 0508; 0509; Case map ++ ++ 050A; 050B; Case map ++ ++ 050C; 050D; Case map ++ ++ 050E; 050F; Case map ++ ++ 0531; 0561; Case map ++ ++ 0532; 0562; Case map ++ ++ 0533; 0563; Case map ++ ++ 0534; 0564; Case map ++ ++ 0535; 0565; Case map ++ ++ 0536; 0566; Case map ++ ++ 0537; 0567; Case map ++ ++ 0538; 0568; Case map ++ ++ 0539; 0569; Case map ++ ++ 053A; 056A; Case map ++ ++ 053B; 056B; Case map ++ ++ 053C; 056C; Case map ++ ++ 053D; 056D; Case map ++ ++ 053E; 056E; Case map ++ ++ 053F; 056F; Case map ++ ++ 0540; 0570; Case map ++ ++ 0541; 0571; Case map ++ ++ 0542; 0572; Case map ++ ++ 0543; 0573; Case map ++ ++ 0544; 0574; Case map ++ ++ 0545; 0575; Case map ++ ++ 0546; 0576; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 0547; 0577; Case map ++ ++ 0548; 0578; Case map ++ ++ 0549; 0579; Case map ++ ++ 054A; 057A; Case map ++ ++ 054B; 057B; Case map ++ ++ 054C; 057C; Case map ++ ++ 054D; 057D; Case map ++ ++ 054E; 057E; Case map ++ ++ 054F; 057F; Case map ++ ++ 0550; 0580; Case map ++ ++ 0551; 0581; Case map ++ ++ 0552; 0582; Case map ++ ++ 0553; 0583; Case map ++ ++ 0554; 0584; Case map ++ ++ 0555; 0585; Case map ++ ++ 0556; 0586; Case map ++ ++ 0587; 0565 0582; Case map ++ ++ 1E00; 1E01; Case map ++ ++ 1E02; 1E03; Case map ++ ++ 1E04; 1E05; Case map ++ ++ 1E06; 1E07; Case map ++ ++ 1E08; 1E09; Case map ++ ++ 1E0A; 1E0B; Case map ++ ++ 1E0C; 1E0D; Case map ++ ++ 1E0E; 1E0F; Case map ++ ++ 1E10; 1E11; Case map ++ ++ 1E12; 1E13; Case map ++ ++ 1E14; 1E15; Case map ++ ++ 1E16; 1E17; Case map ++ ++ 1E18; 1E19; Case map ++ ++ 1E1A; 1E1B; Case map ++ ++ 1E1C; 1E1D; Case map ++ ++ 1E1E; 1E1F; Case map ++ ++ 1E20; 1E21; Case map ++ ++ 1E22; 1E23; Case map ++ ++ 1E24; 1E25; Case map ++ ++ 1E26; 1E27; Case map ++ ++ 1E28; 1E29; Case map ++ ++ 1E2A; 1E2B; Case map ++ ++ 1E2C; 1E2D; Case map ++ ++ 1E2E; 1E2F; Case map ++ ++ 1E30; 1E31; Case map ++ ++ 1E32; 1E33; Case map ++ ++ 1E34; 1E35; Case map ++ ++ 1E36; 1E37; Case map ++ ++ 1E38; 1E39; Case map ++ ++ 1E3A; 1E3B; Case map ++ ++ 1E3C; 1E3D; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1E3E; 1E3F; Case map ++ ++ 1E40; 1E41; Case map ++ ++ 1E42; 1E43; Case map ++ ++ 1E44; 1E45; Case map ++ ++ 1E46; 1E47; Case map ++ ++ 1E48; 1E49; Case map ++ ++ 1E4A; 1E4B; Case map ++ ++ 1E4C; 1E4D; Case map ++ ++ 1E4E; 1E4F; Case map ++ ++ 1E50; 1E51; Case map ++ ++ 1E52; 1E53; Case map ++ ++ 1E54; 1E55; Case map ++ ++ 1E56; 1E57; Case map ++ ++ 1E58; 1E59; Case map ++ ++ 1E5A; 1E5B; Case map ++ ++ 1E5C; 1E5D; Case map ++ ++ 1E5E; 1E5F; Case map ++ ++ 1E60; 1E61; Case map ++ ++ 1E62; 1E63; Case map ++ ++ 1E64; 1E65; Case map ++ ++ 1E66; 1E67; Case map ++ ++ 1E68; 1E69; Case map ++ ++ 1E6A; 1E6B; Case map ++ ++ 1E6C; 1E6D; Case map ++ ++ 1E6E; 1E6F; Case map ++ ++ 1E70; 1E71; Case map ++ ++ 1E72; 1E73; Case map ++ ++ 1E74; 1E75; Case map ++ ++ 1E76; 1E77; Case map ++ ++ 1E78; 1E79; Case map ++ ++ 1E7A; 1E7B; Case map ++ ++ 1E7C; 1E7D; Case map ++ ++ 1E7E; 1E7F; Case map ++ ++ 1E80; 1E81; Case map ++ ++ 1E82; 1E83; Case map ++ ++ 1E84; 1E85; Case map ++ ++ 1E86; 1E87; Case map ++ ++ 1E88; 1E89; Case map ++ ++ 1E8A; 1E8B; Case map ++ ++ 1E8C; 1E8D; Case map ++ ++ 1E8E; 1E8F; Case map ++ ++ 1E90; 1E91; Case map ++ ++ 1E92; 1E93; Case map ++ ++ 1E94; 1E95; Case map ++ ++ 1E96; 0068 0331; Case map ++ ++ 1E97; 0074 0308; Case map ++ ++ 1E98; 0077 030A; Case map ++ ++ 1E99; 0079 030A; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1E9A; 0061 02BE; Case map ++ ++ 1E9B; 1E61; Case map ++ ++ 1EA0; 1EA1; Case map ++ ++ 1EA2; 1EA3; Case map ++ ++ 1EA4; 1EA5; Case map ++ ++ 1EA6; 1EA7; Case map ++ ++ 1EA8; 1EA9; Case map ++ ++ 1EAA; 1EAB; Case map ++ ++ 1EAC; 1EAD; Case map ++ ++ 1EAE; 1EAF; Case map ++ ++ 1EB0; 1EB1; Case map ++ ++ 1EB2; 1EB3; Case map ++ ++ 1EB4; 1EB5; Case map ++ ++ 1EB6; 1EB7; Case map ++ ++ 1EB8; 1EB9; Case map ++ ++ 1EBA; 1EBB; Case map ++ ++ 1EBC; 1EBD; Case map ++ ++ 1EBE; 1EBF; Case map ++ ++ 1EC0; 1EC1; Case map ++ ++ 1EC2; 1EC3; Case map ++ ++ 1EC4; 1EC5; Case map ++ ++ 1EC6; 1EC7; Case map ++ ++ 1EC8; 1EC9; Case map ++ ++ 1ECA; 1ECB; Case map ++ ++ 1ECC; 1ECD; Case map ++ ++ 1ECE; 1ECF; Case map ++ ++ 1ED0; 1ED1; Case map ++ ++ 1ED2; 1ED3; Case map ++ ++ 1ED4; 1ED5; Case map ++ ++ 1ED6; 1ED7; Case map ++ ++ 1ED8; 1ED9; Case map ++ ++ 1EDA; 1EDB; Case map ++ ++ 1EDC; 1EDD; Case map ++ ++ 1EDE; 1EDF; Case map ++ ++ 1EE0; 1EE1; Case map ++ ++ 1EE2; 1EE3; Case map ++ ++ 1EE4; 1EE5; Case map ++ ++ 1EE6; 1EE7; Case map ++ ++ 1EE8; 1EE9; Case map ++ ++ 1EEA; 1EEB; Case map ++ ++ 1EEC; 1EED; Case map ++ ++ 1EEE; 1EEF; Case map ++ ++ 1EF0; 1EF1; Case map ++ ++ 1EF2; 1EF3; Case map ++ ++ 1EF4; 1EF5; Case map ++ ++ 1EF6; 1EF7; Case map ++ ++ 1EF8; 1EF9; Case map ++ ++ 1F08; 1F00; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1F09; 1F01; Case map ++ ++ 1F0A; 1F02; Case map ++ ++ 1F0B; 1F03; Case map ++ ++ 1F0C; 1F04; Case map ++ ++ 1F0D; 1F05; Case map ++ ++ 1F0E; 1F06; Case map ++ ++ 1F0F; 1F07; Case map ++ ++ 1F18; 1F10; Case map ++ ++ 1F19; 1F11; Case map ++ ++ 1F1A; 1F12; Case map ++ ++ 1F1B; 1F13; Case map ++ ++ 1F1C; 1F14; Case map ++ ++ 1F1D; 1F15; Case map ++ ++ 1F28; 1F20; Case map ++ ++ 1F29; 1F21; Case map ++ ++ 1F2A; 1F22; Case map ++ ++ 1F2B; 1F23; Case map ++ ++ 1F2C; 1F24; Case map ++ ++ 1F2D; 1F25; Case map ++ ++ 1F2E; 1F26; Case map ++ ++ 1F2F; 1F27; Case map ++ ++ 1F38; 1F30; Case map ++ ++ 1F39; 1F31; Case map ++ ++ 1F3A; 1F32; Case map ++ ++ 1F3B; 1F33; Case map ++ ++ 1F3C; 1F34; Case map ++ ++ 1F3D; 1F35; Case map ++ ++ 1F3E; 1F36; Case map ++ ++ 1F3F; 1F37; Case map ++ ++ 1F48; 1F40; Case map ++ ++ 1F49; 1F41; Case map ++ ++ 1F4A; 1F42; Case map ++ ++ 1F4B; 1F43; Case map ++ ++ 1F4C; 1F44; Case map ++ ++ 1F4D; 1F45; Case map ++ ++ 1F50; 03C5 0313; Case map ++ ++ 1F52; 03C5 0313 0300; Case map ++ ++ 1F54; 03C5 0313 0301; Case map ++ ++ 1F56; 03C5 0313 0342; Case map ++ ++ 1F59; 1F51; Case map ++ ++ 1F5B; 1F53; Case map ++ ++ 1F5D; 1F55; Case map ++ ++ 1F5F; 1F57; Case map ++ ++ 1F68; 1F60; Case map ++ ++ 1F69; 1F61; Case map ++ ++ 1F6A; 1F62; Case map ++ ++ 1F6B; 1F63; Case map ++ ++ 1F6C; 1F64; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1F6D; 1F65; Case map ++ ++ 1F6E; 1F66; Case map ++ ++ 1F6F; 1F67; Case map ++ ++ 1F80; 1F00 03B9; Case map ++ ++ 1F81; 1F01 03B9; Case map ++ ++ 1F82; 1F02 03B9; Case map ++ ++ 1F83; 1F03 03B9; Case map ++ ++ 1F84; 1F04 03B9; Case map ++ ++ 1F85; 1F05 03B9; Case map ++ ++ 1F86; 1F06 03B9; Case map ++ ++ 1F87; 1F07 03B9; Case map ++ ++ 1F88; 1F00 03B9; Case map ++ ++ 1F89; 1F01 03B9; Case map ++ ++ 1F8A; 1F02 03B9; Case map ++ ++ 1F8B; 1F03 03B9; Case map ++ ++ 1F8C; 1F04 03B9; Case map ++ ++ 1F8D; 1F05 03B9; Case map ++ ++ 1F8E; 1F06 03B9; Case map ++ ++ 1F8F; 1F07 03B9; Case map ++ ++ 1F90; 1F20 03B9; Case map ++ ++ 1F91; 1F21 03B9; Case map ++ ++ 1F92; 1F22 03B9; Case map ++ ++ 1F93; 1F23 03B9; Case map ++ ++ 1F94; 1F24 03B9; Case map ++ ++ 1F95; 1F25 03B9; Case map ++ ++ 1F96; 1F26 03B9; Case map ++ ++ 1F97; 1F27 03B9; Case map ++ ++ 1F98; 1F20 03B9; Case map ++ ++ 1F99; 1F21 03B9; Case map ++ ++ 1F9A; 1F22 03B9; Case map ++ ++ 1F9B; 1F23 03B9; Case map ++ ++ 1F9C; 1F24 03B9; Case map ++ ++ 1F9D; 1F25 03B9; Case map ++ ++ 1F9E; 1F26 03B9; Case map ++ ++ 1F9F; 1F27 03B9; Case map ++ ++ 1FA0; 1F60 03B9; Case map ++ ++ 1FA1; 1F61 03B9; Case map ++ ++ 1FA2; 1F62 03B9; Case map ++ ++ 1FA3; 1F63 03B9; Case map ++ ++ 1FA4; 1F64 03B9; Case map ++ ++ 1FA5; 1F65 03B9; Case map ++ ++ 1FA6; 1F66 03B9; Case map ++ ++ 1FA7; 1F67 03B9; Case map ++ ++ 1FA8; 1F60 03B9; Case map ++ ++ 1FA9; 1F61 03B9; Case map ++ ++ 1FAA; 1F62 03B9; Case map ++ ++ 1FAB; 1F63 03B9; Case map ++ ++ 1FAC; 1F64 03B9; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1FAD; 1F65 03B9; Case map ++ ++ 1FAE; 1F66 03B9; Case map ++ ++ 1FAF; 1F67 03B9; Case map ++ ++ 1FB2; 1F70 03B9; Case map ++ ++ 1FB3; 03B1 03B9; Case map ++ ++ 1FB4; 03AC 03B9; Case map ++ ++ 1FB6; 03B1 0342; Case map ++ ++ 1FB7; 03B1 0342 03B9; Case map ++ ++ 1FB8; 1FB0; Case map ++ ++ 1FB9; 1FB1; Case map ++ ++ 1FBA; 1F70; Case map ++ ++ 1FBB; 1F71; Case map ++ ++ 1FBC; 03B1 03B9; Case map ++ ++ 1FBE; 03B9; Case map ++ ++ 1FC2; 1F74 03B9; Case map ++ ++ 1FC3; 03B7 03B9; Case map ++ ++ 1FC4; 03AE 03B9; Case map ++ ++ 1FC6; 03B7 0342; Case map ++ ++ 1FC7; 03B7 0342 03B9; Case map ++ ++ 1FC8; 1F72; Case map ++ ++ 1FC9; 1F73; Case map ++ ++ 1FCA; 1F74; Case map ++ ++ 1FCB; 1F75; Case map ++ ++ 1FCC; 03B7 03B9; Case map ++ ++ 1FD2; 03B9 0308 0300; Case map ++ ++ 1FD3; 03B9 0308 0301; Case map ++ ++ 1FD6; 03B9 0342; Case map ++ ++ 1FD7; 03B9 0308 0342; Case map ++ ++ 1FD8; 1FD0; Case map ++ ++ 1FD9; 1FD1; Case map ++ ++ 1FDA; 1F76; Case map ++ ++ 1FDB; 1F77; Case map ++ ++ 1FE2; 03C5 0308 0300; Case map ++ ++ 1FE3; 03C5 0308 0301; Case map ++ ++ 1FE4; 03C1 0313; Case map ++ ++ 1FE6; 03C5 0342; Case map ++ ++ 1FE7; 03C5 0308 0342; Case map ++ ++ 1FE8; 1FE0; Case map ++ ++ 1FE9; 1FE1; Case map ++ ++ 1FEA; 1F7A; Case map ++ ++ 1FEB; 1F7B; Case map ++ ++ 1FEC; 1FE5; Case map ++ ++ 1FF2; 1F7C 03B9; Case map ++ ++ 1FF3; 03C9 03B9; Case map ++ ++ 1FF4; 03CE 03B9; Case map ++ ++ 1FF6; 03C9 0342; Case map ++ ++ 1FF7; 03C9 0342 03B9; Case map ++ ++ 1FF8; 1F78; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1FF9; 1F79; Case map ++ ++ 1FFA; 1F7C; Case map ++ ++ 1FFB; 1F7D; Case map ++ ++ 1FFC; 03C9 03B9; Case map ++ ++ 2126; 03C9; Case map ++ ++ 212A; 006B; Case map ++ ++ 212B; 00E5; Case map ++ ++ 2160; 2170; Case map ++ ++ 2161; 2171; Case map ++ ++ 2162; 2172; Case map ++ ++ 2163; 2173; Case map ++ ++ 2164; 2174; Case map ++ ++ 2165; 2175; Case map ++ ++ 2166; 2176; Case map ++ ++ 2167; 2177; Case map ++ ++ 2168; 2178; Case map ++ ++ 2169; 2179; Case map ++ ++ 216A; 217A; Case map ++ ++ 216B; 217B; Case map ++ ++ 216C; 217C; Case map ++ ++ 216D; 217D; Case map ++ ++ 216E; 217E; Case map ++ ++ 216F; 217F; Case map ++ ++ 24B6; 24D0; Case map ++ ++ 24B7; 24D1; Case map ++ ++ 24B8; 24D2; Case map ++ ++ 24B9; 24D3; Case map ++ ++ 24BA; 24D4; Case map ++ ++ 24BB; 24D5; Case map ++ ++ 24BC; 24D6; Case map ++ ++ 24BD; 24D7; Case map ++ ++ 24BE; 24D8; Case map ++ ++ 24BF; 24D9; Case map ++ ++ 24C0; 24DA; Case map ++ ++ 24C1; 24DB; Case map ++ ++ 24C2; 24DC; Case map ++ ++ 24C3; 24DD; Case map ++ ++ 24C4; 24DE; Case map ++ ++ 24C5; 24DF; Case map ++ ++ 24C6; 24E0; Case map ++ ++ 24C7; 24E1; Case map ++ ++ 24C8; 24E2; Case map ++ ++ 24C9; 24E3; Case map ++ ++ 24CA; 24E4; Case map ++ ++ 24CB; 24E5; Case map ++ ++ 24CC; 24E6; Case map ++ ++ 24CD; 24E7; Case map ++ ++ 24CE; 24E8; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 24CF; 24E9; Case map ++ ++ FB00; 0066 0066; Case map ++ ++ FB01; 0066 0069; Case map ++ ++ FB02; 0066 006C; Case map ++ ++ FB03; 0066 0066 0069; Case map ++ ++ FB04; 0066 0066 006C; Case map ++ ++ FB05; 0073 0074; Case map ++ ++ FB06; 0073 0074; Case map ++ ++ FB13; 0574 0576; Case map ++ ++ FB14; 0574 0565; Case map ++ ++ FB15; 0574 056B; Case map ++ ++ FB16; 057E 0576; Case map ++ ++ FB17; 0574 056D; Case map ++ ++ FF21; FF41; Case map ++ ++ FF22; FF42; Case map ++ ++ FF23; FF43; Case map ++ ++ FF24; FF44; Case map ++ ++ FF25; FF45; Case map ++ ++ FF26; FF46; Case map ++ ++ FF27; FF47; Case map ++ ++ FF28; FF48; Case map ++ ++ FF29; FF49; Case map ++ ++ FF2A; FF4A; Case map ++ ++ FF2B; FF4B; Case map ++ ++ FF2C; FF4C; Case map ++ ++ FF2D; FF4D; Case map ++ ++ FF2E; FF4E; Case map ++ ++ FF2F; FF4F; Case map ++ ++ FF30; FF50; Case map ++ ++ FF31; FF51; Case map ++ ++ FF32; FF52; Case map ++ ++ FF33; FF53; Case map ++ ++ FF34; FF54; Case map ++ ++ FF35; FF55; Case map ++ ++ FF36; FF56; Case map ++ ++ FF37; FF57; Case map ++ ++ FF38; FF58; Case map ++ ++ FF39; FF59; Case map ++ ++ FF3A; FF5A; Case map ++ ++ 10400; 10428; Case map ++ ++ 10401; 10429; Case map ++ ++ 10402; 1042A; Case map ++ ++ 10403; 1042B; Case map ++ ++ 10404; 1042C; Case map ++ ++ 10405; 1042D; Case map ++ ++ 10406; 1042E; Case map ++ ++ 10407; 1042F; Case map ++ ++ 10408; 10430; Case map ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 10409; 10431; Case map ++ ++ 1040A; 10432; Case map ++ ++ 1040B; 10433; Case map ++ ++ 1040C; 10434; Case map ++ ++ 1040D; 10435; Case map ++ ++ 1040E; 10436; Case map ++ ++ 1040F; 10437; Case map ++ ++ 10410; 10438; Case map ++ ++ 10411; 10439; Case map ++ ++ 10412; 1043A; Case map ++ ++ 10413; 1043B; Case map ++ ++ 10414; 1043C; Case map ++ ++ 10415; 1043D; Case map ++ ++ 10416; 1043E; Case map ++ ++ 10417; 1043F; Case map ++ ++ 10418; 10440; Case map ++ ++ 10419; 10441; Case map ++ ++ 1041A; 10442; Case map ++ ++ 1041B; 10443; Case map ++ ++ 1041C; 10444; Case map ++ ++ 1041D; 10445; Case map ++ ++ 1041E; 10446; Case map ++ ++ 1041F; 10447; Case map ++ ++ 10420; 10448; Case map ++ ++ 10421; 10449; Case map ++ ++ 10422; 1044A; Case map ++ ++ 10423; 1044B; Case map ++ ++ 10424; 1044C; Case map ++ ++ 10425; 1044D; Case map ++ ++ ----- End Table B.3 ----- ++ ++ ----- Start Table C.1.1 ----- ++ ++ 0020; SPACE ++ ++ ----- End Table C.1.1 ----- ++ ++ ----- Start Table C.1.2 ----- ++ ++ 00A0; NO-BREAK SPACE ++ ++ 1680; OGHAM SPACE MARK ++ ++ 2000; EN QUAD ++ ++ 2001; EM QUAD ++ ++ 2002; EN SPACE ++ ++ 2003; EM SPACE ++ ++ 2004; THREE-PER-EM SPACE ++ ++ 2005; FOUR-PER-EM SPACE ++ ++ 2006; SIX-PER-EM SPACE ++ ++ 2007; FIGURE SPACE ++ ++ 2008; PUNCTUATION SPACE ++ ++ 2009; THIN SPACE ++ ++ 200A; HAIR SPACE ++ ++ 200B; ZERO WIDTH SPACE ++ ++ 202F; NARROW NO-BREAK SPACE ++ ++ 205F; MEDIUM MATHEMATICAL SPACE ++ ++ 3000; IDEOGRAPHIC SPACE ++ ++ ----- End Table C.1.2 ----- ++ ++ ----- Start Table C.2.1 ----- ++ ++ 0000-001F; [CONTROL CHARACTERS] ++ ++ 007F; DELETE ++ ++ ----- End Table C.2.1 ----- ++ ++ ----- Start Table C.2.2 ----- ++ ++ 0080-009F; [CONTROL CHARACTERS] ++ ++ 06DD; ARABIC END OF AYAH ++ ++ 070F; SYRIAC ABBREVIATION MARK ++ ++ 180E; MONGOLIAN VOWEL SEPARATOR ++ ++ 200C; ZERO WIDTH NON-JOINER ++ ++ 200D; ZERO WIDTH JOINER ++ ++ 2028; LINE SEPARATOR ++ ++ 2029; PARAGRAPH SEPARATOR ++ ++ 2060; WORD JOINER ++ ++ 2061; FUNCTION APPLICATION ++ ++ 2062; INVISIBLE TIMES ++ ++ 2063; INVISIBLE SEPARATOR ++ ++ 206A-206F; [CONTROL CHARACTERS] ++ ++ FEFF; ZERO WIDTH NO-BREAK SPACE ++ ++ FFF9-FFFC; [CONTROL CHARACTERS] ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1D173-1D17A; [MUSICAL CONTROL CHARACTERS] ++ ++ ----- End Table C.2.2 ----- ++ ++ ----- Start Table C.3 ----- ++ ++ E000-F8FF; [PRIVATE USE, PLANE 0] ++ ++ F0000-FFFFD; [PRIVATE USE, PLANE 15] ++ ++ 100000-10FFFD; [PRIVATE USE, PLANE 16] ++ ++ ----- End Table C.3 ----- ++ ++ ----- Start Table C.4 ----- ++ ++ FDD0-FDEF; [NONCHARACTER CODE POINTS] ++ ++ FFFE-FFFF; [NONCHARACTER CODE POINTS] ++ ++ 1FFFE-1FFFF; [NONCHARACTER CODE POINTS] ++ ++ 2FFFE-2FFFF; [NONCHARACTER CODE POINTS] ++ ++ 3FFFE-3FFFF; [NONCHARACTER CODE POINTS] ++ ++ 4FFFE-4FFFF; [NONCHARACTER CODE POINTS] ++ ++ 5FFFE-5FFFF; [NONCHARACTER CODE POINTS] ++ ++ 6FFFE-6FFFF; [NONCHARACTER CODE POINTS] ++ ++ 7FFFE-7FFFF; [NONCHARACTER CODE POINTS] ++ ++ 8FFFE-8FFFF; [NONCHARACTER CODE POINTS] ++ ++ 9FFFE-9FFFF; [NONCHARACTER CODE POINTS] ++ ++ AFFFE-AFFFF; [NONCHARACTER CODE POINTS] ++ ++ BFFFE-BFFFF; [NONCHARACTER CODE POINTS] ++ ++ CFFFE-CFFFF; [NONCHARACTER CODE POINTS] ++ ++ DFFFE-DFFFF; [NONCHARACTER CODE POINTS] ++ ++ EFFFE-EFFFF; [NONCHARACTER CODE POINTS] ++ ++ FFFFE-FFFFF; [NONCHARACTER CODE POINTS] ++ ++ 10FFFE-10FFFF; [NONCHARACTER CODE POINTS] ++ ++ ----- End Table C.4 ----- ++ ++ ----- Start Table C.5 ----- ++ ++ D800-DFFF; [SURROGATE CODES] ++ ++ ----- End Table C.5 ----- ++ ++ ----- Start Table C.6 ----- ++ ++ FFF9; INTERLINEAR ANNOTATION ANCHOR ++ ++ FFFA; INTERLINEAR ANNOTATION SEPARATOR ++ ++ FFFB; INTERLINEAR ANNOTATION TERMINATOR ++ ++ FFFC; OBJECT REPLACEMENT CHARACTER ++ ++ FFFD; REPLACEMENT CHARACTER ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ----- End Table C.6 ----- ++ ++ ----- Start Table C.7 ----- ++ ++ 2FF0-2FFB; [IDEOGRAPHIC DESCRIPTION CHARACTERS] ++ ++ ----- End Table C.7 ----- ++ ++ ----- Start Table C.8 ----- ++ ++ 0340; COMBINING GRAVE TONE MARK ++ ++ 0341; COMBINING ACUTE TONE MARK ++ ++ 200E; LEFT-TO-RIGHT MARK ++ ++ 200F; RIGHT-TO-LEFT MARK ++ ++ 202A; LEFT-TO-RIGHT EMBEDDING ++ ++ 202B; RIGHT-TO-LEFT EMBEDDING ++ ++ 202C; POP DIRECTIONAL FORMATTING ++ ++ 202D; LEFT-TO-RIGHT OVERRIDE ++ ++ 202E; RIGHT-TO-LEFT OVERRIDE ++ ++ 206A; INHIBIT SYMMETRIC SWAPPING ++ ++ 206B; ACTIVATE SYMMETRIC SWAPPING ++ ++ 206C; INHIBIT ARABIC FORM SHAPING ++ ++ 206D; ACTIVATE ARABIC FORM SHAPING ++ ++ 206E; NATIONAL DIGIT SHAPES ++ ++ 206F; NOMINAL DIGIT SHAPES ++ ++ ----- End Table C.8 ----- ++ ++ ----- Start Table C.9 ----- ++ ++ E0001; LANGUAGE TAG ++ ++ E0020-E007F; [TAGGING CHARACTERS] ++ ++ ----- End Table C.9 ----- ++ ++ ----- Start Table D.1 ----- ++ ++ 05BE ++ ++ 05C0 ++ ++ 05C3 ++ ++ 05D0-05EA ++ ++ 05F0-05F4 ++ ++ 061B ++ ++ 061F ++ ++ 0621-063A ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 0640-064A ++ ++ 066D-066F ++ ++ 0671-06D5 ++ ++ 06DD ++ ++ 06E5-06E6 ++ ++ 06FA-06FE ++ ++ 0700-070D ++ ++ 0710 ++ ++ 0712-072C ++ ++ 0780-07A5 ++ ++ 07B1 ++ ++ 200F ++ ++ FB1D ++ ++ FB1F-FB28 ++ ++ FB2A-FB36 ++ ++ FB38-FB3C ++ ++ FB3E ++ ++ FB40-FB41 ++ ++ FB43-FB44 ++ ++ FB46-FBB1 ++ ++ FBD3-FD3D ++ ++ FD50-FD8F ++ ++ FD92-FDC7 ++ ++ FDF0-FDFC ++ ++ FE70-FE74 ++ ++ FE76-FEFC ++ ++ ----- End Table D.1 ----- ++ ++ ----- Start Table D.2 ----- ++ ++ 0041-005A ++ ++ 0061-007A ++ ++ 00AA ++ ++ 00B5 ++ ++ 00BA ++ ++ 00C0-00D6 ++ ++ 00D8-00F6 ++ ++ 00F8-0220 ++ ++ 0222-0233 ++ ++ 0250-02AD ++ ++ 02B0-02B8 ++ ++ 02BB-02C1 ++ ++ 02D0-02D1 ++ ++ 02E0-02E4 ++ ++ 02EE ++ ++ 037A ++ ++ 0386 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 0388-038A ++ ++ 038C ++ ++ 038E-03A1 ++ ++ 03A3-03CE ++ ++ 03D0-03F5 ++ ++ 0400-0482 ++ ++ 048A-04CE ++ ++ 04D0-04F5 ++ ++ 04F8-04F9 ++ ++ 0500-050F ++ ++ 0531-0556 ++ ++ 0559-055F ++ ++ 0561-0587 ++ ++ 0589 ++ ++ 0903 ++ ++ 0905-0939 ++ ++ 093D-0940 ++ ++ 0949-094C ++ ++ 0950 ++ ++ 0958-0961 ++ ++ 0964-0970 ++ ++ 0982-0983 ++ ++ 0985-098C ++ ++ 098F-0990 ++ ++ 0993-09A8 ++ ++ 09AA-09B0 ++ ++ 09B2 ++ ++ 09B6-09B9 ++ ++ 09BE-09C0 ++ ++ 09C7-09C8 ++ ++ 09CB-09CC ++ ++ 09D7 ++ ++ 09DC-09DD ++ ++ 09DF-09E1 ++ ++ 09E6-09F1 ++ ++ 09F4-09FA ++ ++ 0A05-0A0A ++ ++ 0A0F-0A10 ++ ++ 0A13-0A28 ++ ++ 0A2A-0A30 ++ ++ 0A32-0A33 ++ ++ 0A35-0A36 ++ ++ 0A38-0A39 ++ ++ 0A3E-0A40 ++ ++ 0A59-0A5C ++ ++ 0A5E ++ ++ 0A66-0A6F ++ ++ 0A72-0A74 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 0A83 ++ ++ 0A85-0A8B ++ ++ 0A8D ++ ++ 0A8F-0A91 ++ ++ 0A93-0AA8 ++ ++ 0AAA-0AB0 ++ ++ 0AB2-0AB3 ++ ++ 0AB5-0AB9 ++ ++ 0ABD-0AC0 ++ ++ 0AC9 ++ ++ 0ACB-0ACC ++ ++ 0AD0 ++ ++ 0AE0 ++ ++ 0AE6-0AEF ++ ++ 0B02-0B03 ++ ++ 0B05-0B0C ++ ++ 0B0F-0B10 ++ ++ 0B13-0B28 ++ ++ 0B2A-0B30 ++ ++ 0B32-0B33 ++ ++ 0B36-0B39 ++ ++ 0B3D-0B3E ++ ++ 0B40 ++ ++ 0B47-0B48 ++ ++ 0B4B-0B4C ++ ++ 0B57 ++ ++ 0B5C-0B5D ++ ++ 0B5F-0B61 ++ ++ 0B66-0B70 ++ ++ 0B83 ++ ++ 0B85-0B8A ++ ++ 0B8E-0B90 ++ ++ 0B92-0B95 ++ ++ 0B99-0B9A ++ ++ 0B9C ++ ++ 0B9E-0B9F ++ ++ 0BA3-0BA4 ++ ++ 0BA8-0BAA ++ ++ 0BAE-0BB5 ++ ++ 0BB7-0BB9 ++ ++ 0BBE-0BBF ++ ++ 0BC1-0BC2 ++ ++ 0BC6-0BC8 ++ ++ 0BCA-0BCC ++ ++ 0BD7 ++ ++ 0BE7-0BF2 ++ ++ 0C01-0C03 ++ ++ 0C05-0C0C ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 0C0E-0C10 ++ ++ 0C12-0C28 ++ ++ 0C2A-0C33 ++ ++ 0C35-0C39 ++ ++ 0C41-0C44 ++ ++ 0C60-0C61 ++ ++ 0C66-0C6F ++ ++ 0C82-0C83 ++ ++ 0C85-0C8C ++ ++ 0C8E-0C90 ++ ++ 0C92-0CA8 ++ ++ 0CAA-0CB3 ++ ++ 0CB5-0CB9 ++ ++ 0CBE ++ ++ 0CC0-0CC4 ++ ++ 0CC7-0CC8 ++ ++ 0CCA-0CCB ++ ++ 0CD5-0CD6 ++ ++ 0CDE ++ ++ 0CE0-0CE1 ++ ++ 0CE6-0CEF ++ ++ 0D02-0D03 ++ ++ 0D05-0D0C ++ ++ 0D0E-0D10 ++ ++ 0D12-0D28 ++ ++ 0D2A-0D39 ++ ++ 0D3E-0D40 ++ ++ 0D46-0D48 ++ ++ 0D4A-0D4C ++ ++ 0D57 ++ ++ 0D60-0D61 ++ ++ 0D66-0D6F ++ ++ 0D82-0D83 ++ ++ 0D85-0D96 ++ ++ 0D9A-0DB1 ++ ++ 0DB3-0DBB ++ ++ 0DBD ++ ++ 0DC0-0DC6 ++ ++ 0DCF-0DD1 ++ ++ 0DD8-0DDF ++ ++ 0DF2-0DF4 ++ ++ 0E01-0E30 ++ ++ 0E32-0E33 ++ ++ 0E40-0E46 ++ ++ 0E4F-0E5B ++ ++ 0E81-0E82 ++ ++ 0E84 ++ ++ 0E87-0E88 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 0E8A ++ ++ 0E8D ++ ++ 0E94-0E97 ++ ++ 0E99-0E9F ++ ++ 0EA1-0EA3 ++ ++ 0EA5 ++ ++ 0EA7 ++ ++ 0EAA-0EAB ++ ++ 0EAD-0EB0 ++ ++ 0EB2-0EB3 ++ ++ 0EBD ++ ++ 0EC0-0EC4 ++ ++ 0EC6 ++ ++ 0ED0-0ED9 ++ ++ 0EDC-0EDD ++ ++ 0F00-0F17 ++ ++ 0F1A-0F34 ++ ++ 0F36 ++ ++ 0F38 ++ ++ 0F3E-0F47 ++ ++ 0F49-0F6A ++ ++ 0F7F ++ ++ 0F85 ++ ++ 0F88-0F8B ++ ++ 0FBE-0FC5 ++ ++ 0FC7-0FCC ++ ++ 0FCF ++ ++ 1000-1021 ++ ++ 1023-1027 ++ ++ 1029-102A ++ ++ 102C ++ ++ 1031 ++ ++ 1038 ++ ++ 1040-1057 ++ ++ 10A0-10C5 ++ ++ 10D0-10F8 ++ ++ 10FB ++ ++ 1100-1159 ++ ++ 115F-11A2 ++ ++ 11A8-11F9 ++ ++ 1200-1206 ++ ++ 1208-1246 ++ ++ 1248 ++ ++ 124A-124D ++ ++ 1250-1256 ++ ++ 1258 ++ ++ 125A-125D ++ ++ 1260-1286 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1288 ++ ++ 128A-128D ++ ++ 1290-12AE ++ ++ 12B0 ++ ++ 12B2-12B5 ++ ++ 12B8-12BE ++ ++ 12C0 ++ ++ 12C2-12C5 ++ ++ 12C8-12CE ++ ++ 12D0-12D6 ++ ++ 12D8-12EE ++ ++ 12F0-130E ++ ++ 1310 ++ ++ 1312-1315 ++ ++ 1318-131E ++ ++ 1320-1346 ++ ++ 1348-135A ++ ++ 1361-137C ++ ++ 13A0-13F4 ++ ++ 1401-1676 ++ ++ 1681-169A ++ ++ 16A0-16F0 ++ ++ 1700-170C ++ ++ 170E-1711 ++ ++ 1720-1731 ++ ++ 1735-1736 ++ ++ 1740-1751 ++ ++ 1760-176C ++ ++ 176E-1770 ++ ++ 1780-17B6 ++ ++ 17BE-17C5 ++ ++ 17C7-17C8 ++ ++ 17D4-17DA ++ ++ 17DC ++ ++ 17E0-17E9 ++ ++ 1810-1819 ++ ++ 1820-1877 ++ ++ 1880-18A8 ++ ++ 1E00-1E9B ++ ++ 1EA0-1EF9 ++ ++ 1F00-1F15 ++ ++ 1F18-1F1D ++ ++ 1F20-1F45 ++ ++ 1F48-1F4D ++ ++ 1F50-1F57 ++ ++ 1F59 ++ ++ 1F5B ++ ++ 1F5D ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1F5F-1F7D ++ ++ 1F80-1FB4 ++ ++ 1FB6-1FBC ++ ++ 1FBE ++ ++ 1FC2-1FC4 ++ ++ 1FC6-1FCC ++ ++ 1FD0-1FD3 ++ ++ 1FD6-1FDB ++ ++ 1FE0-1FEC ++ ++ 1FF2-1FF4 ++ ++ 1FF6-1FFC ++ ++ 200E ++ ++ 2071 ++ ++ 207F ++ ++ 2102 ++ ++ 2107 ++ ++ 210A-2113 ++ ++ 2115 ++ ++ 2119-211D ++ ++ 2124 ++ ++ 2126 ++ ++ 2128 ++ ++ 212A-212D ++ ++ 212F-2131 ++ ++ 2133-2139 ++ ++ 213D-213F ++ ++ 2145-2149 ++ ++ 2160-2183 ++ ++ 2336-237A ++ ++ 2395 ++ ++ 249C-24E9 ++ ++ 3005-3007 ++ ++ 3021-3029 ++ ++ 3031-3035 ++ ++ 3038-303C ++ ++ 3041-3096 ++ ++ 309D-309F ++ ++ 30A1-30FA ++ ++ 30FC-30FF ++ ++ 3105-312C ++ ++ 3131-318E ++ ++ 3190-31B7 ++ ++ 31F0-321C ++ ++ 3220-3243 ++ ++ 3260-327B ++ ++ 327F-32B0 ++ ++ 32C0-32CB ++ ++ 32D0-32FE ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 3300-3376 ++ ++ 337B-33DD ++ ++ 33E0-33FE ++ ++ 3400-4DB5 ++ ++ 4E00-9FA5 ++ ++ A000-A48C ++ ++ AC00-D7A3 ++ ++ D800-FA2D ++ ++ FA30-FA6A ++ ++ FB00-FB06 ++ ++ FB13-FB17 ++ ++ FF21-FF3A ++ ++ FF41-FF5A ++ ++ FF66-FFBE ++ ++ FFC2-FFC7 ++ ++ FFCA-FFCF ++ ++ FFD2-FFD7 ++ ++ FFDA-FFDC ++ ++ 10300-1031E ++ ++ 10320-10323 ++ ++ 10330-1034A ++ ++ 10400-10425 ++ ++ 10428-1044D ++ ++ 1D000-1D0F5 ++ ++ 1D100-1D126 ++ ++ 1D12A-1D166 ++ ++ 1D16A-1D172 ++ ++ 1D183-1D184 ++ ++ 1D18C-1D1A9 ++ ++ 1D1AE-1D1DD ++ ++ 1D400-1D454 ++ ++ 1D456-1D49C ++ ++ 1D49E-1D49F ++ ++ 1D4A2 ++ ++ 1D4A5-1D4A6 ++ ++ 1D4A9-1D4AC ++ ++ 1D4AE-1D4B9 ++ ++ 1D4BB ++ ++ 1D4BD-1D4C0 ++ ++ 1D4C2-1D4C3 ++ ++ 1D4C5-1D505 ++ ++ 1D507-1D50A ++ ++ 1D50D-1D514 ++ ++ 1D516-1D51C ++ ++ 1D51E-1D539 ++ ++ 1D53B-1D53E ++ ++ 1D540-1D544 ++ ++ 1D546 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 1D54A-1D550 ++ ++ 1D552-1D6A3 ++ ++ 1D6A8-1D7C9 ++ ++ 20000-2A6D6 ++ ++ 2F800-2FA1D ++ ++ F0000-FFFFD ++ ++ 100000-10FFFD ++ ++ ----- End Table D.2 ----- ++ +diff --git a/third_party/heimdal_build/wscript_build b/third_party/heimdal_build/wscript_build +index 2072be4..c93bdb8 100644 +--- a/third_party/heimdal_build/wscript_build ++++ b/third_party/heimdal_build/wscript_build +@@ -842,7 +842,7 @@ if not bld.CONFIG_SET('USING_SYSTEM_WIND'): + HEIMDAL_GENERATOR( + name="HEIMDAL_ERRORLIST", + rule="${PYTHON} '${SRC[0].abspath()}' '${SRC[1].abspath()}' '${SRC[1].parent.abspath(env)}'", +- source = '../heimdal/lib/wind/gen-errorlist.py ../heimdal/lib/wind/rfc3454.txt ../heimdal/lib/wind/stringprep.py', ++ source = '../heimdal/lib/wind/gen-errorlist.py ../heimdal/lib/wind/rfc3454.txt-table ../heimdal/lib/wind/stringprep.py', + target = '../heimdal/lib/wind/errorlist_table.c ../heimdal/lib/wind/errorlist_table.h' + ) + +@@ -864,7 +864,7 @@ if not bld.CONFIG_SET('USING_SYSTEM_WIND'): + HEIMDAL_GENERATOR( + name = 'HEIMDAL_BIDI_TABLE', + rule="${PYTHON} '${SRC[0].abspath()}' '${SRC[1].abspath()}' '${SRC[1].parent.abspath(env)}'", +- source = '../heimdal/lib/wind/gen-bidi.py ../heimdal/lib/wind/rfc3454.txt', ++ source = '../heimdal/lib/wind/gen-bidi.py ../heimdal/lib/wind/rfc3454.txt-table', + target = '../heimdal/lib/wind/bidi_table.h ../heimdal/lib/wind/bidi_table.c' + ) + +@@ -872,7 +872,7 @@ if not bld.CONFIG_SET('USING_SYSTEM_WIND'): + HEIMDAL_GENERATOR( + name = 'HEIMDAL_MAP_TABLE', + rule="${PYTHON} '${SRC[0].abspath()}' '${SRC[2].abspath()}' '${SRC[2].parent.abspath(env)}'", +- source = '../heimdal/lib/wind/gen-map.py ../heimdal/lib/wind/stringprep.py ../heimdal/lib/wind/rfc3454.txt', ++ source = '../heimdal/lib/wind/gen-map.py ../heimdal/lib/wind/stringprep.py ../heimdal/lib/wind/rfc3454.txt-table', + target = '../heimdal/lib/wind/map_table.h ../heimdal/lib/wind/map_table.c' + ) + diff --git a/debian/patches/heimdal-to-support-KEYRING-ccache.patch b/debian/patches/heimdal-to-support-KEYRING-ccache.patch new file mode 100644 index 0000000..48bc94c --- /dev/null +++ b/debian/patches/heimdal-to-support-KEYRING-ccache.patch @@ -0,0 +1,60 @@ +From d76344ee0cefcf8adb42928537ba031dd585f797 Mon Sep 17 00:00:00 2001 +From: Åukasz Stelmach <l.stelmach@samsung.com> +Date: Mon, 3 Apr 2023 10:07:30 +0200 +Subject: Configure builtin heimdal to support KEYRING ccache +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit +Organization: Samsung R&D Institute Poland + +Signed-off-by: Åukasz Stelmach <l.stelmach@samsung.com> +--- + third_party/heimdal_build/wscript_build | 8 ++++++-- + third_party/heimdal_build/wscript_configure | 2 ++ + 2 files changed, 8 insertions(+), 2 deletions(-) + +diff --git a/third_party/heimdal_build/wscript_build b/third_party/heimdal_build/wscript_build +index 1518afe9ef4..8aea52b55f5 100644 +--- a/third_party/heimdal_build/wscript_build ++++ b/third_party/heimdal_build/wscript_build +@@ -710,7 +710,7 @@ if not bld.CONFIG_SET("USING_SYSTEM_KRB5"): + get_port.c init_creds.c init_creds_pw.c + kcm.c keyblock.c keytab.c keytab_any.c + keytab_file.c keytab_memory.c +- keytab_keyfile.c krbhst.c log.c ++ keytab_keyfile.c krbhst.c krcache.c log.c + mcache.c misc.c mk_error.c mk_priv.c + mk_rep.c mk_req.c mk_req_ext.c + mit_glue.c net_read.c net_write.c n-fold.c padata.c pkinit.c pkinit-ec.c +@@ -726,10 +726,14 @@ if not bld.CONFIG_SET("USING_SYSTEM_KRB5"): + mk_cred.c kx509_err.c + k524_err.c krb_err.c k5e1_err.c''')] + ["../heimdal_build/krb5-glue.c"] + ++ krb5_keyutils_dep = '' ++ if bld.CONFIG_SET('HAVE_KEYCTL_GET_PERSISTENT'): ++ krb5_keyutils_dep = ' keyutils' ++ + HEIMDAL_LIBRARY('krb5', KRB5_SOURCE, + version_script='lib/krb5/version-script.map', + includes='../heimdal/lib/krb5 ../heimdal/lib/asn1 ../heimdal/include', +- deps='roken wind asn1 hx509 HEIMDAL_KX509_ASN1 hcrypto com_err HEIMDAL_CONFIG heimbase execinfo samba_intl HEIMDAL_IPC_CLIENT KRB5_CRYPTO', ++ deps='roken wind asn1 hx509 HEIMDAL_KX509_ASN1 hcrypto com_err HEIMDAL_CONFIG heimbase execinfo samba_intl HEIMDAL_IPC_CLIENT KRB5_CRYPTO' + krb5_keyutils_dep, + cflags=['-DLOCALSTATEDIR="/2"'] + bld.dynconfig_cflags(), + ) + KRB5_PROTO_SOURCE = KRB5_SOURCE + ['lib/krb5/expand_path.c', 'lib/krb5/plugin.c', 'lib/krb5/context.c', 'lib/krb5/crypto.c'] +diff --git a/third_party/heimdal_build/wscript_configure b/third_party/heimdal_build/wscript_configure +index a97a1b9baa8..36ba02d25ad 100644 +--- a/third_party/heimdal_build/wscript_configure ++++ b/third_party/heimdal_build/wscript_configure +@@ -65,6 +65,8 @@ conf.DEFINE('HAVE_KRB5',1) + conf.CHECK_FUNCS('dirfd', headers='dirent.h') + conf.CHECK_DECLS('dirfd', reverse=True, headers='dirent.h') + conf.CHECK_STRUCTURE_MEMBER('DIR', 'dd_fd', define='HAVE_DIR_DD_FD', headers='dirent.h') ++conf.CHECK_FUNCS_IN('add_key keyctl_get_persistent', 'keyutils', headers='keyutils.h') ++conf.CHECK_SIZEOF('key_serial_t', headers='keyutils.h') + + heimdal_no_error_flags = ['-Wno-error=discarded-qualifiers', + '-Wno-error=cast-qual', +-- +2.30.2 + diff --git a/debian/patches/hurd-compat.patch b/debian/patches/hurd-compat.patch new file mode 100644 index 0000000..5657fdf --- /dev/null +++ b/debian/patches/hurd-compat.patch @@ -0,0 +1,43 @@ +Subject: hurd compatibility changes +From: Michael Tokarev <mjt@tls.msk.ru> +Date: Thu, 03 Nov 2022 20:49:33 +0300 + +Hurd does not define PIPE_BUF, so lib/tevent/testsuite.c fails to compile +(yes, this file is used as part of *samba* testsuite, not tevent testsuite). +Define it to a safe minimal value like 512 bytes. + +Hurd does not provide SA_NOCLDWAIT define, so lib/util/tests/tfork.c does +not compile. This is only needed during testing to omit zombie process +generation, which has only cosmetic effect. Define it to be 0. + +Based on prior work and ideas by Samuel Thibault. + +diff --git a/lib/tevent/testsuite.c b/lib/tevent/testsuite.c +index 8894e445203..27f873cd484 100644 +--- a/lib/tevent/testsuite.c ++++ b/lib/tevent/testsuite.c +@@ -36,6 +36,10 @@ + #include "system/threads.h" + #include <assert.h> + #endif ++#include <limits.h> ++#ifndef PIPE_BUF /* eg hurd does not define it */ ++# define PIPE_BUF 512 /* a safe bet */ ++#endif + + static int fde_count; + +diff --git a/lib/util/tests/tfork.c b/lib/util/tests/tfork.c +index 70ae97583fc..0dc8e1688d3 100644 +--- a/lib/util/tests/tfork.c ++++ b/lib/util/tests/tfork.c +@@ -33,6 +33,9 @@ + #ifdef HAVE_PTHREAD + #include <pthread.h> + #endif ++#ifndef SA_NOCLDWAIT ++#define SA_NOCLDWAIT 0 ++#endif + + static bool test_tfork_simple(struct torture_context *tctx) + { diff --git a/debian/patches/libsmbclient-ensure-lfs-221618.patch b/debian/patches/libsmbclient-ensure-lfs-221618.patch new file mode 100644 index 0000000..11f8521 --- /dev/null +++ b/debian/patches/libsmbclient-ensure-lfs-221618.patch @@ -0,0 +1,50 @@ +Subject: ensure libsmbclient.h is being used with LFS enabled +From: Michael Tokarev <mjt@tls.msk.ru> +Date: Sat, 02 Apr 2022 19:01:55 +0300 +Bug-Debian: https://bugs.debian.org/221618 + +We build samba with LFS (Large File Support) even on 32bits. +This means some types like off_t are 64-bit wide, again, +even on a 32bit host. libsmbclient.h uses off_t in function +prototypes, and thes prototypes muct match those which were +used at samba compile time - if some other source includes +libsmbclient.h without LFS, it'll get wrong prototypes and +the resulting binary will most likely crash when using +libsmbclient functions. + +Detect and error-out this at compile time. + +We can not do anything with this in the public header since +it is alredy too late to redefine things, since we can't +guarantee we're the first header a program #includes, and +at the time this libsmbclient.h is included, off_t can +already be defined so our (re)define of _FILE_OFFSET_BITS +does nothing already. + +Patching libsmbclient.h to use off64_t means client program +should change their off_t to off64_t too when storing +file offsets returning from libsmbclient, so this is not +an option too. + +With this change, we will error out even if the user source +does not use any off_t-related functions. Namely, it was ok +to #include <libsmbclient.h> and use smbc_open/smbc_read/ +smbc_write/smbc_close without _F_O_B=64, - neither of these +functions uses off_t. smbc_lseek and others doesn't work, +but if a program does not use them anyway, whole thing will +just work even without enabling LFS. Ideally we can probably +check each individual function which is being affected, by +replacing it with #error if sizeof(off_t) < 8. But this +requires quite some hackery... + +diff --git a/source3/include/libsmbclient.h b/source3/include/libsmbclient.h +index 84c98089251..1a6ea599cfa 100644 +--- a/source3/include/libsmbclient.h ++++ b/source3/include/libsmbclient.h +@@ -82,4 +82,6 @@ extern "C" { + #include <utime.h> + ++typedef int smbc_off_t_should_be_at_least_64bits_use_LFS_CFLAGS[sizeof(off_t)-7]; ++ + #define SMBC_BASE_FD 10000 /* smallest file descriptor returned */ + diff --git a/debian/patches/meaningful-error-if-no-python3-markdown.patch b/debian/patches/meaningful-error-if-no-python3-markdown.patch new file mode 100644 index 0000000..2b21c5d --- /dev/null +++ b/debian/patches/meaningful-error-if-no-python3-markdown.patch @@ -0,0 +1,27 @@ +From 545162e59916b3bd712d2e8e52063278cf2bb7ca Mon Sep 17 00:00:00 2001 +From: Michael Tokarev <mjt@tls.msk.ru> +Date: Fri, 2 Dec 2022 11:08:27 +0300 +Subject: print meaningful error message if python3-markdown is not installed + +--- + python/samba/netcmd/domain.py | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/python/samba/netcmd/domain.py b/python/samba/netcmd/domain.py +index 2a548ed1ad4..cfbd602dce8 100644 +--- a/python/samba/netcmd/domain.py ++++ b/python/samba/netcmd/domain.py +@@ -4133,8 +4133,8 @@ class cmd_domain_schema_upgrade(Command): + try: + from samba.ms_schema_markdown import read_ms_markdown + except ImportError as e: +- self.outf.write("Exception in importing markdown: %s" % e) +- raise CommandError('Failed to import module markdown') ++ self.outf.write("Exception in importing markdown: %s\n" % e) ++ raise CommandError('Failed to import module markdown, please install python3-markdown package') + from samba.schema import Schema + + updates_allowed_overridden = False +-- +2.30.2 + diff --git a/debian/patches/meaningful-error-if-no-samba-ad-provision.patch b/debian/patches/meaningful-error-if-no-samba-ad-provision.patch new file mode 100644 index 0000000..6f271f6 --- /dev/null +++ b/debian/patches/meaningful-error-if-no-samba-ad-provision.patch @@ -0,0 +1,28 @@ +From 9610c15759fd6b27615615160f2c5019a32a7154 Mon Sep 17 00:00:00 2001 +From: Michael Tokarev <mjt@tls.msk.ru> +Date: Fri, 2 Dec 2022 10:54:31 +0300 +Subject: print meaningful error message if samba-ad-provision is not installed + +--- + python/samba/provision/common.py | 5 ++++- + 1 file changed, 4 insertions(+), 1 deletion(-) + +diff --git a/python/samba/provision/common.py b/python/samba/provision/common.py +index 2f95492d33a..0561624baf8 100644 +--- a/python/samba/provision/common.py ++++ b/python/samba/provision/common.py +@@ -39,7 +39,10 @@ FILL_DRS = "DRS" + + def setup_path(file): + """Return an absolute path to the provision tempate file specified by file""" +- return os.path.join(setup_dir(), file) ++ path = os.path.join(setup_dir(), file) ++ if not os.path.exists(path): ++ raise Exception("File [%s] not found. Please install samba-ad-provision package" % path) ++ return path + + + def setup_add_ldif(ldb, ldif_path, subst_vars=None, controls=["relax:0"]): +-- +2.30.2 + diff --git a/debian/patches/move-msg.sock-from-var-lib-samba-to-run-samba.patch b/debian/patches/move-msg.sock-from-var-lib-samba-to-run-samba.patch new file mode 100644 index 0000000..ceb2a4f --- /dev/null +++ b/debian/patches/move-msg.sock-from-var-lib-samba-to-run-samba.patch @@ -0,0 +1,55 @@ +From: Michael Tokarev <mjt@tls.msk.ru> +Date: Tue, 26 Apr 2022 16:11:48 +0300 +Subject: move msg.sock from /var/lib/samba to /run/samba + +This moves a socket directory from /var/lib/samba to /run/samba. + +https://lists.samba.org/archive/samba-technical/2022-April/137322.html + +diff --git a/source3/lib/messages.c b/source3/lib/messages.c +index 8641a9dad56..bf866e65e44 100644 +--- a/source3/lib/messages.c ++++ b/source3/lib/messages.c +@@ -461,11 +461,6 @@ static int messaging_context_destructor(struct messaging_context *ctx) + return 0; + } + +-static const char *private_path(const char *name) +-{ +- return talloc_asprintf(talloc_tos(), "%s/%s", lp_private_dir(), name); +-} +- + static NTSTATUS messaging_init_internal(TALLOC_CTX *mem_ctx, + struct tevent_context *ev, + struct messaging_context **pmsg_ctx) +@@ -500,7 +495,7 @@ static NTSTATUS messaging_init_internal(TALLOC_CTX *mem_ctx, + return NT_STATUS_ACCESS_DENIED; + } + +- priv_path = private_path("msg.sock"); ++ priv_path = lock_path(talloc_tos(), "msg.sock"); + if (priv_path == NULL) { + return NT_STATUS_NO_MEMORY; + } +@@ -663,7 +658,7 @@ NTSTATUS messaging_reinit(struct messaging_context *msg_ctx) + msg_ctx->per_process_talloc_ctx, + msg_ctx->event_ctx, + &msg_ctx->id.unique_id, +- private_path("msg.sock"), ++ lock_path(talloc_tos(), "msg.sock"), + lck_path, + messaging_recv_cb, + msg_ctx, +diff --git a/source4/lib/messaging/messaging.c b/source4/lib/messaging/messaging.c +index a00c35be0d5..da641bc06aa 100644 +--- a/source4/lib/messaging/messaging.c ++++ b/source4/lib/messaging/messaging.c +@@ -500,7 +500,7 @@ struct imessaging_context *imessaging_init(TALLOC_CTX *mem_ctx, + goto fail; + } + +- msg->sock_dir = lpcfg_private_path(msg, lp_ctx, "msg.sock"); ++ msg->sock_dir = lpcfg_lock_path(msg, lp_ctx, "msg.sock"); + if (msg->sock_dir == NULL) { + goto fail; + } diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..91101ba --- /dev/null +++ b/debian/patches/series @@ -0,0 +1,26 @@ +libsmbclient-ensure-lfs-221618.patch +hurd-compat.patch +README_nosmbldap-tools.patch +smbclient-pager.patch +usershare.patch +heimdal-rfc3454.txt +add-so-version-to-private-libraries +smbd.service-Run-update-apparmor-samba-profile-befor.patch +fix-nfs-service-name-to-nfs-kernel-server.patch +ctdb-config-enable-syslog-by-default.patch +Force-LDB-as-standalone.patch +use-bzero-instead-of-memset_s.diff +ctdb_etcd_lock-path.patch +ctdb-create-piddir.patch +silence-waf-uselib_local.diff +disable-setuid-confchecks.patch +move-msg.sock-from-var-lib-samba-to-run-samba.patch +testparm-do-not-fail-if-pid-dir-does-not-exist.patch +add-missing-libs-deps.diff +spelling.patch +unwrap-getresgid-typo.patch +fruit-disable-useless-size_t-overflow-check.patch +meaningful-error-if-no-samba-ad-provision.patch +meaningful-error-if-no-python3-markdown.patch +ctdb-use-run-instead-of-var-run.patch +heimdal-to-support-KEYRING-ccache.patch diff --git a/debian/patches/silence-waf-uselib_local.diff b/debian/patches/silence-waf-uselib_local.diff new file mode 100644 index 0000000..ecbae47 --- /dev/null +++ b/debian/patches/silence-waf-uselib_local.diff @@ -0,0 +1,31 @@ +Subject: silence uselib_local warning produced by waf +From: Michael Tokarev <mjt@tls.msk.ru> +Date: Sun, 03 Apr 2022 07:57:38 +0300 + +During config/build process in verbose mode, waf produces +about 2k repetitions of this warning: + + compat: "uselib_local" is deprecated, replace by "use" + +which clutters the build log. + +Comment this warning out for now until it will be +fixed properly. + +diff --git a/buildtools/wafsamba/samba_waf18.py b/buildtools/wafsamba/samba_waf18.py +index e2a078bd3a0..dfd53a012d1 100644 +--- a/buildtools/wafsamba/samba_waf18.py ++++ b/buildtools/wafsamba/samba_waf18.py +@@ -314,9 +314,9 @@ def apply_uselib_local(self): + seen = set() + seen_uselib = set() + tmp = Utils.deque(names) # consume a copy of the list of names +- if tmp: +- if Logs.verbose: +- Logs.warn('compat: "uselib_local" is deprecated, replace by "use"') ++ #if tmp: ++ # if Logs.verbose: ++ # Logs.warn('compat: "uselib_local" is deprecated, replace by "use"') + while tmp: + lib_name = tmp.popleft() + # visit dependencies only once diff --git a/debian/patches/smbclient-pager.patch b/debian/patches/smbclient-pager.patch new file mode 100644 index 0000000..4c7af22 --- /dev/null +++ b/debian/patches/smbclient-pager.patch @@ -0,0 +1,22 @@ +From: Steve Langasek <vorlon@debian.org> +Subject: Use the pager alternative as pager is PAGER is undefined + +Bug-Debian: http://bugs.debian.org/135603 +Forwarded: not-needed +--- + source3/include/local.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/source3/include/local.h b/source3/include/local.h +index 7f97d4e..60a00d1 100644 +--- a/source3/include/local.h ++++ b/source3/include/local.h +@@ -88,7 +88,7 @@ + /* the default pager to use for the client "more" command. Users can + override this with the PAGER environment variable */ + #ifndef PAGER +-#define PAGER "more" ++#define PAGER "/usr/bin/pager" + #endif + + /* the size of the uid cache used to reduce valid user checks */ diff --git a/debian/patches/smbd.service-Run-update-apparmor-samba-profile-befor.patch b/debian/patches/smbd.service-Run-update-apparmor-samba-profile-befor.patch new file mode 100644 index 0000000..c5a64dc --- /dev/null +++ b/debian/patches/smbd.service-Run-update-apparmor-samba-profile-befor.patch @@ -0,0 +1,25 @@ +From 0ecd28ff3fd7f3d5c20705a2b8233fc8648cbf9c Mon Sep 17 00:00:00 2001 +From: Mathieu Parent <math.parent@gmail.com> +Date: Thu, 21 Feb 2019 21:04:30 +0100 +Subject: [PATCH] smbd.service: Run update-apparmor-samba-profile before start + +Bug-Debian: https://bugs.debian.org/896080 +--- + packaging/systemd/smb.service.in | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/packaging/systemd/smb.service.in b/packaging/systemd/smb.service.in +index 18912ef0e98..6bb24861682 100644 +--- a/packaging/systemd/smb.service.in ++++ b/packaging/systemd/smb.service.in +@@ -10,6 +10,7 @@ NotifyAccess=all + PIDFile=@PIDDIR@/smbd.pid + LimitNOFILE=16384 + EnvironmentFile=-@SYSCONFDIR@/sysconfig/samba ++ExecStartPre=/usr/share/samba/update-apparmor-samba-profile + ExecStart=@SBINDIR@/smbd --foreground --no-process-group $SMBDOPTIONS + ExecReload=/bin/kill -HUP $MAINPID + LimitCORE=infinity +-- +2.20.1 + diff --git a/debian/patches/spelling.patch b/debian/patches/spelling.patch new file mode 100644 index 0000000..d20cd88 --- /dev/null +++ b/debian/patches/spelling.patch @@ -0,0 +1,212 @@ +From: Michael Tokarev <mjt@tls.msk.ru> +Subject: Various spelling fixes + +Various spelling fixes in the code which sneaks into binaries. + +diff --git a/bootstrap/config.py b/bootstrap/config.py +index a00b253ae77..84330a2106a 100644 +--- a/bootstrap/config.py ++++ b/bootstrap/config.py +@@ -127,5 +127,5 @@ PKGS = [ + ('pkg-config', 'pkgconfig'), + ('procps', 'procps-ng'), # required for the free cmd in tests +- ('lsb-release', 'lsb-release'), # we need lsb_relase to show info ++ ('lsb-release', 'lsb-release'), # we need lsb_release to show info + ('', 'rpcgen'), # required for test + # refer: https://fedoraproject.org/wiki/Changes/SunRPCRemoval +diff --git a/ctdb/common/system.c b/ctdb/common/system.c +index 08dc68284fd..05a95647233 100644 +--- a/ctdb/common/system.c ++++ b/ctdb/common/system.c +@@ -158,5 +158,5 @@ bool ctdb_sys_check_iface_exists(const char *iface) + ifnis = if_nameindex(); + if (ifnis == NULL) { +- DBG_ERR("Failed to retrieve inteface list\n"); ++ DBG_ERR("Failed to retrieve interface list\n"); + return false; + } +diff --git a/source3/smbd/msdfs.c b/source3/smbd/msdfs.c +index 4819df35837..c30326234ae 100644 +--- a/source3/smbd/msdfs.c ++++ b/source3/smbd/msdfs.c +@@ -950,5 +950,5 @@ static NTSTATUS dfs_path_lookup(TALLOC_CTX *ctx, + removed_components--; + if (p == NULL && removed_components != 0) { +- DBG_ERR("Component missmatch. path = %s, " ++ DBG_ERR("Component mismatch. path = %s, " + "%zu components left\n", + canon_dfspath, +diff --git a/source3/smbd/smbXsrv_client.c b/source3/smbd/smbXsrv_client.c +index d7a6fa35bf0..14d00f4aca1 100644 +--- a/source3/smbd/smbXsrv_client.c ++++ b/source3/smbd/smbXsrv_client.c +@@ -1243,5 +1243,5 @@ static void smbXsrv_client_connection_drop_loop(struct tevent_req *subreq) + struct GUID_txt_buf buf1, buf2; + +- DBG_WARNING("client's client_guid [%s] != droped guid [%s]\n", ++ DBG_WARNING("client's client_guid [%s] != dropped guid [%s]\n", + GUID_buf_string(&client->global->client_guid, + &buf1), +@@ -1258,5 +1258,5 @@ static void smbXsrv_client_connection_drop_loop(struct tevent_req *subreq) + { + DBG_WARNING("client's initial connect time [%s] (%llu) != " +- "droped initial connect time [%s] (%llu)\n", ++ "dropped initial connect time [%s] (%llu)\n", + nt_time_string(talloc_tos(), + client->global->initial_connect_time), +diff --git a/source3/winbindd/wb_sids2xids.c b/source3/winbindd/wb_sids2xids.c +index 179a51f81e4..9a3507ba702 100644 +--- a/source3/winbindd/wb_sids2xids.c ++++ b/source3/winbindd/wb_sids2xids.c +@@ -234,5 +234,5 @@ static void wb_sids2xids_idmap_setup_done(struct tevent_req *subreq) + sid_copy(&domain_sid, &state->sids[i]); + sid_split_rid(&domain_sid, &rid); +- D_DEBUG("%"PRIu32": Splitted SID %s into domain SID %s and RID %"PRIu32"\n", ++ D_DEBUG("%"PRIu32": Split SID %s into domain SID %s and RID %"PRIu32"\n", + i, + dom_sid_str_buf(&state->sids[i], &buf0), +diff --git a/source4/torture/smb2/ea.c b/source4/torture/smb2/ea.c +index becacaed77e..2467610f688 100644 +--- a/source4/torture/smb2/ea.c ++++ b/source4/torture/smb2/ea.c +@@ -92,5 +92,5 @@ static bool torture_smb2_acl_xattr(struct torture_context *tctx, + status = smb2_setinfo_file(tree, &sfinfo); + torture_assert_ntstatus_ok_goto(tctx, status, ret, done, +- "Setting EA should faild\n"); ++ "Setting EA should fail\n"); + + /* +diff --git a/source4/torture/smb2/session.c b/source4/torture/smb2/session.c +index 92f9e638ff4..fe2beafbe9b 100644 +--- a/source4/torture/smb2/session.c ++++ b/source4/torture/smb2/session.c +@@ -2755,5 +2755,5 @@ static bool test_session_bind_negative_smb210s(struct torture_context *tctx, str + if (encrypted) { + torture_skip(tctx, +- "Can't test SMB 2.10 if encrytion is required"); ++ "Can't test SMB 2.10 if encryption is required"); + } + +@@ -2786,5 +2786,5 @@ static bool test_session_bind_negative_smb210d(struct torture_context *tctx, str + if (encrypted) { + torture_skip(tctx, +- "Can't test SMB 2.10 if encrytion is required"); ++ "Can't test SMB 2.10 if encryption is required"); + } + +@@ -2818,5 +2818,5 @@ static bool test_session_bind_negative_smb2to3s(struct torture_context *tctx, st + if (encrypted) { + torture_skip(tctx, +- "Can't test SMB 2.10 if encrytion is required"); ++ "Can't test SMB 2.10 if encryption is required"); + } + +@@ -2863,5 +2863,5 @@ static bool test_session_bind_negative_smb2to3d(struct torture_context *tctx, st + if (encrypted) { + torture_skip(tctx, +- "Can't test SMB 2.10 if encrytion is required"); ++ "Can't test SMB 2.10 if encryption is required"); + } + +@@ -2909,5 +2909,5 @@ static bool test_session_bind_negative_smb3to2s(struct torture_context *tctx, st + if (encrypted) { + torture_skip(tctx, +- "Can't test SMB 2.10 if encrytion is required"); ++ "Can't test SMB 2.10 if encryption is required"); + } + +@@ -2960,5 +2960,5 @@ static bool test_session_bind_negative_smb3to2d(struct torture_context *tctx, st + if (encrypted) { + torture_skip(tctx, +- "Can't test SMB 2.10 if encrytion is required"); ++ "Can't test SMB 2.10 if encryption is required"); + } + +@@ -4549,5 +4549,5 @@ static bool test_session_bind_negative_smb3signH2XtoGs(struct torture_context *t + if (encrypted) { + torture_skip(tctx, +- "Can't test SMB 2.10 if encrytion is required"); ++ "Can't test SMB 2.10 if encryption is required"); + } + +@@ -4609,5 +4609,5 @@ static bool test_session_bind_negative_smb3signH2XtoGd(struct torture_context *t + if (encrypted) { + torture_skip(tctx, +- "Can't test SMB 2.10 if encrytion is required"); ++ "Can't test SMB 2.10 if encryption is required"); + } + +@@ -4789,5 +4789,5 @@ static bool test_session_bind_negative_smb3signGtoH2Xs(struct torture_context *t + if (encrypted) { + torture_skip(tctx, +- "Can't test SMB 2.10 if encrytion is required"); ++ "Can't test SMB 2.10 if encryption is required"); + } + +@@ -4855,5 +4855,5 @@ static bool test_session_bind_negative_smb3signGtoH2Xd(struct torture_context *t + if (encrypted) { + torture_skip(tctx, +- "Can't test SMB 2.10 if encrytion is required"); ++ "Can't test SMB 2.10 if encryption is required"); + } + +@@ -5067,5 +5067,5 @@ static bool test_session_signing_hmac_sha_256(struct torture_context *tctx, stru + if (encrypted) { + torture_skip(tctx, +- "Can't test signing only if encrytion is required"); ++ "Can't test signing only if encryption is required"); + } + +@@ -5111,5 +5111,5 @@ static bool test_session_signing_aes_128_cmac(struct torture_context *tctx, stru + if (encrypted) { + torture_skip(tctx, +- "Can't test signing only if encrytion is required"); ++ "Can't test signing only if encryption is required"); + } + +@@ -5155,5 +5155,5 @@ static bool test_session_signing_aes_128_gmac(struct torture_context *tctx, stru + if (encrypted) { + torture_skip(tctx, +- "Can't test signing only if encrytion is required"); ++ "Can't test signing only if encryption is required"); + } + +diff --git a/docs-xml/manpages/vfs_fruit.8.xml b/docs-xml/manpages/vfs_fruit.8.xml +index 4caf308a612..6950898a7d1 100644 +--- a/docs-xml/manpages/vfs_fruit.8.xml ++++ b/docs-xml/manpages/vfs_fruit.8.xml +@@ -399,7 +399,7 @@ + on-disk file identifier to have the semantics of HFS+ Catalog Node + Identifier (CNID). Samba provides File-IDs based on a file's inode + number which gets recycled across file creation and deletion and +- can therefor not be used for Mac client. Returning a file identifier of ++ can therefore not be used for Mac client. Returning a file identifier of + zero causes the Mac client to stop using and trusting the file id + returned from the server.</para> + <para>The default is <emphasis>yes</emphasis>.</para> +diff --git a/ctdb/server/ctdb_recoverd.c b/ctdb/server/ctdb_recoverd.c +index bf3a66b0aaf..9d2cb6af9c9 100644 +--- a/ctdb/server/ctdb_recoverd.c ++++ b/ctdb/server/ctdb_recoverd.c +@@ -395,7 +395,7 @@ static void ctdb_set_culprit_count(struct ctdb_recoverd *rec, + struct ctdb_banning_state, + len); + if (t == NULL) { +- DBG_WARNING("Memory allocation errror"); ++ DBG_WARNING("Memory allocation error"); + return; + } + rec->banning_state = t; +diff --git a/lib/smbconf/pysmbconf.c b/lib/smbconf/pysmbconf.c +index 1b3c101005a..465876684ca 100644 +--- a/lib/smbconf/pysmbconf.c ++++ b/lib/smbconf/pysmbconf.c +@@ -747,7 +747,7 @@ PyDoc_STRVAR(py_smbconf_doc, + "types. Future, write based functions need a writable backend (registry).\n" + "\n" + "Note that the registry backend will be provided by a different\n" +-"library module from the source3 tree (implemenation TBD).\n"); ++"library module from the source3 tree (implementation TBD).\n"); + + static struct PyModuleDef moduledef = { + PyModuleDef_HEAD_INIT, diff --git a/debian/patches/testparm-do-not-fail-if-pid-dir-does-not-exist.patch b/debian/patches/testparm-do-not-fail-if-pid-dir-does-not-exist.patch new file mode 100644 index 0000000..cdf1dd2 --- /dev/null +++ b/debian/patches/testparm-do-not-fail-if-pid-dir-does-not-exist.patch @@ -0,0 +1,70 @@ +From 68fe6de9aeca04c252d1d89165802e0fa981d28c Mon Sep 17 00:00:00 2001 +From: Michael Tokarev <mjt@tls.msk.ru> +Date: Tue, 26 Apr 2022 16:14:38 +0300 +Subject: testparm: do not fail if /run/samba does not exist + +testparm explicitly fails if $piddir or $lockdir does not exist. +However, the daemons which actually use these directories, will +create it on demand, there is no need to fail even simple testparm +operations if the dirs are not there. + +This change lets to (pre)configure samba without bothering to +pre-create the directories which are overwise needed only to fulfil +testparm criteria. + +Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> +--- + python/samba/netcmd/testparm.py | 6 ++---- + source3/utils/testparm.c | 6 ++---- + 2 files changed, 4 insertions(+), 8 deletions(-) + +diff --git a/python/samba/netcmd/testparm.py b/python/samba/netcmd/testparm.py +index b44dea1f141..6fecbb15303 100644 +--- a/python/samba/netcmd/testparm.py ++++ b/python/samba/netcmd/testparm.py +@@ -142,14 +142,12 @@ class cmd_testparm(Command): + lockdir = lp.get("lockdir") + + if not os.path.isdir(lockdir): +- logger.error("lock directory %s does not exist", lockdir) +- valid = False ++ logger.warning("lock directory %s does not exist", lockdir) + + piddir = lp.get("pid directory") + + if not os.path.isdir(piddir): +- logger.error("pid directory %s does not exist", piddir) +- valid = False ++ logger.warning("pid directory %s does not exist", piddir) + + winbind_separator = lp.get("winbind separator") + +diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c +index 71bc4c2694e..4916a665c02 100644 +--- a/source3/utils/testparm.c ++++ b/source3/utils/testparm.c +@@ -326,9 +326,8 @@ static int do_global_checks(void) + } + + if (!directory_exist_stat(lp_lock_directory(), &st)) { +- fprintf(stderr, "ERROR: lock directory %s does not exist\n\n", ++ fprintf(stderr, "WARNING: lock directory %s does not exist\n\n", + lp_lock_directory()); +- ret = 1; + } else if ((st.st_ex_mode & 0777) != 0755) { + fprintf(stderr, "WARNING: lock directory %s should have " + "permissions 0755 for browsing to work\n\n", +@@ -356,9 +355,8 @@ static int do_global_checks(void) + } + + if (!directory_exist_stat(lp_pid_directory(), &st)) { +- fprintf(stderr, "ERROR: pid directory %s does not exist\n\n", ++ fprintf(stderr, "WARNING: pid directory %s does not exist\n\n", + lp_pid_directory()); +- ret = 1; + } + + if (lp_passdb_expand_explicit()) { +-- +2.30.2 + diff --git a/debian/patches/unwrap-getresgid-typo.patch b/debian/patches/unwrap-getresgid-typo.patch new file mode 100644 index 0000000..87e022f --- /dev/null +++ b/debian/patches/unwrap-getresgid-typo.patch @@ -0,0 +1,20 @@ +Subject: uwrap: Fix getresgid wrapping typo +Bug: https://bugzilla.samba.org/show_bug.cgi?id=15227 + +This was making e.g. p11-kit crash on getresgid() call. + +Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org> + +diff --git a/third_party/uid_wrapper/uid_wrapper.c b/third_party/uid_wrapper/uid_wrapper.c +index f04642a..2e2c9e6 100644 +--- a/third_party/uid_wrapper/uid_wrapper.c ++++ b/third_party/uid_wrapper/uid_wrapper.c +@@ -623,7 +623,7 @@ static int libc_setresgid(gid_t rgid, gid_t egid, gid_t sgid) + #ifdef HAVE_GETRESGID + static int libc_getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid) + { +- uwrap_bind_symbol_libc(setresgid); ++ uwrap_bind_symbol_libc(getresgid); + + return uwrap.libc.symbols._libc_getresgid.f(rgid, egid, sgid); + } diff --git a/debian/patches/use-bzero-instead-of-memset_s.diff b/debian/patches/use-bzero-instead-of-memset_s.diff new file mode 100644 index 0000000..a752b24 --- /dev/null +++ b/debian/patches/use-bzero-instead-of-memset_s.diff @@ -0,0 +1,24 @@ +Subject: use bzero() instead of memset_s() + +lib/replace/replace.h header defines ZERO_STRUCT macro +which uses memset_s() function (which is similar to +memset() but can not be optimized out by the compiler). +Glibc has bzero() with similar property, while memset_s() +have is implemented in lib/replace/replace.c, - this way, +some binaries needlessly link with libreplace-samba4 just +to get rep_memset_s() symbol. By using bzero() instead, +this endless linkage is eliminated, so we can package, +for example, libldb (which uses ZERO_STRUCT) without it +linking to libreplace-samba4. + +Note: actually using explicit_bzero() so it is not optimized +out by the compiler - this is the original goal of using +memset_s(). + +diff --git a/lib/replace/replace.h b/lib/replace/replace.h +index 8609d84322c..28db8d425a3 100644 +--- a/lib/replace/replace.h ++++ b/lib/replace/replace.h +@@ -822 +822 @@ +-#define ZERO_STRUCT(x) memset_s((char *)&(x), sizeof(x), 0, sizeof(x)) ++#define ZERO_STRUCT(x) explicit_bzero((char *)&(x), sizeof(x)) diff --git a/debian/patches/usershare.patch b/debian/patches/usershare.patch new file mode 100644 index 0000000..9f072a5 --- /dev/null +++ b/debian/patches/usershare.patch @@ -0,0 +1,52 @@ +From: Mathias Gug <mathiaz@ubuntu.com>, Steve Langasek <vorlon@debian.org> +Subject: Enable net usershares by default at build time + +Enable net usershares by default at build time, with a limit of 100, and update +the corresponding documentation. + +Bug-Debian: http://bugs.debian.org/443230 +Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/samba/+bug/128548 +Forwarded: not-needed +--- + docs-xml/smbdotconf/misc/usersharemaxshares.xml | 2 +- + lib/param/loadparm.c | 2 ++ + source3/param/loadparm.c | 2 +- + 3 files changed, 4 insertions(+), 2 deletions(-) + +diff --git a/docs-xml/smbdotconf/misc/usersharemaxshares.xml b/docs-xml/smbdotconf/misc/usersharemaxshares.xml +index 0d69bb8..e985857 100644 +--- a/docs-xml/smbdotconf/misc/usersharemaxshares.xml ++++ b/docs-xml/smbdotconf/misc/usersharemaxshares.xml +@@ -9,5 +9,5 @@ + </para> + + </description> +-<value type="default">0</value> ++<value type="default">100</value> + </samba:parameter> +diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c +index a221e87..c5367fd 100644 +--- a/lib/param/loadparm.c ++++ b/lib/param/loadparm.c +@@ -2966,6 +2966,8 @@ struct loadparm_context *loadparm_init(TALLOC_CTX *mem_ctx) + + lpcfg_do_global_parameter(lp_ctx, "init logon delay", "100"); + ++ lpcfg_do_global_parameter(lp_ctx, "usershare max shares", "100"); ++ + lpcfg_do_global_parameter(lp_ctx, "usershare owner only", "yes"); + + lpcfg_do_global_parameter(lp_ctx, "-valid", "yes"); +diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c +index d5b1c56..5cd0a18 100644 +--- a/source3/param/loadparm.c ++++ b/source3/param/loadparm.c +@@ -847,7 +847,7 @@ static void init_globals(struct loadparm_context *lp_ctx, bool reinit_globals) + lpcfg_string_set(Globals.ctx, &Globals.usershare_path, s); + TALLOC_FREE(s); + lpcfg_string_set(Globals.ctx, &Globals.usershare_template_share, ""); +- Globals.usershare_max_shares = 0; ++ Globals.usershare_max_shares = 100; + /* By default disallow sharing of directories not owned by the sharer. */ + Globals.usershare_owner_only = true; + /* By default disallow guest access to usershares. */ diff --git a/debian/po/POTFILES.in b/debian/po/POTFILES.in new file mode 100644 index 0000000..8c46a3d --- /dev/null +++ b/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] samba-common.templates diff --git a/debian/po/ar.po b/debian/po/ar.po new file mode 100644 index 0000000..08a6b7a --- /dev/null +++ b/debian/po/ar.po @@ -0,0 +1,238 @@ +# translation of ar.po to Arabic +# xserver-xorg translation +# Copyright (C) 2006 The Arabeyes Project +# This file is distributed under the same license as the xserver-xorg package. +# +# younes <behloul.younes@gmail.com>, 2006. +# Ossama M. Khayat <okhayat@yahoo.com>, 2006, 2007, 2008. +msgid "" +msgstr "" +"Project-Id-Version: ar\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2008-06-21 05:10+0300\n" +"Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n" +"Language-Team: Arabic <support@arabeyes.org>\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "تغيير smb.conf لاستعمال إعدادات WINS عبر DHCP" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"إذا كان Øاسوبك ÙŠØصل على معلومات عنوانه (IP adresse) من خادم DHCP المتواجد " +"على الشبكة, Ùأنه باﻹمكان أيضا الØصول غلى معلومات Øول Ø®Ùدَّم WINS (\"خدم أسماء " +"NetBIOS\") المتواجد على الشبكة, هذا يتطلب تغييرا ÙÙŠ ملÙsmb.conf بØيث ان " +"إعدادات WINS المÙقدمة من طر٠DHCP ستقرأ آليا من مل٠/var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "يجب تثبيت رزمة dhcp-client للاستÙادة من هذه الميزة." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "إعداد آلي لمل٠smb.conf ØŸ" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"بقية إعدادات Samba تعالج أسئلة تؤثر ÙÙŠ المقاييس المتواجدة ÙÙŠ المل٠/etc/" +"samba/smb.conf Ùˆ الذي يستعمل لإعداد برامج Samba التالية ( nmbd Ùˆ smbd). ملÙÙƒ " +"الØالي smb.conf ÙŠØتوي على سطر 'include' او على خيار يمتد لعدة أسطر, الشي " +"الذي يمكن أن يشوش على عملية الإعداد الآلية, ويستلزم منك تØرير ملÙÙƒ smb.conf " +"يدويا لكي تتمكن من تشغبل ذلك مرة أخرى." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"ÙÙŠ Øالة عدم اختيارك لهذا الخيار, عليك معالجة أي تغيير ÙÙŠ الإعدادات بنÙسك, Ùˆ " +"لن تستÙيد من تØسينات الإعداد الدورية." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr " اسم مجموعة العمل/الØقل:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"رجاءً Øدد مجموعة العمل لهذا النظام. يتØكم هذا الإعداد باسم مجموعة العمل التي " +"سيظهر بها النظام عند استخدامه كخادم، وهي مجموعة العمل الاÙتراضية التي يجب " +"استخدامها عند التصÙØ Ø¨Ø§Ø³ØªØ®Ø¯Ø§Ù… الواجهات المختلÙØ©ØŒ واسم النطاق المستخدم ÙÙŠ " +"الإعداد \"security=domain\"." + +#~ msgid "Use password encryption?" +#~ msgstr "تشÙير كلمة المرور ØŸ" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "تتصل جميع عملاء ويندوز الجديدة مع خوادم SMB/CIFS باستخدام كلمات مرور " +#~ "مشÙرة. إذا أردت استخدام كلمات مرور غير مشÙرة عليك بتغيير Ù…Ùعطى ÙÙŠ قاعدة " +#~ "تسجيلات ويندوز." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "ÙŠÙستØسن بشدة تمكين هذا الخيار Øيث أن دعم كلمات المرور الغير مشÙرة لم يعد " +#~ "متوÙراً ÙÙŠ منتجات ميكروسوÙت.\n" +#~ "إن Ùعلت ذلك، Ùتأكد من وجود مل٠/etc/samba/smbpasswd ØµØ§Ù„Ø ÙˆØ£Ù† تضع Ùيه " +#~ "كلمات المرور الخاصة بكل مستخدم باستخدام الأمر smbpasswd." + +#~ msgid "daemons" +#~ msgstr "daemons" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "كي٠تريد تشغيل SambaØŸ" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "يمكن لرقيب smbd الاشتغال كرقيب عادي أو عبر inetd. ÙŠÙ†ØµØ Ø¨ØªØ´ØºÙŠÙŠÙ„Ù‡ كرقيب." + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "إعداد سامبا4 كمÙتØكّم أولي بالنطاق PDCØŸ" + +#~ msgid "" +#~ "Even when using this option, you will need to set up DNS such that it " +#~ "serves the data from the zone file in that directory before you can use " +#~ "the Active Directory domain." +#~ msgstr "" +#~ "Øتى عند استخدام هذا الخيار، تØتاج إلى إعداد خادم أسماء النطاقات بØيث يوÙّر " +#~ "البيانات من مل٠النطاق ÙÙŠ ذلك الدليل قبل أن تتمكن من استخدام نطاق Active " +#~ "Directory." + +#~ msgid "" +#~ "Please specify the Kerberos realm this server will be in. In many cases, " +#~ "this will be the same as the DNS domain name." +#~ msgstr "" +#~ "الرجاء تØديد Kerberos realm الذي سيكون هذا الخادم Ùيه. ÙÙŠ كثير من " +#~ "الØالات، يكون هذا هو Ù†Ùسه اسم النطاق." + +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "الرجاء تØديد اسم النطاق الذي تريد أن يظهر Ùيه هذا الخادم الاستعلام عنه من " +#~ "قبل العملاء." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Ø¥Øداث قاعدة كلمات المرور Ù„Samba ÙÙŠ /var/lib/samba/passdb.tdb ØŸ" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Øتى يكون هناك تواÙÙ‚ مع اﻹعدادت الاÙتراصية لأغلبية نسخ WindowsØŒ يجب تهيئة " +#~ "Samba لاستعمال كلمات مرور مشÙرة، اﻷمر الذي يتطلب ØÙظها ÙÙŠ مل٠منÙصل عن /" +#~ "etc/passwd. ويمكن إنشاء ذلك المل٠تلقائياً، إلا أن كلمات المرور يجب أن " +#~ "تضا٠يدوياً بتنÙيذ الأمر smbpaswd وإبقاء المل٠مØدثاً ÙÙŠ المستقبل." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "إن لم تنشئه، Ùستضطر إلى إعادة تهيئة Samba (وربما بعض الأجهزة العميلة) " +#~ "لاستخدام كلمات مرور مجردة." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "راجع /usr/share/doc/samba-doc/htmldocs/ENCRYPTION ÙÙŠ رزمة samba-doc " +#~ "لتÙاصيل أكثر." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "الربط التسلسلي لملÙات passdb غير مدعوم" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "بدءً من النسخة 3.0.23 من sambaØŒ لم يعد دعم ربط ملÙات passdb عبر المعطى " +#~ "\"passdb backend\" متوÙراً. يبدو أن مل٠smb.conf لديك ÙŠØتوي هذا المعطى " +#~ "والذي ÙŠØدد قائمة من ملÙات دعم passdb. لن تعمل نسخة samba الجديدة Øتى تقوم " +#~ "بتصØÙŠØ Ù‡Ø°Ø§ المعطى." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "نَقْل /etc/samba/smbpasswd إلى /var/lib/samba/passdb.tdb ØŸ" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "النسخة 3.0 من Samba أدخلت واجهة أكمل لقاعدة SAM, Ùˆ التي تلغي بدورها " +#~ "مل٠/etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "من Ùضلك أكّد إذا ما كنت تÙضل هجرة آلية لمل٠smbpasswd المتواجد إلى /var/" +#~ "lib/samba/passdb.tdb. لا تختر هذا الخيار إذا كنت تنوي استعمال قاعدة كلمات " +#~ "مرور خلÙية ( pdb backend) مثل LDAP." diff --git a/debian/po/ast.po b/debian/po/ast.po new file mode 100644 index 0000000..d8f5176 --- /dev/null +++ b/debian/po/ast.po @@ -0,0 +1,186 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: samba package\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2009-01-15 09:17+0100\n" +"Last-Translator: astur <malditoastur@gmail.com>\n" +"Language-Team: Asturian <softast-xeneral@lists.sourceforge.net>\n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-Language: Asturian\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-Country: SPAIN\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "¿Camudar smb.conf pa usar configuraciones WINS dende DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Si'l to ordenador garra información dende direiciones IP dende un sirvidor " +"DHCP nuna rede, el sirvidor DHCP tamién-y podrÃa dar información acerca de " +"sirvidores WINS (\"NetBIOS name servers\") presentes na rede. Esto requier " +"camudar el to ficheru smb.conf ya que DHCP da la configuración de WINS qué " +"será automáticamente lleÃo dende /var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"El paquete dhcp-client tien qu'instálase p'algamar la ventaxa d'esta " +"carauterÃstica." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "¿Configurar smb.conf automáticamente?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"El restu de la configuración de Samba fina con entrugues qu'afeuten a los " +"parámetros de /etc/samba/smb.conf, el cual ye'l ficheru usáu pa configurar " +"el programa Samba (nmbd y smbd). El to smb.conf actual contién una llinia de " +"'include' o una opción que rellena múltiples llinies, lo cual puede " +"confundir nel procesu de configuración automática y requier qu'edites el to " +"smb.conf a manu pa poder a trabayar con él." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Si nun escueyes esta opción, tendrás que camudar manualmente la " +"configuración por ti mesmu, y nun tendrás les ventaxes de les meyores de " +"configuración periódiques." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Nome de Grupu/Dominiu:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Por favor, pon el grupu de trabayu pa esti sistema. Esta opción remana'l " +"sistema de grupos de trabayu que s'espublizará cuando s'usa como un " +"sirvidor, por defeutu el grupu de trabayu a ser usaos mientres la ñavegación " +"con distintos interfaces, y el nome de dominiu usáu cola configuración " +"\"security=domain\"" + +#~ msgid "Use password encryption?" +#~ msgstr "¿Usar contraseña encriptada?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Tolos clientes con Windows recientes comuniquense con sirvidores SMB/CIFS " +#~ "usando contraseñes encriptaes. Si quies usar contraseñes con testu nidiu " +#~ "necesites camudar un parámetru nel to rexistru de Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Activar esta opción ye altamente recomendable. Si lo faes, tate seguru " +#~ "que tienes un ficheru /etc/samba/smbpasswd válidu y que afitastes les " +#~ "contraseñes nél pa cada usuariu usando'l comandu smbpasswd." + +#~ msgid "daemons" +#~ msgstr "degorrios" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "¿Cómo quies executar Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "El degorriu Samba smbd puede correr como un degorriu normal o dende " +#~ "inetd. Corriendo como un degorriu ye la escoyeta recomendada." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "¿Criar una contraseña pa la base de datos de samba, /var/lib/samba/passdb." +#~ "tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Pa ser compatible col comportamientu por defeutu na mayor de les " +#~ "versiones Windows, Samba debe configurase pa usar contraseñes encriptaes. " +#~ "Esto requier qu'una contraseña d'usuariu seya almacenada nun ficheru " +#~ "separtáu dende /etc/passwd. Esti ficheru puede criase automáticamente, " +#~ "pero les contraseñes deben amestase-y manualmente executando smbpasswd y " +#~ "mantenelu nel futuru." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Si nun la crias, tendrás que reconfigurar Samba (y probablemente'l to " +#~ "cliente) pa usar contraseñes de testu planu." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Mira /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html dende'l paquete samba-doc pa más detalles." diff --git a/debian/po/be.po b/debian/po/be.po new file mode 100644 index 0000000..17e6789 --- /dev/null +++ b/debian/po/be.po @@ -0,0 +1,182 @@ +# translation of samba_2:3.3.0-3_be.po to Belarusian (Official spelling) +# Copyright (C) 2009 Hleb Rubanau +# This file is distributed under the same license as the debian-installer package. +# +# Hleb Rubanau <g.rubanau@gmail.com>, 2009. +# Pavel Piatruk <piatruk.p@gmail.com>, 2009. +msgid "" +msgstr "" +"Project-Id-Version: samba_2:3.3.0-3_be\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2009-02-19 04:33+0200\n" +"Last-Translator: Pavel Piatruk <piatruk.p@gmail.com>\n" +"Language-Team: Belarusian (Official spelling) <be@d-i.tanatos.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"ЗмÑніць файл наладак smb.conf такім чынам, каб ужываліÑÑ Ð½Ð°Ð»Ð°Ð´ÐºÑ– WINS, " +"Ð°Ñ‚Ñ€Ñ‹Ð¼Ð°Ð½Ñ‹Ñ Ð°Ð´ DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Калі Ваша ÑÑ–ÑÑ‚Ñма атрымлівае інфармацыю, датычную IP-адраÑа, ад Ñервера " +"DHCP, той Ñамы Ñервер можа паведамлÑць ёй Ñ– пра Ñерверы WINS (\"Серверы " +"імёнаў NetBIOS\"), ÑÐºÑ–Ñ Ð¿Ñ€Ñ‹Ñутнічаюць у Ñетцы. Ð”Ð»Ñ Ð³Ñтага неабходна " +"адпаведным чынам змÑніць Ваш файл наладак smb.conf. У выніку Ð°Ñ‚Ñ€Ñ‹Ð¼Ð°Ð½Ð°Ñ Ð¿Ñ€Ð°Ð· " +"DHCP Ñ–Ð½Ñ„Ð°Ñ€Ð¼Ð°Ñ†Ñ‹Ñ Ð°Ð± WINS-Ñерверах будзе аўтаматычна чытацца з файлу /var/" +"lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "Каб ÑкарыÑтацца гÑтай магчымаÑцю, Ñ‚Ñ€Ñба ÑžÑталÑваць пакет dhcp-client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Ðаладзіць smb.conf аўтаматычна?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"ÐÑтатнÑÑ Ñ‡Ð°Ñтка наладкі Samba датычыцца пытаннÑÑž, ад адказу на ÑÐºÑ–Ñ Ð·Ð°Ð»ÐµÐ¶Ð°Ñ†ÑŒ " +"значÑнні параметраў Ñž файле наладак /etc/samba/smb.conf. ГÑÑ‚Ñ‹ файл ужываецца " +"праграмамі Samba (nmbd ды smbd). У Вашым файле smb.conf прыÑутнічае радок " +"\"include\" альбо шматрадковы параметр, што можа зблытаць працÑÑ " +"аўтаматычнай наладкі, Ñ– прывеÑці да немагчымаÑці працы Samba без ручнога " +"Ð²Ñ‹Ð¿Ñ€Ð°ÑžÐ»ÐµÐ½Ð½Ñ Ñ„Ð°Ð¹Ð»Ð° smb.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Калі Ð’Ñ‹ не абÑÑ€Ñце гÑтую опцыю, змÑнÑць наладкі давÑдзецца ÑамаÑтойна. Тады " +"Ð’Ñ‹ будзеце пазбаўлены магчымаÑці Ñпазнаць перавагі перыÑдычных палÑпшÑннÑÑž " +"канфігурацыі." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "ÐŸÑ€Ð°Ñ†Ð¾ÑžÐ½Ð°Ñ Ð³Ñ€ÑƒÐ¿Ð°/Ð†Ð¼Ñ Ð´Ð°Ð¼ÐµÐ½Ñƒ:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Пазначце працоўную групу ÑÑ–ÑÑ‚Ñмы. ГÑта наладка кантралюе: у Ñкой групе " +"з'Ñвіцца ваша ÑÑ–ÑÑ‚Ñма Ñž ÑкаÑці Ñервера; Ñтандартную групу пры праглÑданні " +"Ñеціва; Ñ–Ð¼Ñ Ð´Ð°Ð¼ÐµÐ½Ñƒ, Ñкое ўжываецца пры выкарыÑтанні наладкі security=domain." + +#~ msgid "Use password encryption?" +#~ msgstr "Шыфраваць паролі?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "УÑе Ð°Ð¿Ð¾ÑˆÐ½Ñ–Ñ Ð²ÐµÑ€ÑÑ–Ñ– кліентаў Windows ÑтаÑуюцца з Ñерверамі SMB/CIFS, " +#~ "выкарыÑтоўваючы шыфраванне паролÑÑž. Каб ужываць паролі проÑтым Ñ‚ÑкÑтам, " +#~ "Вам давÑдзецца выправіць параметр у Ñ€ÑгіÑтры Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Дужа Ñ€Ñкамендуем уключыць гÑтую опцыю, бо прадукты Microsoft Windows " +#~ "больш не падтрымліваюць паролÑÑž проÑтым Ñ‚ÑкÑтам . У гÑтым выпадку " +#~ "пераканайцеÑÑ, што Ð’Ñ‹ маеце дзейÑны файл /etc/samba/smbpasswd Ñ– што Ð´Ð»Ñ " +#~ "кожнага карыÑтальніка Ñž ім Ñтвораны пароль з дапамогай каманды smbpasswd." + +#~ msgid "daemons" +#~ msgstr "дÑманы" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Якім чынам муÑіць запуÑкацца Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Служба Samba smbd можа запуÑкацца Ñк звычайны дÑман, або з дапамогай " +#~ "inetd. Ð Ñкамендаваны падыход -- запуÑк у ÑкаÑці звычайнага дÑмана." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Стварыць базу паролÑÑž samba у файле /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Каб адпавÑдаць Ñтандартным наладкам большаÑці верÑÑ–ÑÑž Windows, Samba " +#~ "муÑіць выкарыÑтоўваць ÑˆÑ‹Ñ„Ñ€Ð°Ð²Ð°Ð½Ñ‹Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ–. Ð”Ð·ÐµÐ»Ñ Ð³Ñтага паролі Ñ‚Ñ€Ñба " +#~ "захоўваць у меÑцы, адрозным ад файлу /etc/passwd. Ðдпаведнае Ñховішча " +#~ "можна Ñтварыць аўтаматычна, але паролі Ñ‚Ñ€Ñба дадаваць ÑамаÑтойна з " +#~ "дапамогай каманды smbpasswd, Ñ– Ñачыць за Ñ–Ñ… адпаведнаÑцю надалей." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Калі Ñховішча не будзе Ñтворана, Ñ‚Ñ€Ñба пераналадзіць Samba (Ñ–, верагодна, " +#~ "кліентÑÐºÑ–Ñ Ð¼Ð°ÑˆÑ‹Ð½Ñ‹ такÑама) такім чынам, каб выкарыÑтоўваць паролі проÑтым " +#~ "Ñ‚ÑкÑтам." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Больш інфармацыі даÑтупна Ñž файле /usr/share/doc/samba-doc/htmldocs/" +#~ "Samba3-Developers-Guide/pwencrypt.html ÑŽ" diff --git a/debian/po/bg.po b/debian/po/bg.po new file mode 100644 index 0000000..6ca2e35 --- /dev/null +++ b/debian/po/bg.po @@ -0,0 +1,264 @@ +# translation of bg.po to Bulgarian +# +# Damyan Ivanov <dam@modsoftsys.com>, 2006, 2007. +# Damyan Ivanov <dmn@debian.org>, 2008. +msgid "" +msgstr "" +"Project-Id-Version: samba_3.0.23c-1_bg\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2008-06-17 14:00+0300\n" +"Last-Translator: Damyan Ivanov <dmn@debian.org>\n" +"Language-Team: Bulgarian <dict@fsa-bg.org>\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Да Ñе промени ли smb.conf да взима наÑтройките за WINS от DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Ðко компютърът получава Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° мрежовите наÑтройки от DHCP-Ñървър, " +"този метод може да Ñе използва и за получаване на Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° наличните " +"WINS-Ñървъри (Ñървъри за имена NetBIOS). За целта е необходимо да Ñе промени " +"файлът Ñ Ð½Ð°Ñтройки smb.conf, така че WINS-наÑтройките да Ñе взимат от /var/" +"lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "Тази наÑтройки изиÑква инÑталирането на пакета dhcp-client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Ðвтоматична наÑтройка на smb.conf?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"ОÑтаналата чаÑÑ‚ от наÑтройката на Samba изиÑква промени на параметри в smb." +"conf (файлът Ñ Ð½Ð°Ñтройки за smbd и nmbd). Ð’ момента smb.conf Ñъдържа " +"директива „include“, коÑто може да обърка процеÑа на автоматична наÑтройка. " +"Ðко това Ñе Ñлучи ще Ñе наложи ръчно да поправите smb.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Ðко не изберете тази наÑтройка, нÑма да можете да Ñе възползвате от " +"автоматичните промени на файла Ñ Ð½Ð°Ñтройки при обновÑване на пакета." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Работна група/домейн:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Въведете името на работната група, от коÑто ще бъде чаÑÑ‚ компютъра. Този " +"параметър контролира името на компютъра, когато Ñе използва като Ñървър, " +"работната група по подразбиране при разглеждане на мрежата и името на " +"домейна, което ще Ñе използва при наÑтройката „security=domain“." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "ОбновÑване от Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "Конфигурационните файлове на Samba 3 могат да бъдат преработени за работа " +#~ "ÑÑŠÑ Samba 4. При Ñложни конфигурации това може да не даде добър резултат, " +#~ "но в повечето Ñлучаи би Ñ‚Ñ€Ñбвало да даде добра първоначална наÑтройка." + +#, fuzzy +#~ msgid "Realm name:" +#~ msgstr "ОблаÑÑ‚:" + +#~ msgid "Use password encryption?" +#~ msgstr "Шифриране на паролите?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Ð’Ñички Ñъвременни верÑии на Windows използват шифрирани пароли за връзка " +#~ "ÑÑŠÑ Ñървъри по протокол SMB/CIFS. Използването на пароли без шифриране е " +#~ "възможно Ñамо Ñлед промени в региÑтъра на Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Използването на шифрирани пароли е Ñилно препоръчително, понеже " +#~ "продуктите Microsoft Windows вече не поддържат нешифрирани пароли. " +#~ "Проверете дали файлът /etc/samba/smbpasswd е правилен и използвайте " +#~ "програмата smbpasswd за задаване на паролите на потребителите." + +#~ msgid "daemons" +#~ msgstr "фонов процеÑ" + +#~ msgid "inetd" +#~ msgstr "при нужда" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Как да Ñе Ñтартира Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "ОÑновниÑÑ‚ Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð½Ð° Samba, smbd, може да бъде изпълнÑван при нужда или " +#~ "като фонов Ð¿Ñ€Ð¾Ñ†ÐµÑ (ÑÑŠÑ Ð·Ð°Ñ€ÐµÐ¶Ð´Ð°Ð½ÐµÑ‚Ð¾ на операционната ÑиÑтема). " +#~ "ПрепоръчителниÑÑ‚ начин за изпълнение е като фонов процеÑ." + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "ÐаÑтройване на Samba 4 като PDC?" + +#~ msgid "" +#~ "Even when using this option, you will need to set up DNS such that it " +#~ "serves the data from the zone file in that directory before you can use " +#~ "the Active Directory domain." +#~ msgstr "" +#~ "При вÑички Ñлучай е необходимо да наÑтроите DNS така, че да използва " +#~ "данните от файла ÑÑŠÑ Ð·Ð¾Ð½Ð°Ñ‚Ð° от тази Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð¿Ñ€ÐµÐ´Ð¸ да можете да " +#~ "използвате домейна на Active Directory." + +#~ msgid "" +#~ "Please specify the Kerberos realm this server will be in. In many cases, " +#~ "this will be the same as the DNS domain name." +#~ msgstr "" +#~ "Въведете името на облаÑтта на Kerberos, в коÑто ще бъде този Ñървър. Ð’ " +#~ "много Ñлучаи облаÑтта Ñъвпада Ñ Ð¸Ð¼ÐµÑ‚Ð¾ в DNS." + +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Въведете името на домейна, в който да Ñе предÑÑ‚Ð°Ð²Ñ Ñървърът при запитване " +#~ "от клиентите." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Създаване на базата данни Ñ Ð¿Ð°Ñ€Ð¾Ð»Ð¸, /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "За ÑъвмеÑтимоÑÑ‚ Ñ Ð¿Ð¾Ð²ÐµÑ‡ÐµÑ‚Ð¾ верÑии на Windows, Samba Ñ‚Ñ€Ñбва да използва " +#~ "шифрирани пароли. Това изиÑква паролите да Ñе ÑъхранÑват във файл, " +#~ "отделен от /etc/passwd. Този файл може да бъде Ñъздаден автоматично, но " +#~ "потребителите и паролите Ñ‚Ñ€Ñбва да Ñе добавÑÑ‚ ръчно чрез командата " +#~ "smbpasswd." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Ðко не Ñъздадете този файл, Ñ‚Ñ€Ñбва да наÑтроите Samba (а вероÑтно и " +#~ "компютрите Ñ Windows) да не използват шифрирани пароли." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð²Ð¸Ð¶Ñ‚Ðµ /usr/share/doc/samba-doc/htmldocs/ENCRYPTION." +#~ "html." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "" +#~ "Ðовата верÑÐ¸Ñ Ð½Ð° samba не поддържа работа Ñ Ð½Ñколко бази данни Ñ Ð¿Ð°Ñ€Ð¾Ð»Ð¸" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "От верÑÐ¸Ñ 3.0.23 нататък, samba не поддържа работа Ñ Ð½Ñколко бази данни Ñ " +#~ "пароли в параметъра „passdb backend“. Изглежда, че във файла Ñ Ð½Ð°Ñтройки " +#~ "„smb.conf“ този параметър Ñъдържа ÑпиÑък Ñ Ð½Ñколко бази данни Ñ Ð¿Ð°Ñ€Ð¾Ð»Ð¸. " +#~ "Ðовата верÑÐ¸Ñ Ð½Ð° samba нÑма да работи докато не коригирате това." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "Да Ñе премеÑти ли /etc/samba/smbpasswd във /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 въвежда по-пълна база Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ð¸, коÑто прави излишен /etc/" +#~ "samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Потвърдете дали желаете ÑъщеÑтвуващиÑÑ‚ /etc/samba/smbpasswd да бъде " +#~ "мигриран автоматично към /var/lib/samba/passdb.tdb. Ðе избирайте тази " +#~ "наÑтройка ако планирате да използвате друг начин на удоÑтоверÑване " +#~ "(например LDAP)." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "За повече Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð²Ð¸Ð¶Ñ‚Ðµ /usr/share/doc/samba-doc/htmldocs/Samba3-" +#~ "Developers-Guide/pwencrypt.html." diff --git a/debian/po/bn.po b/debian/po/bn.po new file mode 100644 index 0000000..9a31333 --- /dev/null +++ b/debian/po/bn.po @@ -0,0 +1,178 @@ +# Bengali translation of Samba +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Md. Rezwan Shahid <rezwan@ankur.org.bd>, 2009. +msgid "" +msgstr "" +"Project-Id-Version: Samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2009-04-16 12:12+0600\n" +"Last-Translator: Md. Rezwan Shahid <rezwan@ankur.org.bd>\n" +"Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n" +"Language: bn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: WordForge 0.5-beta1\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "DHCP থেকে WINS সেটিং বà§à¦¯à¦¬à¦¹à¦¾à¦°à§‡à¦° জনà§à¦¯ smb.conf সমà§à¦ªà¦¾à¦¦à¦¨à¦¾ করা হবে?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"যদি আপনার কমà§à¦ªà¦¿à¦‰à¦Ÿà¦¾à¦° তার আইপি ঠিকানার তথà§à¦¯ নেটওয়ারà§à¦•à§‡à¦° à¦à¦•à¦Ÿà¦¿ DHCP সারà§à¦à¦¾à¦° থেকে " +"পায়, তাহলে DHCP সারà§à¦à¦¾à¦° নেটওয়ারà§à¦•à§‡ উপসà§à¦¥à¦¿à¦¤ WINS সারà§à¦à¦¾à¦° (\"NetBIOS name servers" +"\") সমà§à¦ªà¦°à§à¦•à§‡à¦“ তথà§à¦¯ দিতে পারে। à¦à¦¤à§‡ আপনার smb.conf ফাইলে à¦à¦•à¦Ÿà§ পরিবরà§à¦¤à¦¨ করতে হবে যেন " +"DHCP-পà§à¦°à¦¦à¦¤à§à¦¤ WINS সেটিং সà§à¦¬à§Ÿà¦‚কà§à¦°à¦¿à§Ÿà¦à¦¾à¦¬à§‡ /var/lib/samba/dhcp.conf থেকে পড়া হয়।" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"à¦à¦‡ বৈশিষà§à¦Ÿà§à¦¯à§‡à¦° সà§à¦¬à¦¿à¦§à¦¾ নেয়ার জনà§à¦¯ dhcp-কà§à¦²à¦¾à§Ÿà§‡à¦¨à§à¦Ÿ পà§à¦¯à¦¾à¦•à§‡à¦œ অবশà§à¦¯à¦‡ ইনà§à¦¸à¦Ÿà¦² করা থাকতে হবে।" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "সà§à¦¬à§Ÿà¦‚কà§à¦°à¦¿à§Ÿà¦à¦¾à¦¬à§‡ smb.conf কনফিগার করা হবে?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"সামà§à¦¬à¦¾ কনফিগারেশনের বাকি অংশ পà§à¦°à¦¶à§à¦¨ নিয়ে কাজ করে যা /etc/samba/smb.conf (যেটি " +"সামà§à¦¬à¦¾ পà§à¦°à§‹à¦—à§à¦°à¦¾à¦®, যেমন nmbd à¦à¦¬à¦‚ smbd, কনফিগার করার জনà§à¦¯ বà§à¦¯à¦¬à¦¹à¦¾à¦° করা হয়) à¦à¦° " +"পà§à¦¯à¦¾à¦°à¦¾à¦®à¦¿à¦Ÿà¦¾à¦° পরিবরà§à¦¤à¦¨ করে। আপনার বরà§à¦¤à¦®à¦¾à¦¨ smb.conf à¦à¦•à¦Ÿà¦¿ \"include\" লাইন বা à¦à¦•à¦Ÿà¦¿ " +"অপশন ধারন করে যা à¦à¦•à¦¾à¦§à¦¿à¦• লাইন বরà§à¦§à¦¿à¦¤ করে, যা সà§à¦¬à§Ÿà¦‚কà§à¦°à¦¿à§Ÿ কনফিগারেশন পà§à¦°à¦•à§à¦°à¦¿à§Ÿà¦¾à¦¤à§‡ " +"à¦à¦•à¦Ÿà¦¿ দà§à¦¬à¦¿à¦§à¦¾ তৈরি করতে পারে à¦à¦¬à¦‚ আপনার smb.conf মà§à¦¯à¦¾à¦¨à§à§Ÿà¦¾à¦²à§€ সমà§à¦ªà¦¾à¦¦à¦¨à¦¾ করতে হতে পারে " +"কাজ করার জনà§à¦¯à¥¤" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"যদি আপনি à¦à¦‡ অপশনটি নিরà§à¦¬à¦¾à¦šà¦¨ না করেন, আপনাকে যেকোনো কনফিগারেশন পরিবরà§à¦¤à¦¨ নিজেকেই " +"হà§à¦¯à¦¾à¦¨à§à¦¡à¦² করতে হবে, à¦à¦¬à¦‚ আপনি পিরিয়ডিক কনফিগারেশন à¦à¦¨à¦¹à§à¦¯à¦¾à¦¨à§à¦¸à¦®à§‡à¦¨à§à¦Ÿà§‡à¦° সà§à¦¬à¦¿à¦§à¦¾ নিতে " +"পারবেন না।" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "ওয়ারà§à¦•à¦—à§à¦°à§à¦ª/ডোমেইন নাম:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"অনà§à¦—à§à¦°à¦¹ করে à¦à¦‡ সিসà§à¦Ÿà§‡à¦®à§‡à¦° জনà§à¦¯ ওয়ারà§à¦•à¦—à§à¦°à§à¦ª উলà§à¦²à§‡à¦– করà§à¦¨à¥¤ সারà§à¦à¦¾à¦° হিসেবে বà§à¦¯à¦¬à¦¹à¦¾à¦°à§‡à¦° সময় " +"সিসà§à¦Ÿà§‡à¦® কোন ওয়ারà§à¦•à¦—à§à¦°à§à¦ªà§‡à¦° হয়ে দেখা দেবে, অনেক ফà§à¦°à¦¨à§à¦Ÿà¦à¦¨à§à¦¡à§‡à¦° সাথে বà§à¦°à¦¾à¦‰à¦œà¦¿à¦‚ à¦à¦° সময় " +"বà§à¦¯à¦¬à¦¹à§ƒà¦¤ ডিফলà§à¦Ÿ ওয়ারà§à¦•à¦—à§à¦°à§à¦ª, à¦à¦¬à¦‚ \"security=domain\" সেটিং ঠবà§à¦¯à¦¬à¦¹à§ƒà¦¤ ডোমেইন নাম à¦à¦‡ " +"সেটিং নিয়নà§à¦¤à§à¦°à¦¨ করে।" + +#~ msgid "Use password encryption?" +#~ msgstr "পাসওয়ারà§à¦¡ à¦à¦¨à¦•à§à¦°à¦¿à¦ªà¦¶à¦¨ বà§à¦¯à¦¬à¦¹à¦¾à¦° করা হবে?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "সকল সামà§à¦ªà§à¦°à¦¤à¦¿à¦• উইনà§à¦¡à§‹ কà§à¦²à¦¾à§Ÿà§‡à¦¨à§à¦Ÿ à¦à¦¨à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ করা পাসওয়ারà§à¦¡ বà§à¦¯à¦¬à¦¹à¦¾à¦° করে SMB/CIFS " +#~ "সারà§à¦à¦¾à¦°à§‡à¦° সাথে যোগাযোগ করে। যদি আপনি সরল টেকà§à¦¸à¦Ÿ পাসওয়ারà§à¦¡ বà§à¦¯à¦¬à¦¹à¦¾à¦° করতে চান " +#~ "তাহলে আপনার উইনà§à¦¡à§‹à¦œ রেজিসà§à¦Ÿà§à¦°à¦¿à¦¤à§‡ à¦à¦•à¦Ÿà¦¿ পà§à¦¯à¦¾à¦°à¦¾à¦®à¦¿à¦Ÿà¦¾à¦° পরিবরà§à¦¤à¦¨ করতে হবে।" + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "à¦à¦‡ অপশনটি সকà§à¦°à¦¿à§Ÿ করা সà§à¦ªà¦¾à¦°à¦¿à¦¶à¦•à§ƒà¦¤ কারন মাইকà§à¦°à§‹à¦¸à¦«à¦Ÿ উইনà§à¦¡à§‹à¦œ পà§à¦°à§‹à¦¡à¦¾à¦•à§à¦Ÿà§‡ à¦à¦–ন আর সরল " +#~ "টেকà§à¦¸à¦Ÿ পাসওয়ারà§à¦¡ মেইনটেইন করা হয় না। যদি আপনি করেন তাহলে নিশà§à¦šà¦¿à¦¤ হয়ে নিন যে " +#~ "আপনার à¦à¦•à¦Ÿà¦¿ বৈধ /etc/samba/smbpasswd ফাইল আছে à¦à¦¬à¦‚ আপনি সেখানে smbpasswd " +#~ "কমানà§à¦¡ বà§à¦¯à¦¬à¦¹à¦¾à¦° করে পà§à¦°à¦¤à§à¦¯à§‡à¦• বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦•à¦¾à¦°à§€à¦° জনà§à¦¯ পাসওয়ারà§à¦¡ সেট করেন।" + +#~ msgid "daemons" +#~ msgstr "ডিমন" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "আপনি সামà§à¦¬à¦¾ কিà¦à¦¾à¦¬à§‡ চালাতে চান?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "সামà§à¦¬à¦¾ ডিমন smbd à¦à¦•à¦Ÿà¦¿ সাধারন ডিমন হিসেবে বা inetd থেকে চালানো যেতে পারে। " +#~ "ডিমন হিসেবে চালানো সà§à¦ªà¦¾à¦°à¦¿à¦¶à¦•à§ƒà¦¤à¥¤" + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "সামà§à¦¬à¦¾ পাসওয়ারà§à¦¡ ডেটাবেজ তৈরি করা হবে, /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "উইনà§à¦¡à§‹à¦œà§‡à¦° বেশিরà¦à¦¾à¦— সংসà§à¦•à¦°à¦¨à§‡à¦° ডিফলà§à¦Ÿà§‡à¦° সাথে সামঞà§à¦œà¦¸à§à¦¯à¦ªà§‚রà§à¦£ হওয়ার জনà§à¦¯ সামà§à¦¬à¦¾à¦•à§‡ " +#~ "অবশà§à¦¯à¦‡ à¦à¦¨à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ করা পাসওয়ারà§à¦¡ বà§à¦¯à¦¬à¦¹à¦¾à¦° করার জনà§à¦¯ কনফিগার করতে হবে। à¦à¦° ফলে " +#~ "বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦•à¦¾à¦°à§€à¦° পাসওয়ারà§à¦¡ /etc/passwd থেকে পৃথক à¦à¦•à¦Ÿà¦¿ ফাইলে সংরকà§à¦·à¦¨ করতে হবে। à¦à¦‡ " +#~ "ফাইলটি সà§à¦¬à§Ÿà¦‚কà§à¦°à¦¿à§Ÿà¦à¦¾à¦¬à§‡ তৈরি করা যায়, কিনà§à¦¤à§ পাসওয়ারà§à¦¡ যোগ করতে হবে মà§à¦¯à¦¾à¦¨à§à§Ÿà¦¾à¦²à§€ " +#~ "smbpasswd চালিয়ে à¦à¦¬à¦‚ à¦à¦¬à¦¿à¦·à§à¦¯à¦¤à§‡ আপ-টà§-ডেট রাখতে হবে।" + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "আপনি যদি à¦à¦Ÿà¦¿ তৈরি না করেন, তাহলে সরল টেকà§à¦¸à¦Ÿ পাসওয়ারà§à¦¡ বà§à¦¯à¦¬à¦¹à¦¾à¦°à§‡à¦° জনà§à¦¯ আপনাকে " +#~ "সামà§à¦¬à¦¾ (à¦à¦¬à¦‚ হয়তো আপনার কà§à¦²à¦¾à§Ÿà§‡à¦¨à§à¦Ÿ মেশিনগà§à¦²à§‹) পà§à¦¨à¦°à¦¾à§Ÿ কনফিগার করতে হবে।" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "আরো তথà§à¦¯à§‡à¦° জনà§à¦¯ সামà§à¦¬à¦¾-ডক পà§à¦¯à¦¾à¦•à§‡à¦œ থেকে /usr/share/doc/samba-doc/htmldocs/" +#~ "Samba3-Developers-Guide/pwencrypt.html দেখà§à¦¨à¥¤" diff --git a/debian/po/bs.po b/debian/po/bs.po new file mode 100644 index 0000000..b6eaf22 --- /dev/null +++ b/debian/po/bs.po @@ -0,0 +1,222 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2006-11-01 22:14+0100\n" +"Last-Translator: Safir Secerovic <sapphire@linux.org.ba>\n" +"Language-Team: Bosnian <lokal@linux.org.ba>\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: 3\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Izmijeniti smb.conf za koriÅ¡tenje WINS postavki od DHCP-a?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Ako vaÅ¡ raÄunar dobiva informacije o IP adresama od DHCP servera na mreži, " +"DHCP server može takoÄ‘er pružiti informacije o WINS serverima (\"NetBIOS " +"name servers\") prisutnim na mreži. Ovo zahtijeva izmjenu u vaÅ¡oj smb.conf " +"datoteci tako da WINS postavke dobivene od DHCP-a budu automatski proÄitane " +"iz /var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"dhcp-client paket mora biti instaliran kako bi se iskoristila ova mogućnost." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Podesiti smb.conf automatski?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Ostatak konfiguracije Samba-e se bavi pitanjima koja utiÄu na parametre u /" +"etc/samba/smb.conf, a to je datoteka koja se koristi za podeÅ¡avanje Samba " +"programa (nmbd-a i smbd-a). VaÅ¡a trenutna smb.conf sadrži 'include' liniju " +"ili opciju koja obuhvata nekoliko linija, Å¡to bi moglo zbuniti " +"automatizovani konfiguracioni proces i zahtijevati od vas da ruÄno uredite " +"smb.conf kako bi proradili." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Ako ne odaberete ovu opciju, moraćete sve izmjene konfiguracije sami " +"napraviti i nećete moći iskoristiti periodiÄna poboljÅ¡anja konfiguracije." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Workgroup/Domain Name:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#~ msgid "Use password encryption?" +#~ msgstr "Koristiti enkripciju Å¡ifre?" + +#, fuzzy +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Svi noviji Windows klijenti komuniciraju sa SMB serverima koristeći " +#~ "enkriptovane Å¡ifre. Ako želite koristiti Å¡ifre u vidu Äistog teksta, " +#~ "trebate promijeniti parametar u vaÅ¡em Windows registriju." + +#, fuzzy +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "UkljuÄivanje ove opcije je veoma preporuÄeno. Ako to uradite, pobrinite " +#~ "se da imate ispravnu /etc/samba/smbpasswd datoteku i da u njoj postavite " +#~ "Å¡ifre za svakog korisnika koristeći smbpasswd naredbu." + +#~ msgid "daemons" +#~ msgstr "daemons" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Kako želite pokretati Samba-u?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Samba daemon smbd može biti pokrenut kao normalni daemon ili preko inetd-" +#~ "a. Pokretanje kao daemon je preporuÄeni pristup." + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Molim navedite workgroup u kojoj želite da se ovaj server nalazi prilikom " +#~ "upita od strane klijenata. Primijetite da ovaj parametar takoÄ‘e " +#~ "kontroliÅ¡e domain name koriÅ¡ten u security=domain postavci." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Kreirati samba bazu podataka sa Å¡iframa, /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Kako bi bila kompatibilna s većinom Windows verzija, Samba mora biti " +#~ "podeÅ¡ena da koristi enkriptovane Å¡ifre. Ovo zahtijeva da korisniÄke " +#~ "Å¡ifre budu spremljene u zasebnu datoteku od /etc/passwd. Ova datoteka " +#~ "može biti kreirana automatski, ali Å¡ifre moraju biti dodane ruÄno " +#~ "pokreÄući smbpasswd i ubuduće održavane." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Ako ju ne kreirate, morati ćete rekonfigurisati Samba-u (i vjerovatno " +#~ "vaÅ¡e klijente) da koristi Å¡ifre u obliku Äistog teksta." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Vidjeti /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html iz samba-doc " +#~ "paketa za viÅ¡e detalja." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Premjestiti /etc/samba/smbpasswd u /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 uvodi potpuniji interfejs SAM baze podataka koji zamjenjuje /" +#~ "etc/samba/smbpasswd datoteku. " + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Molim potvrdite da li želite da postojeću smbpasswd datoteku automatski " +#~ "pomijerite u /var/lib/samba/passdb.tdb. Ne koristite ovu opciju ako " +#~ "umjesto toga planirate koristiti drugi pdb backend (poput LDAP-a)." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Vidjeti /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/" +#~ "pwencrypt.html iz samba-doc paketa za viÅ¡e detalja." diff --git a/debian/po/ca.po b/debian/po/ca.po new file mode 100644 index 0000000..389f680 --- /dev/null +++ b/debian/po/ca.po @@ -0,0 +1,284 @@ +# Catalan translation of Samba debconf templates. +# Copyright © 2004, 2006, 2012 Software in the Public Interest, Inc. +# Aleix Badia i Bosch <abadia@ica.es> 2004. +# Jordi Mallach <jordi@debian.org>, 2006, 2012. +msgid "" +msgstr "" +"Project-Id-Version: 4.0.0~alpha17.dfsg2-2\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2012-02-27 00:36+0100\n" +"Last-Translator: Jordi Mallach <jordi@debian.org>\n" +"Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"Voleu modificar el smb.conf perquè utilitzi els parà metres de configuració " +"del WINS del DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Si el vostre ordinador obté la informació referent a la IP a través d'un " +"servidor de DHCP, aquest també li donarà informació sobre els servidors de " +"WINS (\"servidors de nom de NetBIOS\") presents a la xarxa. Aquesta opció " +"precisa d'una modificació del fitxer smb.conf per tal que els parà metres de " +"WINS obtinguts a través del DHCP s'obtinguin a través de la lectura de /var/" +"lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Per beneficiar-vos d'aquesta caracterÃstica cal que sigui instal·lat el " +"paquet dhcp-client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Voleu configurar el smb.conf automà ticament?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"La resta de la configuració del Samba tracta amb qüestions que afecten els " +"parà metres del fitxer de configuració /etc/samba/smb.conf, que utilitzen els " +"programes de Samba. La versió actual del smb.conf conté una lÃnia «include» " +"o una opció que abarca múltiples lÃnies que podria confondre a la " +"configuració automà tica i precisar de la seva edició manual per poder-lo fer " +"funcionar de nou." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Si no escolliu aquesta opció, haureu de gestionar manualment qualsevol canvi " +"de la configuració, i no us podreu beneficiar de les millores periòdiques." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Grup de treball/nom del domini:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Indiqueu el grup de treball per a aquest sistema. Aquest parà metre controla " +"en quin grup de treball apareixerà el sistema quan s'empre com a servidor, " +"el grup de treball per defecte quan es navega amb diferents interfÃcies, i " +"el nom de domini emprat amb el parà metre «security=domain»." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Voleu actualitzar des del Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "És possible migrar els fitxers de configuració existents de Samba 3 a " +#~ "Samba 4. Això és molt possible que falli per a configuracions complexes, " +#~ "però hauria de proveir un bont punt de partida per a la majoria " +#~ "d'instaÅ€lacions existents." + +#~ msgid "Server role" +#~ msgstr "Rol del servidor" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "Els controladors de domini gestionen dominis d'estil NT4 o Active " +#~ "Directory, i proveeixen serveis com el gestor d'identitats i entrades al " +#~ "domini. Cada domini necessita tenir almenys un controlador de domini." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "Els servidors membres poden ser part d'un domini d'estil NT4 o Active " +#~ "Directory, però no proveeixen cap servei de domini. Les estacions de " +#~ "treball o servidors d'impressió son, habitualment, membres normals del " +#~ "domini." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "Un servidor individual no es pot emprar en un domini i només implementa " +#~ "la compartició de fitxers i entrades de l'estil de «Windows for " +#~ "Workgroups»." + +#~ msgid "Realm name:" +#~ msgstr "Nom del reialme:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "Especifiqueu el reialme de Kerberos per al domini controlat per aquest " +#~ "controlador de domini." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "Normalment això és el nom en majúscules del vostre nom DNS." + +#~ msgid "Use password encryption?" +#~ msgstr "Voleu utilitzar el xifrat de contrasenyes?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Tots els clients de Windows recents es comuniquen amb els servidors de " +#~ "SMB/CIFS emprant contrasenyes xifrades. Si voleu utilitzar contrasenyes " +#~ "amb text pla, haureu de modificar el vostre registre de Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "És molt recomanable habilitar aquesta opció, perquè la implementació per " +#~ "a contrasenyes en text clar ja no és disponible als productes de " +#~ "Microsoft Windows. Si ho feu, assegureu-vos de tenir un fitxer /etc/samba/" +#~ "smbpasswd và lid i que hi especifiqueu la contrasenya de cada usuari " +#~ "utilitzant l'ordre smbpasswd." + +#~ msgid "daemons" +#~ msgstr "dimonis" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Com voleu executar el Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "El dimoni de Samba pot executar-se com un dimoni normal o des de l'inetd. " +#~ "És recomanable executar-lo com a dimoni." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "Voleu crear la base de dades de contrasenyes de Samba, /var/lib/samba/" +#~ "passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "El Samba s'ha de configurar perquè utilitzi contrasenyes xifrades per tal " +#~ "que sigui compatible amb la majoria de versions de Windows per defecte. " +#~ "Això implica que les contrasenyes d'usuari s'emmagatzemin a un fitxer " +#~ "diferent del /etc/passwd. Aquest fitxer es pot crear automà ticament, però " +#~ "les contrasenyes s'han d'afegir manualment executant l'ordre smbpasswd i " +#~ "s'han de mantindre actualitzades en el futur." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Si no el creeu, haureu de reconfigurar el Samba (i probablement els " +#~ "vostres ordinadors clients) per tal que utilitzin contrasenyes de text " +#~ "pla." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Per més informació feu una ullada a /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html del paquet samba-doc." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "L'encadenament dels passdb no es permet" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Des de la versió 3.0.23, Samba ja no permet l'encadenament de més d'un " +#~ "passdb al parà metre «passdb backend». Sembla que el vostre smb.conf conté " +#~ "un parà metre «passdb backend» que consta d'una llista de rerefons. La " +#~ "nova versió de Samba no funcionarà fins que ho corregiu." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Voleu moure /etc/samba/smbpasswd a /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "El Samba 3.0 introdueix una interfÃcie de base de dades de SAM més " +#~ "completa que reemplaça el fitxer /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Confirmeu si voleu que es migri el fitxer smbpasswd a /var/lib/samba/" +#~ "passdb.tdb. No escolliu aquesta opció si la vostra intenció és utilitzar " +#~ "un altre rerefons pdb (p. ex., LDAP)." + +#~ msgid "daemons, inetd" +#~ msgstr "dimonis, inetd" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Per més informació feu una ullada a /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html del paquet samba-doc." diff --git a/debian/po/cs.po b/debian/po/cs.po new file mode 100644 index 0000000..22950b2 --- /dev/null +++ b/debian/po/cs.po @@ -0,0 +1,340 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba4\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2013-10-28 13:34+0100\n" +"Last-Translator: Miroslav Kure <kurem@debian.cz>\n" +"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Samba server a nástroje" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Upravit smb.conf, aby použÃval WINS nastavenà z DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Pokud váš poÄÃtaÄ zÃskává IP adresu z DHCP serveru, může vám tento server " +"nabÃzet také informace o WINS serverech (jmenných serverech NetBIOSu), které " +"jsou dostupné ve vaÅ¡Ã sÃti. To vyžaduje zásah do souboru smb.conf, kde se " +"nastavÃ, aby se informace o WINS serverech naÄÃtaly ze souboru /var/lib/samba" +"/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Pro využità této vlastnosti musÃte mÃt nainstalovaný balÃk dhcp-client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Konfigurovat smb.conf automaticky?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Zbytek konfigurace Samby se zabývá otázkami, které mÄ›nà parametry v /etc/" +"samba/smb.conf, což je soubor použÃvaný pro nastavenà programů nmbd a smbd " +"(dohromady tvořà Sambu). Váš stávajÃcà smb.conf obsahuje řádek „include“ " +"nebo volbu, která se táhne pÅ™es vÃce řádků, což může zmást proces " +"automatického nastavenà a může způsobit, že pro znovuzprovoznÄ›nà Samby " +"budete muset upravit smb.conf ruÄnÄ›." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Pokud tuto možnost nepovolÃte, budete muset zvládnout vÅ¡echna nastavenà sami " +"a nebudete moci využÃvat výhod pravidelných vylepÅ¡enà tohoto souboru." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Skupina/název domény:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Zadejte jméno skupiny, do které má poÄÃtaÄ patÅ™it. PÅ™i použità poÄÃtaÄe v " +"roli serveru se klientům bude jevit, že server patřà do zadané skupiny. " +"Jméno skupiny se také použije jako výchozà skupina v různých programech pro " +"procházenà sÃtÃ. A koneÄnÄ› tento parametr urÄuje název domény v pÅ™Ãpadech, " +"kdy použÃváte nastavenà „security=domain“." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "PÅ™ejÃt ze Samby 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "StávajÃcà konfiguraÄnà soubory Samby 3 je možno pÅ™evést do Samby 4. " +#~ "PÅ™evod složitÄ›jÅ¡Ãch nastavenà nejspÃÅ¡e selže, avÅ¡ak pro vÄ›tÅ¡inu instalacà " +#~ "by mÄ›l poskytnout solidnà základ." + +#~ msgid "Server role" +#~ msgstr "Role serveru" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "Doménové Å™adiÄe spravujà domény typu NT4 nebo Active Directory a " +#~ "poskytujà služby typu správa identit a pÅ™ihlášenà do domény. Každá doména " +#~ "musà mÃt alespoň jeden doménový Å™adiÄ." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "ÄŒlenské servery mohou být souÄástà domény typu NT4 nebo Active Directory, " +#~ "ale samy neposkytujà žádné doménové služby. Typicky to bývajà běžné " +#~ "pracovnà stanice nebo souborové a tiskové servery." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "Samostatný server nelze použÃt v doménÄ› a podporuje pouze sdÃlenà souborů " +#~ "a pÅ™ihlaÅ¡ovánà ve stylu Windows for Workgroups." + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "NezvolÃte-li žádnou roli, Samba server nebude zprovoznÄ›n, takže to může " +#~ "uživatel provést ruÄnÄ›." + +#~ msgid "Realm name:" +#~ msgstr "Název Å™ÃÅ¡e:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "Zadejte název kerberovy Å™ÃÅ¡e pro doménu, kterou spravuje tento doménový " +#~ "Å™adiÄ." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "Obvykle to bývá DNS jméno poÄÃtaÄe napsané velkými pÃsmeny." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "Nové heslo Samba uživatele „administrator“:" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "Ponecháte-li prázdné, vygeneruje se náhodné heslo." + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "Heslo můžete nastavit pozdÄ›ji spuÅ¡tÄ›nÃm jako uživatel root:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "Zopakujte heslo pro Samba uživatele „administrator“:" + +#~ msgid "Password input error" +#~ msgstr "Chyba zadánà hesla" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "Zadaná hesla nejsou stejná. Zkuste to prosÃm znovu." + +#~ msgid " $ samba-tool user setpassword administrator" +#~ msgstr " $ samba-tool user setpassword administrator" + +#~ msgid "Use password encryption?" +#~ msgstr "PoužÃt Å¡ifrovánà hesel?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "VÅ¡ichni souÄasnà windowsovà klienti použÃvajà pro komunikaci se SMB/CIFS " +#~ "servery Å¡ifrovaná hesla. Pokud chcete použÃt hesla neÅ¡ifrovaná, musÃte " +#~ "zmÄ›nit jeden parametr v registrech systému Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Povolenà této volby je silnÄ› doporuÄeno, protože podpora neÅ¡ifrovaných " +#~ "hesel již nenà v Microsoft Windows dále udržována. Dáte-li na naÅ¡i radu, " +#~ "mÄ›li byste se ujistit, že máte platný soubor /etc/samba/smbpasswd a že v " +#~ "nÄ›m nastavÃte hesla vÅ¡ech uživatelů pÅ™Ãkazem smbpasswd." + +#~ msgid "Samba server" +#~ msgstr "Samba server" + +#~ msgid "daemons" +#~ msgstr "démoni" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Jak chcete spouÅ¡tÄ›t Sambu?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Server Samby smbd může běžet jako obyÄejný daemon (doporuÄeno), nebo se " +#~ "může spouÅ¡tÄ›t z inetd." + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "Nastavit Sambu 4 jako PDC?" + +#~ msgid "" +#~ "Even when using this option, you will need to set up DNS such that it " +#~ "serves the data from the zone file in that directory before you can use " +#~ "the Active Directory domain." +#~ msgstr "" +#~ "I když tuto volbu vyberete, pořád budete muset pÅ™ed použÃvánÃm Active " +#~ "Directory domény nastavit DNS server tak, aby vracel data ze zónového " +#~ "souboru v daném adresáři." + +#~ msgid "" +#~ "Please specify the Kerberos realm this server will be in. In many cases, " +#~ "this will be the same as the DNS domain name." +#~ msgstr "" +#~ "Zadejte prosÃm kerberovu Å™ÃÅ¡i, do které bude tento server patÅ™it. V mnoha " +#~ "pÅ™Ãpadech je Å™ÃÅ¡e shodná s doménovým DNS jménem." + +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Zadejte prosÃm jméno domény, do které má server patÅ™it (resp. se to tak " +#~ "bude jevit klientům)." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "VytvoÅ™it databázi hesel /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Aby byla Samba kompatibilnà s výchozÃm nastavenÃm vÄ›tÅ¡iny verzà Windows, " +#~ "musà být nastavena pro použÃvánà šifrovaných hesel. To vyžaduje, aby byla " +#~ "uživatelská hesla uložena v jiném souboru než /etc/passwd. Tento soubor " +#~ "může být vytvoÅ™en automaticky, ale hesla do nÄ›j musÃte pÅ™idat ruÄnÄ› " +#~ "programem smbpasswd a také ho musÃte udržovat aktualizovaný." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Pokud soubor nevytvoÅ™Ãte, budete muset nastavit Sambu (a pravdÄ›podobnÄ› " +#~ "také klienty), aby použÃvali neÅ¡ifrovaná hesla." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Podrobnosti naleznete v souboru /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html z balÃku samba-doc." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "ŘetÄ›zenà backendů passdb nenà podporováno" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "PoÄÃnaje verzi 3.0.23 již Samba v parametru \"passdb backend\" " +#~ "nepodporuje Å™etÄ›zenà nÄ›kolika backendů. Zdá se, že váš soubor smb.conf " +#~ "obsahuje v parametru passdb backend nÄ›kolik backendů. Dokud to " +#~ "neopravÃte, nová verze Samby nebude fungovat." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "PÅ™esunout /etc/samba/smbpasswd do /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 zavedla nové, kompletnÄ›jÅ¡Ã rozhranà k SAM databázi, jež " +#~ "pÅ™ekonává původnà soubor /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "ProsÃm potvrÄte, zda chcete automaticky pÅ™evést stávajÃcà soubor " +#~ "smbpasswd na /var/lib/samba/passwd.tdb. Pokud plánujete použÃt jinou pdb " +#~ "databázi (tÅ™eba LDAP), mÄ›li byste odpovÄ›dÄ›t zápornÄ›." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Podrobnosti naleznete v souboru /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html z balÃku samba-doc." diff --git a/debian/po/da.po b/debian/po/da.po new file mode 100644 index 0000000..5439a55 --- /dev/null +++ b/debian/po/da.po @@ -0,0 +1,198 @@ +# Danish translation samba4. +# Copyright (C) 2013 samba4 & nedenstÃ¥ende oversættere. +# This file is distributed under the same license as the samba4 package. +# Claus Hindsgaul <claus_h@image.dk>, 2004. +# Claus Hindsgaul <claus.hindsgaul@gmail.com>, 2006, 2007. +# Joe Hansen <joedalton2@yahoo.dk>, 2010, 2012, 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: samba4\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2013-10-26 19:21+0100\n" +"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n" +"Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Sambaserver og -redskaber" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Ret smb.conf, sÃ¥ den benytter WINS-indstillinger fra DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Hvis din computer fÃ¥r IP-adresseoplysninger fra en DHCP-server pÃ¥ netværket, " +"kan DHCP-serveren ogsÃ¥ give oplysninger om WINS-servere (»NetBIOS " +"navneservere«) pÃ¥ netværket. Dette kræver en ændring i din smb.conf-fil, sÃ¥ " +"WINS-indstillingerne fra DHCP-serveren automatisk indlæses fra /var/lib/samba" +"/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Pakken dhcp-client skal være installeret, for at kunne udnytte denne " +"funktion." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Sæt smb.conf op automatisk?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Resten af Samba-opsætningen drejer sig om spørgsmÃ¥l, der vedrører " +"indstillingerne i filen /etc/samba/smb.conf, som benyttes til at sætte Samba-" +"programmerne (nmbd og smbd) op. Din nuværende smb.conf indeholder en " +"'include'-linje eller en indstilling, der fylder flere linjer, hvilket kan " +"forvirre den automatiske opsætning, og kræver at du redigerer din smb.conf " +"selv for at fÃ¥ den til at fungere igen." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Hvis du ikke vælger denne indstilling, mÃ¥ du selv hÃ¥ndtere ændringer i " +"opsætningen, og vil ikke kunne drage nytte af de løbende forbedringer i " +"opsætningen." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Arbejdsgruppe/domænenavn:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Angiv venligst arbejdsgruppen for dette system. Denne indstilling kontroller " +"hvilken arbejdsgruppe systemet vil fremgÃ¥ i, nÃ¥r den bruges som en server, " +"standardarbejdsgruppen der bruges nÃ¥r der browses med forskellige " +"grænseflader, og domænenavnet brugt med indstillingen »security=domain«." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Opgradere fra Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "Det er muligt at migrere de eksisterende konfigurationsfiler fra Samba 3 " +#~ "til Samba 4. Det er sandsynligt, at det vil mislykkes for komplekse " +#~ "opsætninger, men bør tilbyde et godt udgangspunkt for de fleste " +#~ "eksisterende installationer." + +#~ msgid "Server role" +#~ msgstr "Serverrolle" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "Domænecontrollere hÃ¥ndterer NT4-lignende domæner eller Active Directory-" +#~ "domæner og tilbyder tjenester sÃ¥som identitetshÃ¥ndtering og domænelogind. " +#~ "Hvert domæne kræver mindst en domænecontroller." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "Medlemsservere kan være en del af et NT4-lignende domæne eller Active " +#~ "Directory-domæne men tilbyder ikke nogen domænetjenester. " +#~ "Arbejdsstationer og fil- eller udskrivningsservere er normalt " +#~ "standarddomænemedlemmer." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "En uafhængig server kan ikke bruges i et domæne og understøtter kun " +#~ "fildeling og Windows for Workgroups-lignende logind." + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "Hvis ingen serverrolle er angivet, sÃ¥ vil Sambaserveren blive klargjort, " +#~ "sÃ¥ dette kan gøres manuelt af brugeren." + +#~ msgid "Realm name:" +#~ msgstr "OmrÃ¥denavn (realm):" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "Angiv venligst KerberosomrÃ¥det (realm) for domænet som denne " +#~ "domænecontroller kontrollerer." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "" +#~ "Normalt er dette en version skrevet med stort bogstav for dit DNS-" +#~ "værtsnavn." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "Ny adgangskode for Sambas »administratorbruger«:" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "" +#~ "Hvis feltet efterlades tomt vil en vilkÃ¥rlig adgangskode blive oprettet." + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "En adgangskode kan angives senere ved at køre, som root:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "Gentag adgangskode for Sambas »administratorbruger«:" + +#~ msgid "Password input error" +#~ msgstr "Indtastningsfejl for adgangskode" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "De to adgangskoder du indtastede var ikke ens. Prøv igen." + +#~ msgid " $ samba-tool user setpassword administrator" +#~ msgstr " $ samba-tool user setpassword administrator" diff --git a/debian/po/de.po b/debian/po/de.po new file mode 100644 index 0000000..d4c47a9 --- /dev/null +++ b/debian/po/de.po @@ -0,0 +1,319 @@ +# translation of debconf templates for samba 4.0 to German +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# Holger Wansing <linux@wansing-online.de>, 2006-2013. +# Martin Krüger <mkrueger@mkru.de>, 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: samba4 4.0.10+dfsg-3\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2013-11-10 10:46+0100\n" +"Last-Translator: Holger Wansing <linux@wansing-online.de>\n" +"Language-Team: German <debian-l10n-german@lists.debian.org>\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Samba-Server und Hilfsprogramme" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"Soll smb.conf so abgeändert werden, dass per DHCP angebotene WINS-" +"Einstellungen verwendet werden?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Wenn Ihr Computer IP-Adress-Informationen von einem DHCP-Server im Netzwerk " +"bezieht, ist es möglich, dass der DHCP-Server auch Informationen über im " +"Netz vorhandene WINS-Server (»NetBIOS-Name-Server«) zur Verfügung stellt. " +"Eine Änderung der Datei smb.conf ist erforderlich, damit die über DHCP " +"angebotenen WINS-Einstellungen automatisch aus der Datei /etc/samba/dhcp." +"conf übernommen werden." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Sie müssen das Paket dhcp-client installiert haben, um diese Funktionalität " +"nutzen zu können." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Soll smb.conf automatisch konfiguriert werden?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Der Rest der Konfiguration von Samba betrifft Fragen über Parameter in /etc/" +"samba/smb.conf (das ist die Datei, die genutzt wird, um die Samba-Programme " +"(nmbd und smbd) zu konfigurieren). Ihre aktuelle smb.conf enthält eine " +"»include«-Zeile oder eine mehrzeilige Option. Dies kann den automatischen " +"Konfigurationsprozess stören, so dass Sie eventuell Ihre smb.conf-Datei " +"manuell korrigieren müssen, um Samba wieder zum Laufen zu bekommen." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Wenn Sie diese Option nicht wählen, werden Sie jede Änderung an der " +"Konfiguration manuell vornehmen müssen und können nicht den Vorteil von " +"regelmäßigen Verbesserungen an der Konfiguration nutzen." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Arbeitsgruppen-/Domain-Name:" + +# +# +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Bitte geben Sie die Arbeitsgruppe für dieses System an. Diese Einstellung " +"beeinflußt, in welcher Arbeitsgruppe das System erscheint, wenn es als " +"Server verwendet wird, die zu verwendende Standard-Arbeitsgruppe, wenn das " +"Netzwerk mit verschiedenen Programmen durchsucht wird sowie den Domain-" +"Namen, der für die Einstellung »security=domain« verwendet wird." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Upgrade von Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "Es ist möglich, die vorhandenen Konfigurationsdateien von Samba 3 nach " +#~ "Samba 4 zu migrieren. Zwar könnte dies in komplexen Situationen " +#~ "fehlschlagen, aber für die meisten vorhandenen Installationen sollte es " +#~ "ein guter Anfang sein." + +#~ msgid "Server role" +#~ msgstr "Funktion des Servers" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "Domain-Controller verwalten Domains im NT4-Stil oder Active-Directory-" +#~ "Domains und bieten Dienste wie Identitätsmanagement und Domain-" +#~ "Anmeldungen. Jede Domain benötigt mindestens einen Domain-Controller." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "Mitglieds-Server können Teil einer Domain im NT4-Stil oder einer Active-" +#~ "Directory-Domain sein, stellen aber keine Domain-Dienste zur Verfügung. " +#~ "Arbeitsplatz-Rechner und Datei- oder Druck-Server sind üblicherweise " +#~ "reguläre Domain-Mitglieder." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "Ein autonomer Einzel-Server kann nicht in einer Domain genutzt werden und " +#~ "unterstützt lediglich Dateifreigaben sowie Anmeldungen im Windows-for-" +#~ "Workgroups-Stil." + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "Falls Sie keine Server-Funktion angeben, wird der Samba-Server nicht für " +#~ "diese Funktion vorgesehen, daher kann dies anschließend manuell durch den " +#~ "Benutzer erledigt werden." + +#~ msgid "Realm name:" +#~ msgstr "Realm-Name:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "Bitte geben Sie den Kerberos-Realm (Verwaltungsbereich) für die Domain " +#~ "an, die dieser Domain-Controller verwaltet." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "Ãœblicherweise ist dies Ihr DNS-Hostname in Großbuchstaben." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "Neues Passwort für den Samba-»Administrator«-Benutzer:" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "Wenn Sie dieses Feld leer lassen, wird ein Zufallspasswort erzeugt." + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "" +#~ "Ein Passwort kann später gesetzt werden, indem durch root Folgendes " +#~ "ausgeführt wird:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "Passwort für den Samba-»Administrator«-Benutzer wiederholen:" + +#~ msgid "Password input error" +#~ msgstr "Passwort-Eingabefehler" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "" +#~ "Die zwei eingegebenen Passwörter sind nicht identisch. Bitte versuchen " +#~ "Sie es noch einmal." + +#~ msgid " $ samba-tool user setpassword administrator" +#~ msgstr " $ samba-tool user setpassword administrator" + +#~ msgid "Use password encryption?" +#~ msgstr "Verschlüsselte Passwörter verwenden?" + +# +# +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Alle aktuellen Windows-Clients kommunizieren mit SMB-/CIFS-Servern " +#~ "mittels verschlüsselter Passwörter. Wenn Sie Klartext-Passwörter " +#~ "verwenden möchten, müssen Sie einen Parameter in der Windows-Registry " +#~ "ändern." + +# +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Es wird dringendst empfohlen, diese Option zu aktivieren, da die " +#~ "Unterstützung für Klartext-Passwörter in Microsoft-Windows-Produkten " +#~ "nicht länger betreut wird. Wenn Sie dies aktvieren, stellen Sie sicher, " +#~ "dass Sie eine gültige /etc/samba/smbpasswd-Datei haben und dort mittels " +#~ "dem smbpasswd-Befehl Passwörter für alle Benutzer setzen." + +#~ msgid "Samba server" +#~ msgstr "Samba-Server" + +#~ msgid "daemons" +#~ msgstr "Daemon" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Wie möchten Sie Samba starten?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Der Samba-Prozess smbd kann als normaler Hintergrunddienst (Daemon) " +#~ "laufen oder über inetd gestartet werden. Ersteres wird jedoch empfohlen." + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "Samba 4 als PDC einrichten?" + +#~ msgid "" +#~ "Even when using this option, you will need to set up DNS such that it " +#~ "serves the data from the zone file in that directory before you can use " +#~ "the Active Directory domain." +#~ msgstr "" +#~ "Auch wenn Sie diese Option auswählen, müssen Sie, um die Active-Directory-" +#~ "Domain nutzen zu können, das DNS so einrichten, dass es die Daten der " +#~ "Zonendatei aus dem Verzeichnis bereitstellt." + +#~ msgid "" +#~ "Please specify the Kerberos realm this server will be in. In many cases, " +#~ "this will be the same as the DNS domain name." +#~ msgstr "" +#~ "Geben Sie bitte den Kerberos-Realm (Verwaltungsbereich) an, in dem sich " +#~ "dieser Server befinden wird. In vielen Fällen wird dies identisch zum DNS-" +#~ "Domain-Namen sein." + +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Bitte geben Sie die Domain an, in welcher der Server bei Anfragen von " +#~ "Clients erscheinen soll." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Samba-Passwort-Datenbank (/var/lib/samba/passdb.tdb) erstellen?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Um mit den Standards in den meisten Windows-Versionen kompatibel zu sein, " +#~ "muss Samba konfiguriert werden, verschlüsselte Passwörter zu benutzen. " +#~ "Dies erfordert es, Benutzerpasswörter in einer anderen Datei als in /etc/" +#~ "passwd abzulegen. Diese Datei kann automatisch erstellt werden, aber die " +#~ "Passwörter müssen über den Befehl smbpasswd manuell eingefügt werden und " +#~ "in der Zukunft aktuell gehalten werden." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Wenn Sie sie nicht erstellen, müssen Sie Samba (und möglicherweise auch " +#~ "die Clients) neu konfigurieren, so dass diese unverschlüsselte Passwörter " +#~ "benutzen." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Details finden Sie in /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-" +#~ "Guide/pwencrypt.html aus dem samba-doc-Paket." diff --git a/debian/po/dz.po b/debian/po/dz.po new file mode 100644 index 0000000..23049a3 --- /dev/null +++ b/debian/po/dz.po @@ -0,0 +1,241 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba_po.pot\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2007-03-13 02:22+0530\n" +"Last-Translator: translator <pemai_jurmey@hotmail.com>\n" +"Language-Team: dzongkha <pgeyleg@dit.gov.bt>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2;plural=(n!=1);\n" +"X-Poedit-Language: dzongkha\n" +"X-Poedit-Country: bhutan\n" +"X-Poedit-SourceCharset: utf-8\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"ཌི་ཨེཅ་སི་པི་ནང་ལས་ ཌབ་ལུ་ཨའི་ཨེན་ཨེསི་སྒྲིག་སྟངས་ཚུ་ལག་ལེན་འདབ་ནི་ལུ་ smb.conf ལེགས་བཅོས་འབད་ནི་" +"ཨིན་ན་?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"ག་དེམ་ཅིག་འབད་ à½à¾±à½¼à½‘་ཀྱི་གློག་རིག་གིས་ཡོངས་འབྲེལ་གུའི་ཌི་ཨེཅ་སི་པི་སར་བར་ནང་ལས་ ཨའི་པི་à½à¼‹à½–ྱང་བརྡ་དོན་" +"འà½à½¼à½–་པ་ཅིན་ ཌི་ཨེཅ་སི་པི་སར་བར་གིས་ཡང་ ཡོངས་འབྲེལ་གུ་ཡོད་པའི་ ཌབ་ལུ་ཨའི་ཨེན་ཨེསི་སར་བརསི་ " +"(\"NetBIOS name servers\")གི་སà¾à½¼à½¢à¼‹à½£à½¦à¼‹à½–རྡ་དོན་བྱིན་འོང་༠འདི་གི་དོན་ལུ་ à½à¾±à½¼à½‘་རའི་ smb.conf " +"ཡིག་སྣོད་བསྒྱུར་བཅོས་འབད་དགོཔ་ཨིན་ དེ་འབད་བ་ཅིན་ བྱིན་ཡོད་པའི་ཌི་ཨེཅ་སི་པི་ ཌབ་ལུ་ཨའི་ཨེན་ཨེསི་སྒྲིག་" +"སྟངས་འདི་ རང་བཞིན་གྱིས་ /var/lib/samba/dhcp.conf ནང་ལས་ལྷག་འོང་à¼" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"ཌི་ཨེཅ་སི་པི་༣-ཞབས་à½à½¼à½‚་སྤྱོད་མི་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་འདི་ à½à¾±à½‘་རྣམ་འདི་གི་ཕན་à½à½¼à½‚ས་ལུ་གཞི་བཙུགས་འབད་དགོཔ་ཨིནà¼" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "smb.conf འདི་རང་བཞིན་གྱིས་རིམ་སྒྲིག་འབད་ནི་ཨིན་ན?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"སམ་བ་གི་རིམ་སྒྲིག་གཞན་མི་ཚུ་ འདྲི་བ་དང་འབྲེལà½à¼‹à½£à½¦à¼‹ /etc/samba/smb.conf ནང་ཚད་བཟུང་ལུ་ཕན་" +"གནོད་འབྱུངམ་ཨིན་ འདི་ཡང་སམ་བ་ལས་རིམ་ (nmbd and smbd)ཚུ་རིམ་སྒྲིག་འབད་ནི་ལུ་དགོ་པའི་ཡིག་སྣོད་" +"ཨིན༠à½à¾±à½¼à½‘་ཀྱི་ད་ལྟོའི་ smb.conf ནང་ལུ་ 'include'གྲལ་à½à½²à½‚་ ཡངན་ འཕར་ཚད་འགྱོ་མི་གྲལ་à½à½²à½‚་སྣ་མང་གི་" +"གདམ་à½à¼‹à½šà½´à¼‹à½¡à½¼à½‘པ་ཨིན་ དེ་གིས་ རང་བཞིན་ཅན་གྱི་རིམ་སྒྲིག་ལས་སྦྱོར་འདི་ མགུ་འà½à½¼à½˜à¼‹à½–ཅུགཔ་ཨིནམ་དང་ ལོག་སྟེ་ལཱ་" +"འབད་ནིའི་དོན་ལུ་ ལག་པའི་à½à½¼à½‚་ལས་ à½à¾±à½¼à½‘་རའི་smb.conf ཞུན་དག་འབད་དགོཔ་ཨིན༠" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"à½à¾±à½¼à½‘་ཀྱིས་ གདམ་à½à¼‹à½ དི་མ་གདམ་པ་ཅིན་ རིམ་སྒྲིག་གི་འགྱུར་བ་གང་རུང་ཅིག་ à½à¾±à½¼à½‘་རང་གིས་ལེགས་སà¾à¾±à½¼à½„་འà½à½–་དགོཔ་" +"དང་ དུས་མཚམས་རིམ་སྒྲིག་གོང་སྤེལ་གྱི་à½à½ºà¼‹à½•à½“་འà½à½¼à½–་མི་ཚུགསà¼" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "ལཱ་གི་སྡེ་ཚན་/ཌོ་མེན་མིང་:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#~ msgid "Use password encryption?" +#~ msgstr "ཆོག་ཡིག་གསང་བཟོ་ལགལེན་འà½à½–་ནི་ཨིན་ན?" + +#, fuzzy +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "à½à½²à½“་ཌཱསི་ཞབས་à½à½¼à½‚་སྤྱོད་མི་མང་ཤོས་ཅིག་གིས་ གསང་བཟོས་ཆོག་ཡིག་ལག་ལེན་གྱི་à½à½¼à½‚་ལས་ ཨེསི་ཨེམ་བི་སར་" +#~ "བརསི་དང་གཅིག་à½à½¢à¼‹à½–རྒྱུད་འབྲེལ་འà½à½–་ཨིན༠à½à¾±à½¼à½‘་ཀྱིས་ ཚིག་ཡིག་ཆོག་ཡིག་གསལ་à½à½¼à½‚་à½à½¼à¼‹à½…ིག་ལག་ལེན་འà½à½–་དགོ་" +#~ "མནོ་བ་ཅིན་ à½à¾±à½¼à½‘་རའི་à½à½²à½“་ཌཱསི་à½à½¼à¼‹à½–ཀོད་ནང་ལུ་ཚད་བཟུང་ཅིག་བསྒྱུར་བཅོས་འབད་དགོ" + +#, fuzzy +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "གདམ་à½à¼‹à½£à¾•à½¼à½‚ས་ཅན་བཟོ་མི་འདི་གིས་ གནམ་མེད་ས་མེད་འོས་སྦྱོར་འབད་ནི་ཨིན༠དེ་འབད་ནི་ཨིན་པ་ཅིན་ à½à¾±à½¼à½‘་" +#~ "ལུ་ནུས་ལྡན་གྱི་/etc/samba/smbpasswd ཡིག་སྣོད་ཅིག་དགོཔ་དང་ འ་ནི་འདི་à½à¾±à½¼à½‘་ཀྱིས་ smbpasswd " +#~ "བརྡ་བཀོད་ལག་ལེན་གྱི་à½à½¼à½‚་ལས་ ལག་ལེན་པ་རེ་བཞིན་གྱི་དོན་ལས་ དེ་ནང་ལུ་ཆོག་ཡིག་གཞི་སྒྲིག་འབད༠" + +#~ msgid "daemons" +#~ msgstr "ཌེ་མཱོནསི་" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "à½à¾±à½¼à½‘་ཀྱིས་ སམ་བ་འདི་ག་དེ་སྦེ་གཡོག་བཀོལ་དགོ་མནོà½à¼‹à½¦à¾¨à½¼?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "སམ་བ་ཌེ་མཱོན་smbdའདི་ སྤྱིར་བà½à½„་ཌེ་མཱོན་སྦེ་ ཡང་ན་ inetdནང་ལས་ གཡོག་བཀོལ་ཚུགས༠ཌེ་མཱོན་སྦེ་" +#~ "གཡོག་བཀོལ་མི་འདི་ འོས་སྦྱོར་འབད་ཡོད་པའི་རྩར་ལེན་ཨིནà¼" + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "ཞབས་à½à½¼à½‚་སྤྱོད་མི་གིས་འདྲི་དཔྱད་འབདà½à¼‹à½‘་ དེ་ནང་ལུ་སར་བར་འབྱུང་ནི་ཨིན་པའི་ལཱ་གི་སྡེ་ཚན་འདི་གསལ་" +#~ "བཀོད་འབད་གནང་༠ཚད་བཟུང་འདི་གིས་ སྲུང་སà¾à¾±à½¼à½–་=ཌཱ་མཱེན་སྒྲིག་སྟངས་དང་གཅིག་à½à½¢à¼‹à½£à½‚་ལེན་འà½à½–་ཡོད་པའི་" +#~ "ཌཱ་མཱེན་མིང་ཡང་ ཚད་འཛིན་འབདà½à¼‹à½¨à½²à½“མ་དྲན་དགོ" + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "སམ་བ་ཆོག་ཡིག་གནད་སྡུད་གཞི་རྟེན་ /var/lib/samba/passdb.tdb གསར་བསà¾à¾²à½´à½“་འབད་ནི་ཨིན་ན་?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "à½à½²à½“་ཌཱསི་གི་à½à½¼à½“་རིམ་མང་ཤོས་ཅིག་ནང་ སྔོན་སྒྲིག་དང་བཅས་མà½à½´à½“་འགྱུར་ཅན་ཨིན་དགོ་པ་ཅིན་ གསང་བཟོས་ཆོག་" +#~ "ཡིག་ལག་ལེན་འà½à½–་ནི་ལུ་ སམ་བ་གིས་རིམ་སྒྲིག་འབད་དགོཔ་ཨིན༠/etc/passwdལས་སོ་སོར་འཕྱལ་ཡོད་པའི་" +#~ "ཡིག་སྣོད་ཅིག་གསོག་འཇོག་འབད་ནིའི་དོན་ལས་འདི་ལུ་ ལག་ལེན་པའི་ཆོག་ཡིག་དགོཔ་ཨིན༠འ་ནི་ཡིག་སྣོད་འདི་ " +#~ "རང་བཞིན་གྱིས་འབད་གསར་བསà¾à¾²à½´à½“་འབད་ཚུགས་ དེ་འབདà½à¼‹à½‘་ ཆོག་ཡིག་ཚུ་ smbpasswd གཡོག་བཀོལ་à½à½¼à½‚་ལུ་ " +#~ "ལག་à½à½¼à½‚་ལས་à½à¼‹à½¦à¾à½¼à½„་བརà¾à¾±à½–་དགོཔ་དང་ མ་འོངས་པ་ལུ་འདི་ དུས་མà½à½´à½“་བཟོ་སྟེ་བཞག་དགོ" + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "à½à¾±à½¼à½‘་ཀྱིས་གསར་བསà¾à¾²à½´à½“་མ་འབད་བ་ཅིན་ ཚིག་ཡིག་རà¾à¾±à½„་པོའི་ཆོག་ཡིག་ལག་ལེན་འà½à½–་ནི་ལུ་ སམ་བ་(དང་ à½à¾±à½¼à½‘་" +#~ "རའི་ཞབས་à½à½¼à½‚་སྤྱོད་མིའི་མ་འཕྲུལ་)འདི་ ལོག་རིམ་སྒྲིག་འབད་དགོ" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "à½à¼‹à½‚སལ་མà½à¾±à½ºà½“་ནིའི་དོན་ལུ་ སམ་བ་-ཌོཀ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ནང་ལས་ /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html ལུ་ལྟà¼" + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "རྒྱུན་à½à½‚་ passdb རྒྱབ་མà½à½ ་འདི་ རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½˜à¼‹à½ བད་བས་" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "འà½à½¼à½“་རིམ་ ༣.༠.༢༣ གྱིས་འགོ་བཙུགས་à½à½ºà¼‹ སམ་བ་གིས་ད་ལས་ཕར་ \"passdb backend\" ཚད་བཟུང་" +#~ "ནང་ རྒྱུན་à½à½‚་སྣ་མང་རྒྱབ་མà½à½ ་ཚུ་ལུ་ རྒྱབ་སà¾à¾±à½¼à½¢à¼‹à½˜à½²à¼‹à½ བདà½à¼‹à½¨à½²à½“༠དེ་ཡང་ à½à¾±à½¼à½‘་ཀྱི་ smb.conf ཡིག་སྣོད་" +#~ "ནང་ རྒྱབ་མà½à½ ི་à½à½¼à¼‹à½¡à½²à½‚་ཅིག་ཆ་སྟེ་ passdb རྒྱབ་མà½à½ ་ཚད་བཟུང་དང་ལྡནམ་སྦེ་འབྱུངམ་ཨིན༠སམ་བའི་འà½à½¼à½“་" +#~ "རིམ་གསརཔ་འདི་ à½à¾±à½¼à½‘་ཀྱིས་ དེ་ནོར་བཅོས་མ་འབད་ཚུན་ཚོད་ ལཱ་མི་འབདà¼" + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr " /etc/samba/smbpasswdའདི་ /var/lib/samba/passdb.tdb ལུ་སྤོ་ནི་ཨིན་ན་?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "སབ་མ་༣.༠གིས་/etc/samba/smbpasswd ཡིག་སྣོད་འཛིན་པའི་ ཨེསི་ཨེ་ཨེམ་ གནད་སྡུད་གཞི་རྟེན་ ངོས་" +#~ "འདྲ་བ་ཆ་ཚང་ཅིག་འགོ་བཙུགས་ཡིà¼" + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "ཡོད་བཞིན་པའི་ smbpasswd ཡིག་སྣོད་འདི་རང་བཞིན་གྱིས་སྦེ་ /var/lib/samba/passdb.tdbལུ་ གཞི་" +#~ "གནས་སྤོ་ནི་ཨིན་ན་ à½à¾±à½¼à½‘་ར་ངེས་དཔྱད་འབད་གནང་༠à½à¾±à½¼à½‘་ཀྱིས་pdb རྒྱབ་མà½à½ ་ (དཔེར་ན་ ཨེལ་ཌི་ཨེ་པི་) " +#~ "འདི་དེ་གི་ཚབ་སྦེ་ལག་ལེན་འà½à½–་ནིའི་འཆར་གཞི་ཡོད་པ་ཅིན་ གདམ་à½à¼‹à½ དི་ག་གདམསà¼" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "à½à¼‹à½‚སལ་མà½à¾±à½ºà½“་ནིའི་དོན་ལུ་ སམ་བ་-ཌོཀ་à½à½´à½˜à¼‹à½¦à¾’ྲིལ་ནང་ལས་ /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html ལུ་ལྟà¼" diff --git a/debian/po/el.po b/debian/po/el.po new file mode 100644 index 0000000..86653f1 --- /dev/null +++ b/debian/po/el.po @@ -0,0 +1,258 @@ +# translation of samba_el.po to +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# QUAD-nrg.net <yodesy@quad-nrg.net>, 2006. +msgid "" +msgstr "" +"Project-Id-Version: samba_el\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2007-03-16 11:29+0200\n" +"Last-Translator: galaxico\n" +"Language-Team: <en@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"ΤÏοποποίηση του smb.conf ώστε να χÏησιμοποιεί τις Ïυθμίσεις WINS από τον " +"server DHCP;" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Αν ο υπολογιστής σας παίÏνει πληÏοφοÏίες για την διεÏθυνση IP από Îναν " +"server DHCP στο δίκτυο, ο server DHCP μποÏεί επίσης να δώσει πληÏοφοÏίες " +"σχετικά με server WINS (\"NetBIOS name servers\") που υπάÏχουν στο δίκτυο. " +"Αυτό απαιτεί μια αλλαγή στο αÏχείο σας smb.conf ώστε Ïυθμίσεις για τον " +"server WINS που παÏÎχονται από τον εξυπηÏετητή DHCP να διαβάζονται αυτόματα " +"από από το αÏχείο /var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Για να εκμεταλλευτείτε αυτό το γνώÏισμα θα Ï€ÏÎπει να εγκαταστήσετε το πακÎτο " +"dhcp-client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Αυτόματη ÏÏθμιση του αÏχείου smb.conf;" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Το υπόλοιπο της ÏÏθμισης της υπηÏεσίας Samba Îχει να κάνει με εÏωτήσεις που " +"επηÏεάζουν παÏαμÎÏ„Ïους στο αÏχείο etc/samba/smb.conf, που είναι το αÏχείο " +"που χÏησιμοποιείται για την ÏÏθμιση των Ï€ÏογÏαμμάτων της Samba (nmbd και " +"smbd). To παÏόν αÏχείο σας smb.conf πεÏιÎχει μια γÏαμμή 'include' ή μια " +"επιλογή που εκτείνεται σε πολλαπλÎÏ‚ γÏαμμÎÏ‚, που θα μποÏοÏσαν να μπεÏδÎψουν " +"την διαδικασία της αυτόματης ÏÏθμισης και απαιτοÏν την διόÏθωση του αÏχείου " +"smb.conf από σας με το χÎÏι ώστε να ξαναγίνει λειτουÏγικό." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Αν δεν διαλÎξετε αυτή την επιλογή , θα Ï€ÏÎπει να χειÏιστείτε τις όποιες " +"αλλαγÎÏ‚ στις Ïυθμίσεις μόνοι σας και δεν θα είστε σε θÎση να εκμεταλλευτείτε " +"τις βελτιώσεις που κατά καιÏοÏÏ‚ γίνονται σε αυτÎÏ‚." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Όνομα Ομάδας ΕÏγασίας/ΤομÎα:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"ΠαÏακαλώ Ï€ÏοσδιοÏίστε το όνομα της ομάδας εÏγασίας (workgroup) του " +"συστήματος. Η παÏάμετÏος αυτή ελÎγχει την ομάδα εÏγασίας με την οποία θα " +"εμφανίζεται το σÏστημα ως εξυπηÏετητής, την Ï€ÏοκαθοÏισμÎνη ομάδα εÏγασίας " +"κατά την πεÏιήγηση με διάφοÏα Ï€ÏογÏάμματα, και το όνομα του τομÎα που " +"χÏησιμοποιείται στην ÏÏθμιση security=domain." + +#~ msgid "Use password encryption?" +#~ msgstr "Îα χÏησιμοποιηθεί κÏυπτογÏάφηση των κωδικών Ï€Ïόσβασης;" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Όλες οι Ï€Ïόσφατες εκδόσεις των πελατών Windows επικοινωνοÏν με τους " +#~ "εξυπηÏετητÎÏ‚ SMB/CIFS χÏησιμοποιώντας κÏυπτογÏαφημÎνους κωδικοÏÏ‚ " +#~ "Ï€Ïόσβασης. Αν θÎλετε να χÏησιμοποιήσετε μη κÏυπτογÏαφημÎνους κωδικοÏÏ‚ θα " +#~ "Ï€ÏÎπει να αλλάξετε μια παÏάμετÏο στο registry των Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Η ενεÏγοποίηση αυτής της επιλογής συνιστάται Îντονα καθώς πλÎον δεν " +#~ "υπάÏχει υποστήÏιξη για μη κÏυπτογÏαφημÎνους κωδικοÏÏ‚ σε Ï€Ïοϊόντα " +#~ "Microsoft Windows. Αν την επιλÎξετε, βεβαιωθείτε ότι Îχετε Îνα ÎγκυÏο " +#~ "αÏχείο /etc/samba/smbpasswd και ότι οÏίζετε κωδικοÏÏ‚ Ï€Ïόσβασης σ' αυτό " +#~ "για κάθε χÏήστη με τη χÏήση της εντολήςsmbpasswd." + +#~ msgid "daemons" +#~ msgstr "δαίμονες" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Î ÏŽÏ‚ θÎλετε να εκτελείται η υπηÏεσία Samba;" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Ο δαίμονας της υπηÏεσίας Samba μποÏεί να Ï„ÏÎχει σαν Îνας συνηθισμÎνος " +#~ "δαίμονας ή από τον inetd. Η εκτÎλεσή του σαν συνηθισμÎνου δαίμονα είναι η " +#~ "συνιστώμενη Ï€ÏοσÎγγιση." + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "ΠαÏακαλώ Ï€ÏοσδιοÏίστε το όνομα της ομάδας εÏγασίας (workgroup) στην οποία " +#~ "θÎλετε να εμφανίζει αυτός ο εξυπηÏετητής ότι ανήκει όταν εÏωτάται από " +#~ "τους πελάτες. Σημειώστε ότι αυτή η παÏάμετÏος ελÎγχει επίσης το όνομα του " +#~ "τομÎα που χÏησιμοποιείται στην ÏÏθμιση security=domain." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "Îα δημιουÏγηθεί η βάση δεδομÎνων των κωδικών Ï€Ïόσβασης samba, /var/lib/" +#~ "samba/passdb.tdb;" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Για να είναι συμβατή με τις Ï€ÏοεπιλογÎÏ‚ στις πεÏισσότεÏες εκδόσεις των " +#~ "Windows, η υπηÏεσία Samba θα Ï€ÏÎπει να Ïυθμιστεί ώστε να χÏησιμοποιεί " +#~ "κÏυπτογÏαφημÎνους κωδικοÏÏ‚ Ï€Ïόσβασης. Αυτό απαιτεί την φÏλαξη των κωδικών " +#~ "Ï€Ïόσβασης σε Îνα αÏχείο ξεχωÏιστά από το /etc/passwd. Αυτό το αÏχείο " +#~ "μποÏεί να δημιουÏγηθεί αυτόματα, αλλά οι κωδικοί Ï€Ïόσβασης θα Ï€ÏÎπει να " +#~ "Ï€ÏοστεθοÏν με το χÎÏι εκτελώντας την εντολή smbpasswd και να διατηÏοÏνται " +#~ "πάντα ενημεÏωμÎνα στο μÎλλον." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Αν δεν δημιουÏγήσετε το αÏχείο, θα Ï€ÏÎπει να ξαναÏυθμίσετε την υπηÏεσία " +#~ "Samba (και πιθανόν τα μηχανήματα πελάτης της υπηÏεσίας) ώστε βα " +#~ "χÏησιμοποιοÏν μη κÏυπτογÏαφημÎνους κωδικοÏÏ‚ Ï€Ïόσβασης." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Δείτε το αÏχείο usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html από το " +#~ "πακÎτο samba-doc για πεÏισσότεÏες λεπτομÎÏειες." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Η αλÏσωση των backend των passdb δεν υποστηÏίζεται" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "ΑÏχίζοντας με την Îκδοση 3.0.23, η samba δεν υποστηÏίζει πλÎον την " +#~ "αλÏσωση πολλαπλών backend για την παÏάμετÏο \"passdb backend\". Φαίνεται " +#~ "ότι το αÏχείο σας smb.conf πεÏιÎχει μια παÏάμετÏο backend passdb " +#~ "αποτελοÏμενη από μια λίστα Ï„Îτοιων backend. Η καινοÏÏια Îκδοση της samba " +#~ "δεν θα δουλÎψει μÎχÏι να διοÏθώσετε αυτή τη ÏÏθμιση." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "Μετακίνηση του αÏχείου /etc/samba/smbpasswd στο /var/lib/samba/passdb.tdb;" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Η Îκδοση 3.0 της Samba εισήγαγε μια πιο ολοκληÏωμÎνη διεπαφή για την βάση " +#~ "δεδομÎνων SAM που αντικαθιστά το αÏχείο /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "ΠαÏακαλώ επιβεβαιώστε αν θÎλετε το υπάÏχον αÏχείο smbpasswd να μεταβεί " +#~ "αυτόματα στο /var/lib/samba/passdb.tdb. Μην κάνετε αυτή την επιλογή αν " +#~ "σκοπεÏετε αντί γι αυτό να χÏησιμοποιήσετε Îνα άλλο pdb backend (πχ. LDAP)." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Δείτε το αÏχείο usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html από το " +#~ "πακÎτο samba-doc για πεÏισσότεÏες λεπτομÎÏειες." diff --git a/debian/po/eo.po b/debian/po/eo.po new file mode 100644 index 0000000..b48d052 --- /dev/null +++ b/debian/po/eo.po @@ -0,0 +1,263 @@ +# Copyright (C) 2007, 2012, 2013 Software in the Public Interest +# This file is distributed under the same license as the samba package. +# Serge Leblanc <serge.leblanc@wanadoo.fr>, 2007. +# Felipe Castro <fefcas@gmail.com>, 2012, 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2013-10-24 14:29-0300\n" +"Last-Translator: Felipe Castro <fefcas@gmail.com>\n" +"Language-Team: Esperanto <debian-l10n-esperanto@lists.debian.org>\n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.5.4\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Servilo Samba kaj utilaĵoj" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Ĉu modifi la dosieron smb.conf por uzi la agordojn WINS el DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Se via komputilo akiras sian adreson IP de retservilo DHCP, tiu servilo DHCP " +"povos provizi informojn pri serviloj WINS (\"nomserviloj NetBIOS\") " +"ĉeestantaj rete. Tio postulas ÅanÄojn en via dosiero smb.conf por ke la " +"agordoj WINS provizitaj de servilo DHCP estu aÅtomate legitaj el la dosiero /" +"var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "La pako dhcp-client devas esti instalita por profiti ĉi tiun trajton." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Ĉu aÅtomate akomodi la dosieron smb.conf?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"La sekva agordado de Samba traktas aferojn koncernantajn la parametrojn en /" +"etc/samba/smb.conf, uzata por agordi la programojn de Samba (nmbd kaj smbd). " +"Via aktuala dosiero smb.conf enhavas linion \"include\" aÅ opcion kiu " +"sterniÄas plurlinie, kio povus konfuzi la aÅtomatan akomodan procezon kaj " +"postuli de vi mane agordi vian smb.conf por refunkciigi Äin." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Se vi ne elektas tiun ĉi opcion, vi devos mem administri ĉiujn agordajn " +"ÅanÄojn, kaj vi ne povos periode profiti agordajn plibonigojn." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Laborgrupo/Domajno-Nomo:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Bonvolu indiki la laborgrupon por tiu ĉi sistemo. Tiu ĉi difino regas kiun " +"laborgrupon la sistemo aperigos kiam uzata kiel servilon, la implicitan " +"laborgrupon uzatan dum esplorado per pluraj klientoj, kaj la domajno-nomon " +"uzatan kun la parametro \"security=domain\"." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Ĉu Äisdatigi el Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "Eblas transigi la ekzistantan agordo-dosierojn de Samba 3 al Samba 4. Tio " +#~ "ĉi probable ne funkcios por komplikaj agordoj, sed devos provizi bonan " +#~ "ekigan punkton por la plej granda parto el la instaladoj." + +#~ msgid "Server role" +#~ msgstr "Servila rolo" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "Retregionaj regiloj mastrumas retregionojn NT4-stilajn aÅ Aktiv-" +#~ "Dosierujajn kaj provizas servojn kiel mastrumadon de identigon kaj " +#~ "retregionajn ensalutojn. Ĉiu retregiono bezonas havi minimume unu " +#~ "retregionan regilon." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "Membraj serviloj povas esti parto de retregiono NT4-stila aÅ Aktiv-" +#~ "Dosieruja sed ne provizas iun ajn retregionan servon. Laborstacioj kaj " +#~ "dosieraj aÅ printaj serviloj ordinare estas normalaj retregionaj membroj." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "Memstara servilo ne povas esti uzata en retregiono kaj nur subtenas " +#~ "kunhavigon de dosieroj kaj ensalutojn laÅ stilo 'Vindozo por Laborgrupoj'" + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "Se neniu servila rolo estas indikita, la servilo Samba ne estos " +#~ "provizata, do tio ĉi povas esti farata rekte per la uzanto mem." + +#~ msgid "Realm name:" +#~ msgstr "Area nomo (Realm):" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "Bonvolu indiki la areon Kerberos por la retregiono kiun tiu ĉi retregiona " +#~ "regilo mastrumas." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "Ordinare tio ĉi estas la majuskla versio de via DNS-gastigantnomo." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "Nova pasvorto por la uzanto \"administrator\" de Samba:" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "" +#~ "Se tiu ĉi kampo estos lasita malplena, hazardeca pasvorto estos generata." + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "Pasvorto povas esti difinata poste, per lanĉo, kiel root:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "Ripetu la pasvorton por la uzanto \"administrator\" de Samba:" + +#~ msgid "Password input error" +#~ msgstr "Eraro dum enigo de pasvorto" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "" +#~ "La du pasvortoj kiujn vi enigis ne estis la sama. Bonvolu provi refoje." + +#~ msgid " $ samba-tool user setpassword administrator" +#~ msgstr " $ samba-tool user setpassword administrator" + +#~ msgid "Use password encryption?" +#~ msgstr "Ĉu ĉifri la pasvortojn?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Ĉiuj novaj klientoj Windows komunikas kun serviloj SMB/CIFS uzante " +#~ "ĉifritajn pasvortojn. Se vi volas uzi malĉifritajn pasvortojn vi bezonos " +#~ "ÅanÄi parametron en via registrejo Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Ebligi tiun ĉi opcion estas ege rekomendata ĉar pur-tekstaj pasvortoj ne " +#~ "plu estas subtenataj en produktoj Microsoft Windows. Se vi elektas Äin, " +#~ "kontrolu ĉu vi havas validan dosieron /etc/samba/smbpasswd, en kiu vi " +#~ "enmetis pasvortojn por ĉiu uzanto kiu uzas la komandon smbpasswd." + +#~ msgid "Samba server" +#~ msgstr "Servilo Samba" + +#~ msgid "daemons" +#~ msgstr "demonoj" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Kiel vi volas lanĉi Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "La Samba-demono smbd povas esti lanĉita kiel normala demono aÅ per la " +#~ "programo inetd. Oni rekomendas lanĉi Äin kiel demonon." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Ĉu krei pasvortan datumbazon de samba, /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Por kongrui kun implicita regulo el plejmultaj eldonoj de Windows, Samba " +#~ "devas esti agordita por uzi ĉifritajn pasvortojn. Tio postulas ke uzant-" +#~ "pasvortoj estu konservitaj en dosiero aparta de /etc/passwd. Tiu ĉi " +#~ "dosiero povas esti aÅtomate kreata, sed oni devas mane aldoni la " +#~ "pasvortojn lanĉante smbpasswd kaj tenante ilin Äisdataj estonte." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Se vi ne kreos Äin, vi devos reakomodi Samba (kaj verÅajne viajn " +#~ "klientajn maÅinojn) por uzi purtekstajn pasvortojn." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Vidu /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html el la pako samba-doc por pliaj informoj." diff --git a/debian/po/es.po b/debian/po/es.po new file mode 100644 index 0000000..9ad635b --- /dev/null +++ b/debian/po/es.po @@ -0,0 +1,379 @@ +# samba translation to Spanish +# Copyright (C) 2003-2007 Steve Langasek <vorlon@debian.org> +# Copyright (C) 2006 Software in the Public Interest, SPI Inc. +# This file is distributed under the same license as the samba package. +# +# Changes: +# - Initial translation +# Steve Langasek, 2003-2006 +# +# - Revision and updates +# Javier Fernández-Sanguino, 2006, 2012-2013 +# Ricardo Fraile, 2010 +# +# - Translation of new templates +# Steve Langasek, 2007 +# +# Traductores, si no conoce el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Equipo de traducción al español, por favor lean antes de traducir +# los siguientes documentos: +# - El proyecto de traducción de Debian al españool +# http://www.debian.org/intl/spanish/ +# especialmente las notas y normas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guÃa de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Si tiene dudas o consultas sobre esta traducción consulte con el último +# traductor (campo Last-Translator) y ponga en copia a la lista de +# traducción de Debian al español (<debian-l10n-spanish@lists.debian.org>) +# +msgid "" +msgstr "" +"Project-Id-Version: Samba for Debian 3.0.23c-1\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2013-12-09 22:21+0100\n" +"Last-Translator: Javier Fernández-Sanguino <jfs@debian.org>\n" +"Language-Team: Debian Spanish <debian-l10n-spanish@lists.debian.org>\n" +"Language: spanish\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POFile-SpellExtra: Kerberos NT DNS domain client user conf setpassword\n" +"X-POFile-SpellExtra: dhcp smbd include root smb administrator nmbd Windows " +"WINS\n" +"X-POFile-SpellExtra: tool security\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Servidor Samba y herramientas" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"¿Modificar smb.conf para usar la configuración WINS que proviene de DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Si su sistema recibe la dirección IP desde un servidor DHCP en la red, el " +"servidor DHCP también puede proveerle informaciones sobre los servidores de " +"WINS que haya en la red. Esto requiere un cambio en el fichero smb.conf " +"para que la configuración de WINS proveniente de DHCP se lea automáticamente " +"de /var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Hay que instalar el paquete dhcp-client para aprovechar esta funcionalidad." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "¿Configurar smb.conf automáticamente?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"El resto de la configuración de Samba trata sobre cuestiones que afectan al " +"contenido de «/etc/samba/smb.conf», el fichero utilizado para configurar los " +"programas de Samba (nmbd y smbd). Su «smb.conf» actual contiene una lÃnea " +"«include» o una opción que atraviesa más de una lÃnea, asà que el proceso de " +"configuración automática puede dejarlo con un «smb.conf» no válido, " +"requiriendo que lo arregle a mano." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Si no escoge esta opción, tendrá que gestionar a mano cualquier cambio en la " +"configuración de Samba, y no disfrutará de las mejoras periódicas que se " +"realicen a la configuración." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Nombre del dominio o del grupo de trabajo:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Indique el grupo de trabajo de este equipo. Este parámetro controla el grupo " +"de trabajo en el que aparecerá el equipo si se usa como un servidor, el " +"grupo de trabajo a usar cuando explore la red con los distintos interfaces, " +"y el nombre de dominio usado con el parámetro «security=domain»." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "¿Desea actualizar desde Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "Es posible migrar los archivos de la configuración de Samba 3 a Samba 4." +#~ "Es posible que la migración falle para configuraciones complejas, pero " +#~ "deberÃa ser capaz de proporcionar un buen punto de partida para la " +#~ "mayorÃa de las instalaciones existentes." + +#~ msgid "Server role" +#~ msgstr "Rol de servidor" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "Los controladores de dominio gestionan dominios de tipo NT4 o Directorio " +#~ "Activo y proveen servicios como la gestión de identidades o el acceso al " +#~ "dominio. Cada dominio tiene que tener al menos un controlador de dominio." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "Los servidores miembros pueden ser parte de un dominio de tipo NT4 o de " +#~ "Directorio Activo pero no ofrecen servicios de dominio. Las estaciones de " +#~ "trabajo, los servidores de ficheros y los servidores de impresión son " +#~ "generalmente miembros del dominio." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "Un servidor independiente no puede utilizarse dentro de un dominio y sólo " +#~ "provee servicios de compartición de ficheros y acceso local de tipo " +#~ "Windows para Grupos de Trabajo." + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "El servidor de Samba no se configurará si no se especifica ningún rol de " +#~ "servidor, por lo que el usuario puede hacer esta configuración " +#~ "manualmente." + +# NdT: Se traduce «realm» a «reino» en otras traducciones +# (p.ej. la de heimdal). No es que me parezca la mejor traducción, pero +# al menos asà es consistente con la de otros programas. - JFS +#~ msgid "Realm name:" +#~ msgstr "Nombre del reino:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "Introduzca el reino Kerberos para el dominio que gestiona este " +#~ "controlador de dominio." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "Generalmente este nombre es una capitalización de su nombre DNS." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "Nueva contraseña para el usuario «administrator» de Samba:" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "Se generará una contraseña aleatoria si deja este campo vacÃo." + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "" +#~ "Puede configurar más adelante la contraseña ejecutando, como root, lo " +#~ "siguiente:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "Repita la contraseña para el usuario «administrador» de Samba:" + +#~ msgid "Password input error" +#~ msgstr "Error en la introducción de la contraseña" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "" +#~ "Las dos contraseñas que ha introducido no coinciden. Por favor, inténtelo " +#~ "de nuevo." + +#~ msgid " $ samba-tool user setpassword administrator" +#~ msgstr " $ samba-tool user setpassword administrator" + +#~ msgid "Use password encryption?" +#~ msgstr "¿Utilizar contraseñas cifradas?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Todos los clientes Windows recientes se comunican con los servidores SMB/" +#~ "CIFS utilizando contraseñas cifradas. Si quiere usar contraseñas en texto " +#~ "claro, tendrá que cambiar un parámetro en el registro de sus sistemas " +#~ "Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Se recomienda habilitar esta opción, ya que los productos de Microsoft " +#~ "yano son compatibles con las contraseñas en texto claro. Si la activa, " +#~ "asegúrese de que tiene un fichero «/etc/samba/smbpasswd» válido, donde " +#~ "defina las contraseñas para cada usuario usando la orden «smbpasswd»." + +#~ msgid "Samba server" +#~ msgstr "Servidor Samba" + +#~ msgid "daemons" +#~ msgstr "demonios" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "¿Cómo quiere que se ejecute Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "El servicio Samba smbd puede ejecutarse como un demonio normal " +#~ "independiente o lanzarse desde el demonio inetd. Se recomienda que se " +#~ "ejecute como demonio independiente." + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "¿Desea instalar Samba 4 como PDC?" + +#~ msgid "" +#~ "Even when using this option, you will need to set up DNS such that it " +#~ "serves the data from the zone file in that directory before you can use " +#~ "the Active Directory domain." +#~ msgstr "" +#~ "Aún cuando utilice está opción, tendrá que configurar el servicio de DNS " +#~ "deforma que proporcione los datos del archivo de zona que encontrará en " +#~ "ese directorioantes de poder utilizar el dominio del Directorio Activo." + +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Indique el dominio en el cual quiere que su servidor aparezca cuando se " +#~ "lo pregunten los clientes de la red." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "¿Crear la base de dados de contraseñas /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Hay que configurar Samba para que use contraseñas cifradas para mantener " +#~ "la compatibilidad con el comportamiento por omisión de la mayoria de los " +#~ "sistemas Windows. Para hacer esto es necesario crear un fichero, distinto " +#~ "del /etc/passwd, donde se guarden las contraseñas de los usuarios. El " +#~ "fichero se puede crear automáticamente, aunque es necesario añadir las " +#~ "contraseñas manualmente mediante el programa «smbpasswd» y mantenerlas al " +#~ "dÃa." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Es imprescindible que configure Samba (y probablemente también los " +#~ "sistemas cliente) para que use contraseñas en claro si no crea este " +#~ "fichero." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Si desea más información consulte /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html, disponible en el paquete samba-doc." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "El encadenamiento de motores «passdb» ya no está soportado" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "A partir de la versión 3.0.23 de samba, ya no se soporta el " +#~ "encadenamiento de más de un motor en el parámetro «passdb backend». " +#~ "Parece que en su smb.conf tiene un parámetro «passdb backend» que consta " +#~ "de una lista de motores. La nueva versión de samba no funcionará hasta " +#~ "que lo corrija." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "¿Convertir el fichero /etc/samba/smbpasswd a /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "La versión 3.0 de Samba introduce un base de dados «SAM» más completa que " +#~ "sustituye al fichero /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Confirme si quiere que el fichero smbpasswd existente se migre de forma " +#~ "automática a /var/lib/samba/passdb.tdb. No escoja esta opción si " +#~ "pretende usar otro motor para pdb (p.ej. LDAP)." + +#~ msgid "daemons, inetd" +#~ msgstr "demonios, inetd" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Si desea más información consulte «/usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html», disponible en el paquete samba-doc." diff --git a/debian/po/et.po b/debian/po/et.po new file mode 100644 index 0000000..f287a45 --- /dev/null +++ b/debian/po/et.po @@ -0,0 +1,233 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2007-03-13 10:26+0300\n" +"Last-Translator: Siim Põder <siim@p6drad-teel.net>\n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Country: ESTONIA\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Muuta smb.conf, et kasutataks DHCP WINS seadeid?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Kui su arvuti saab IP aadressi informatsiooni võrgus asuvalt DHCP serverilt, " +"võib toosama DHCP server levitada infot ka võrgus asuvate WINS serverite " +"(\"NetBIOS nimeserverid\") kohta. Kui soovid, et seda informatsiooni " +"kasutataks, on vaja smb.conf faili sisse viia muudatus, et DHCP poolt " +"jagatud WINS seaded automaatselt /var/lib/samba/dhcp.conf failist loetaks." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "Et seda võimalust kasutada, peab olema paigaldatud dhcp-client pakk." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Seadistada smb.conf automaatselt?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Ãœlejäänud Samba seadistus tegeleb /etc/samba/smb.conf parameetreid " +"mõjutavate küsimustega - see on fail mille abil seadistatakse Samba " +"programmid (nmbd ja smbd). Sinu praegune smb.conf sisaldab 'include' rida " +"või mitmerealist valikut, mis võib automaatse seadistamise nurjata ning " +"tekitada olukorra, kus pead smb.conf faili käsitsi töökorda seadma." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Kui sa seda seadet ei vali, pead iga seadistuse muudatuse ise läbi viima ega " +"saa tunda rõõmu autmaatsest perioodilisest seadistuse täiustustamisest." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Töögrupi/domeeni nimi:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#~ msgid "Use password encryption?" +#~ msgstr "Kasutada paroolide krüpteerimist?" + +#, fuzzy +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Kõik hiljutised Windows kliendid suhtlevad SMB serveritega kasutades " +#~ "krüpteeritud paroole. Kui soovid kasutada avatud paroole, pead Windows " +#~ "registris muutma üht seadet." + +#, fuzzy +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Selle seade valimine on ülimalt soovitatav. Kui ta valid, palun veendu et " +#~ "sul oleks sobiv /etc/samba/smbpasswd fail ning sea igale seal olevale " +#~ "kasutajale smbpasswd käsu abil parool." + +#~ msgid "daemons" +#~ msgstr "deemonitena" + +#~ msgid "inetd" +#~ msgstr "inetd'ist" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Kuidas soovid Samba käivitada?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Samba deemon võib käivituda kui tavaline deemon või inetd'ist. Soovitatav " +#~ "lähenemine on käivitamine tavalise deemonina." + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Palun vali töögrupp, kuhu see server kuulub. Pane tähele, et seesama " +#~ "seade määrab ka domeeni, mida kasutatakse koos security=domain valikuga." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Luua samba paroolide andmebaas, /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Et ühilduda enamike Windows versioonidega, tuleb Samba seadistada " +#~ "krüpteeritud paroole kasutama. Selle jaoks on tarvis kasutajate paroole " +#~ "väljaspool /etc/passwd hoida. Selle faili võib automaatselt luua, kuid " +#~ "paroolid tuleb sinna käsitsi lisada ning ka hiljem värsketena hoida." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Kui sa seda ei loo, tuleb sul Samba ümber seadistada (ning tõenäoliselt " +#~ "ka kliendimasinad) kasutamaks avatud paroole." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "End detailidega kurssi viimaks loe /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html pakist samba-doc." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "" +#~ "passdb backends mitme järjestikkuse variandi määramine pole toetatud" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Samba versioonid alates 3.0.23 ei toeta enam \"passdb backend\" " +#~ "parameetri juures mitmest variandist koosnevat nimekirja. Paistab, et " +#~ "sinu smb.conf failis on passdb backend parameetrile määratud nimekiri. " +#~ "Uus samba versioon ei tööta, kuni sellega tegeletud on." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Kanda /etc/samba/smbpasswd üle /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 võttis kasutusele täielikuma SAM andmebaasiliidese, mis ületab /" +#~ "etc/samba/smbpasswd faili." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Palun kinnita, kas soovid olemasoleva smbpasswd faili automaatset " +#~ "ülekandmist /var/lib/samba/passdb.tdb. Ära nõustu, kui soovid kasutada " +#~ "hoopis mõnd muud pdb lahendust (näiteks LDAP)." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "End detailidega kurssi viimaks loe /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html pakist samba-doc." diff --git a/debian/po/eu.po b/debian/po/eu.po new file mode 100644 index 0000000..ef1c07e --- /dev/null +++ b/debian/po/eu.po @@ -0,0 +1,329 @@ +# translation of eu.po to Debian Basque +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Piarres Beobide <pi@beobide.net>, 2006, 2007, 2013. +# Iñaki Larrañaga Murgoitio <dooteo@zundan.com>, 2013. +msgid "" +msgstr "" +"Project-Id-Version: eu\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2013-10-30 16:07+0100\n" +"Last-Translator: Iñaki Larrañaga Murgoitio <dooteo@zundan.com>\n" +"Language-Team: Basque <debian-l10n-basque@lists.debian.org>\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Samba zerbitzaria eta tresnak" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "smb.conf WINS ezarpenak DHCP-tik jasotzeko eraldatu?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Zure sistemak IP helbidea sareko DHCP zerbitzari batetik jasoz gero, " +"zerbitzari horrek sareko WINS (\"NetBIOS name servers\") zerbitzarien datuak " +"eman ditzake. Honek smb.conf fitxategian aldaketa bat behar du DHCP bidezko " +"WINS ezarpenak /var/lib/samba/dhcp.conf-etik irakurtzeko." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Eginbide honetaz baliatzeko dhcp-client bezeroa instalatuta egon izan behar " +"du." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Smb.conf automatikoki konfiguratu?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Konfigurazioaren hurrengo atalak /etc/samba/smb.conf fitxategiari dagozkion " +"ezarpenenak dira, honek Samba programak (smbd eta nmbd) konfiguratzen ditu. " +"smb.conf fitxategiak 'include' lerro bat edo hainbat lerrotan zabaldutako " +"aukera bat du, horregatik konfigurazio automatikoaren prozesua honda " +"daiteke, eta zuk eskuz konpondu beharko duzu berriro funtzionatzeko." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Aukera hau ez baduzu hautatzen, konfigurazioko edozein aldaketa eskuz egin " +"beharko duzu eta ezingo duzu konfigurazioaren aldaketa automatikoez baliatu." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Lantaldearen/Domeinuaren izena:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Zehaztu sistema honetarako lantaldea. Ezarpen honek sistema zerbitzari " +"moduan erabiltzean agertuko den lantaldea, zenbait interfaze bidez " +"bistaratzean erabiliko den lehenetsitako lantaldea eta \"security=domain\" " +"ezarpenak erabiltzen duen domeinu izena kontrolatzen ditu." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Samba 3-tik bertsio-berritu?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "Samba 3 bertsioan dauden konfigurazioko fitxategiak Samba 4 bertsiora " +#~ "migratu daitezke. Konfigurazio konplexuetan huts egin dezakeen arren, " +#~ "instalazio gehienentzako abioko puntu ona eskain dezake." + +#~ msgid "Server role" +#~ msgstr "Zerbitzariaren portaera" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "Domeinuen kontrolatzaileek NT4 gisakoa edo Direktorio Aktiboen domeinuak " +#~ "kudeatzen dute, eta identitateen kudeaketa eta domeinuen saio-hasierak " +#~ "bezalako zerbitzuak eskaintzen dituzte. Domeinu bakoitzak gutxienez " +#~ "domeinuaren kontrolatzaile bat eduki behar du." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "NT4 gisako edo Direktorio Aktiboen domeinu baten zati izan daiteke kideen " +#~ "zerbitzariak, baina ez dute domeinuen zerbitzurik eskaintzen. Lanpostuak " +#~ "eta fitxategi- edo inprimatze-zerbitzariek domeinuko kide arruntak izan " +#~ "ohi dira." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "Ezin da bakarkako zerbitzari bat domeinu batean erabili eta fitxategiak " +#~ "partekatzea eta Windows Lantaldeentzako bezalako saio-hasierak soilik " +#~ "onartzen ditu." + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "Ez bada zerbitzariaren portaerarik zehaztu ezingo da Samba zerbitzaria " +#~ "eskaini. Ondorioz, hori erabiltzaileak eskuz egin dezake." + +#~ msgid "Realm name:" +#~ msgstr "Erreinuaren izena:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "Zehaztu Kerberos erreinua (domeinuaren kontrolatzaile honek kontrolatzen " +#~ "duen domeinuarentzako)." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "DNS ostalari-izena maiuskuletan izan ohi da." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "Samba-ren 'administrator' administratzailearen pasahitz berria:" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "Eremu hau bete gabe uzten bada, ausazko pasahitza sortuko da." + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "Pasahitza beranduago ezar daiteke 'root' gisa hau exekutatuz:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "Errepikati Samba-ren administratzailearen pasahitza:" + +#~ msgid "Password input error" +#~ msgstr "Pasahitzaren sarreraren errorea" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "Sartu dituzun bi pasahitzak ez dira berdinak. Saiatu berriro." + +#~ msgid " $ samba-tool user setpassword administrator" +#~ msgstr " $ samba-tool user setpassword administrator" + +#~ msgid "Use password encryption?" +#~ msgstr "Zifraturiko pasahitzak erabili?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Windows bezero berri guztiek SMB zerbitzariekiko harremanak zifraturiko " +#~ "pasahitzak erabiliaz egiten dituzte. Testu laueko pasahitzak erabili nahi " +#~ "izanez gero parametro bat aldatu behar duzu Windows erregistroan." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Aukera hau gaitzea oso gomendagarri da testu laueko pasahitzen onarpena " +#~ "ez bait da aurrerantzean mantendurik egongo Microsoft produktuetan. " +#~ "Erabiltzea hautatuaz gero ziurtatu baliozko /etc/samba/smbpasswd " +#~ "fitxategi bat duzula eta pasahitzak smbpasswd programaren bidez ezarri " +#~ "dituzula." + +#~ msgid "daemons" +#~ msgstr "deabruak" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Nola nahi duzu Samba abiaraztea?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Samba smbd zerbitzua deabru arrunt edo inted bidez abiarazi daiteke. " +#~ "Deabru bezala abiaraztea gomendatzen da." + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Mesede ezarri zure zerbitzariari sareko bezeroek galdetzean bistaraziko " +#~ "duen lan taldea. Kontutan izan parametro honek security=domain ezarpeneko " +#~ "domeinu izena ere ezartzen duela." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "/var/lib/samba/passdb.tdb pasahitz datubase berria sortu?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Windows sistema gehienen lehenetsiriko portaerarekin bateragarritasuna " +#~ "mantentzeko, Samba zifraturiko pasahitzak erabiltzeko konfiguratu behar " +#~ "da. Honetako erabiltzaileen pasahitzak gordeko dituen /etc/passwd " +#~ "fitxategiaz bereiziriko beste fitxategi bat sortu behar da. Fitxategia " +#~ "automatikoki sortu daiteke baina pasahitzak eskuz gehitu behar dira " +#~ "'smbpasswd' programaren bidez eta pasahitzak eguneraturik mantendu behar " +#~ "dira." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ " Fitxategi hau ez sortu ezkero beharrezkoa da Samba (eta ziurrenik " +#~ "Windows bezeroak) zifratu gabeko pasahitzak erabiltzeko konfiguratzea." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Samba-doc paketeko /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html " +#~ "begiratu argibide gehiagorako" + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "\"passbd\" motore kateatzea ez da onartzen" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "2.0.23 bertsiotik aurrera ez da gehiago onartzen motore bat baino " +#~ "gehiagoren kateatzea \"passdb backend\" parametroan. Dirudienez zure smb." +#~ "conf fitxategiko \"passdb backend\" parametroak motore zerrenda bat du. " +#~ "Samba bertsio berriak ez du funtzionatuko hau konpondu arte." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "/etc/samba/smbpasswd /var/lib/samba/passdb.tdb-ra mugitu?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 bertsioak SAM datubase sistema osoago bat eskaintzen du /etc/" +#~ "samba/smbpasswd fitxategia ordezteko." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Mesedez berretsi smbpasswd fitxategi arrunta /var/lib/samba/passdb.tdb-ra " +#~ "migratzea nahi duzula. Beste pasahitz datubase bat erabiltzea pentsatzen " +#~ "baduzu (adib LDAP) hemen 'ez' erantzun beharko zenuke." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Samba-doc paketeko /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-" +#~ "Guide/pwencrypt.html begiratu argibide gehiagorako." diff --git a/debian/po/fi.po b/debian/po/fi.po new file mode 100644 index 0000000..c026c34 --- /dev/null +++ b/debian/po/fi.po @@ -0,0 +1,235 @@ +# Translation of samba_po.po to finnish. +# +# Tapio Lehtonen <tale@debian.org>, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: Samba fi\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2007-03-13 18:35+0200\n" +"Last-Translator: Tapio Lehtonen <tale@debian.org>\n" +"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Samba-palvelin ja apuohjelmistoja" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Muokataanko smb.conf käyttämään DHCP:ltä saatua WINS-asetusta?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Jos tietokone saa verkkoasetukset verkon DHCP-palvelimelta, saattaa DHCP-" +"palvelin tarjota tietoa myös verkon WINS-palvelimista (\"NetBIOS-" +"nimipalvelimista\"). Tällöin on tiedostoa smb.conf muutettava, jotta DHCP:n " +"tarjoamat WINS-asetukset luetaan automaattisesti tiedostosta /etc/samba/dhcp." +"conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Tätä ominaisuutta voi käyttää vain jos paketti dhcp-client on asennettu." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Tehdäänkö asetukset tiedostoon smb.conf automaattisesti?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Loput Samban asetuksista ovat kysymyksiä jotka vaikuttavat parametreihin " +"Samban ohjelmien (nmbd ja smbd) asetustiedostossa /etc/samba/smb.conf. Nyt " +"tiedostossa smb.conf on \"include\"-rivi tai useita rivejä pitkä valitsin, " +"mikä sotkee automatisoidun asetukset tekevän ohjelman ja pakottaa " +"muokkaamaan tiedostoa smb.conf käsin, jotta se taas toimisi." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Jos et valitse tätä toimintoa, on kaikki asetusten muutokset tehtävä itse, " +"etkä pääse hyötymään julkaistavista asetusten parannuksista." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Työryhmän/Verkkoalueen nimi:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Anna tämän järjestelmän työryhmän nimi. Asetuksella määritetään mihin " +"työryhmään järjestelmä kuuluu sen toimiessa palvelimena, oletustyöryhmä " +"selattaessa edustaohjelmilla ja asetuksen \"security=domain\" kanssa " +"käytettävä verkkoalueen nimi." + +#~ msgid "Use password encryption?" +#~ msgstr "Salataanko salasanat?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Kaikki viime aikoina julkistetut Windows-asiakkaat salaavat salasanat " +#~ "liikennöitäessä SMB/CIFS-palvelimien kanssa. Jos halutaan käyttää " +#~ "selväkielisiä salasanoja, on Windows registryssä olevaa parametria " +#~ "muutettava." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Tämän valitsimen pitämistä päällä suositellaan suuresti, koska tukea " +#~ "selväkielisille salasanoille ei enää ylläpidetä Microsoft Windows-" +#~ "tuotteissa. Jos se on päällä, on varmistuttava tiedoston /etc/samba/" +#~ "smbpasswd kelvollisuudesta ja että siellä on jokaiselle käyttäjälle tehty " +#~ "salasana komennolla smbpasswd." + +#~ msgid "Samba server" +#~ msgstr "Samba-palvelin" + +#~ msgid "daemons" +#~ msgstr "palvelinprosessit" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Kuinka Samba käynnistetään?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Samban palvelinprosessi smbd voi toimia tavallisena prosessina tai inetd " +#~ "voi käynnistää sen. Tavallisen prosessin käyttämistä suositellaan." + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Anna sen verkkoalueen nimi, johon tämä palvelin ilmoittaa kuuluvansa " +#~ "asiakaskoneiden kysyessä. Huomaa, että tämä parametri on myös asetuksen " +#~ "security=domain kanssa käytettävä verkkoalueen nimi." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Luodaanko samban salasanatietokanta, /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Jotta Samba olisi yhteensopiva useimpien Windows-versioiden oletusten " +#~ "kanssa, on Samban käytettävä salattuja salasanoja. Tällöin on salasanat " +#~ "tallennettava muualle kuin tiedostoon /etc/passwd. Tallennustiedosto " +#~ "voidaan luoda automaattisesti, mutta salasanat on itse lisättävä " +#~ "komennolla smbpasswd ja ne on itse pidettävä ajan tasalla jatkossa." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Jos tiedostoa ei luoda, on Samba asetettava käyttämään selväkielisiä " +#~ "salasanoja (kuten asiakaskoneetkin)." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Katso lisätietoja paketin samba-doc tiedostosta /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "passdb:n taustaosien ketjuttamista ei tueta" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Versiosta 3.0.23 alkaen samba ei enää tue useiden taustaosien " +#~ "ketjuttamista \"passdb backend\" -parametrissa. Tämän koneen smb.conf-" +#~ "tiedostossa vaikuttaa olevan bassdb backend -parametri jossa on luettelo " +#~ "taustaosista. Samban uusi versio ei toimi ennen kuin tämä korjataan." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "Siirretäänkö tiedosto /etc/samba/smbpasswd tiedostoksi /var/lib/samba/" +#~ "passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samban versiossa 3.0 tuli mukaan täydellisempi SAM-tietokantarajapinta " +#~ "joka korvaa tiedoston /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Vahvista, että olemassa oleva tiedosto smbpasswd siirretään " +#~ "automaattisesti tiedostoksi /var/lib/samba/passdb.tdb. Älä valitse tätä " +#~ "jos aiot käyttää jotain muuta pdb-taustaosaa (esim. LDAP)." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Katso lisätietoja paketin samba-doc tiedostosta /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html." diff --git a/debian/po/fr.po b/debian/po/fr.po new file mode 100644 index 0000000..aca1e5b --- /dev/null +++ b/debian/po/fr.po @@ -0,0 +1,306 @@ +# French translation for samba4 debconf templates +# Copyright (C) 2006-2008 Debian French translation team <debian-l10n-french@lists.debian.org> +# This file is distributed under the same license as the samba4 package. +# +# Translators: +# Christian Perrier <bubulle@debian.org>, 2006, 2007, 2008, 2011, 2013. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2013-10-22 20:29+0200\n" +"Last-Translator: Christian Perrier <bubulle@debian.org>\n" +"Language-Team: French <debian-l10n-french@lists.debian.org>\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.5\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Serveur et utilitaires Samba" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Modifier smb.conf pour utiliser les paramètres WINS fournis par DHCP ?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Si votre ordinateur obtient ses paramètres IP à partir d'un serveur DHCP du " +"réseau, ce serveur peut aussi fournir des informations sur les serveurs WINS " +"(serveurs de noms NetBIOS) présents sur le réseau. Une modification du " +"fichier smb.conf est nécessaire afin que les réglages WINS fournis par le " +"serveur DHCP soient lus dans /var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Le paquet dhcp-client doit être installé pour utiliser cette fonctionnalité." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Voulez-vous configurer smb.conf automatiquement ?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"La suite de la configuration de Samba pose des questions relatives aux " +"paramètres de /etc/samba/smb.conf, le fichier utilisé pour configurer les " +"programmes de Samba (nmbd et smbd). Le fichier actuel contient une ligne " +"« include » ou une option qui s'étale sur plusieurs lignes : cela peut " +"perturber la configuration automatique. Il est donc conseillé de gérer le " +"contenu de ce fichier vous-même." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Si vous ne choisissez pas cette option, vous devrez gérer vous-même les " +"modifications de configuration et vous ne pourrez pas bénéficier des " +"améliorations faites dans la configuration." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Nom de domaine ou de groupe de travail :" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Veuillez indiquer le groupe de travail pour ce système. Ce réglage définit " +"le groupe de travail où le système apparaîtra s'il est utilisé comme " +"serveur, le groupe de travail utilisé par défaut avec les divers outils de " +"Samba ainsi que le nom de domaine utilisé le cas échéant avec le paramètre " +"« security=domain »." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Faut-il mettre Samba à niveau depuis Samba 3 ?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "Il est possible de faire migrer les fichiers de configuration existants " +#~ "de Samba 3 vers Samba 4. Il est probable que cette étape échoue pour des " +#~ "installations complexes, mais elle fournira une bonne base de départ pour " +#~ "la plupart des configurations." + +#~ msgid "Server role" +#~ msgstr "Rôle du serveur" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "Les contrôleurs de domaine gèrent des domaines de type NT4 ou Active " +#~ "Directory et fournissent des services comme la gestion des identifiants " +#~ "et les ouvertures de sessions de domaine. Chaque domaine doit comporter " +#~ "au moins un contrôleur." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "Un serveur peut être membre d'un domaine NT4 ou Active Directory sans " +#~ "fournir de services de domaine. Les postes de travail ainsi que les " +#~ "serveurs de fichiers ou d'impression sont en général de simples membres " +#~ "de domaine." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "Un serveur isolé (« standalone ») ne peut être utilisé dans un domaine et " +#~ "ne gère que le partage de fichiers et les connexions de type « Windows " +#~ "for Workgroups »." + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "Si aucun rôle serveur n'est choisi, la serveur Samba ne sera pas démarré " +#~ "et le rôle pourra être choisi manuellement." + +#~ msgid "Realm name:" +#~ msgstr "Royaume (« realm ») Kerberos :" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "Veuillez indiquer le royaume Kerberos pour le domaine que gère ce " +#~ "contrôleur de domaine." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "En général, ce nom est le nom de domaine en majuscules." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "" +#~ "Nouveau mot de passe pour l'identifiant « administrator » de Samba :" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "Si ce champ est laissé vide, un mot de passe aléatoire sera créé." + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "" +#~ "Le mot de passe peut être modifié ultérieurement avec la commande " +#~ "suivante, exécutée avec les privilèges du superutilisateur :" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "Confirmation du mot de passe :" + +#~ msgid "Password input error" +#~ msgstr "Erreur de saisie du mot de passe" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "" +#~ "Les deux mots de passe que vous avez entrés sont différents. Veuillez " +#~ "recommencer." + +#~ msgid " $ samba-tool user setpassword administrator" +#~ msgstr " $ samba-tool user setpassword administrator" + +#~ msgid "Use password encryption?" +#~ msgstr "Voulez-vous chiffrer les mots de passe ?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Tous les clients Windows récents communiquent avec les serveurs SMB/CIFS " +#~ "en utilisant des mots de passe chiffrés. Si vous voulez utiliser des mots " +#~ "de passe sans chiffrement, vous devez modifier un paramètre dans le " +#~ "registre de Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Il est fortement recommandé d'utiliser des mots de passe chiffrés car les " +#~ "mots de passe en clair ne sont plus gérés dans les produits Microsoft " +#~ "Windows. Si vous le faites, n'oubliez pas de créer un fichier /etc/samba/" +#~ "smbpasswd et d'y établir les mots de passe de tous les utilisateurs, à " +#~ "l'aide de la commande « smbpasswd »." + +#~ msgid "Samba server" +#~ msgstr "Serveur Samba" + +#~ msgid "daemons" +#~ msgstr "démons" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Comment voulez-vous lancer Samba ?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Le service de Samba smbd peut s'exécuter en tant que démon classique ou " +#~ "bien être lancé par inetd. Il est recommandé de l'exécuter en tant que " +#~ "démon." + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "Faut-il configurer Samba 4 comme contrôleur principal de domaine ?" + +#~ msgid "" +#~ "Even when using this option, you will need to set up DNS such that it " +#~ "serves the data from the zone file in that directory before you can use " +#~ "the Active Directory domain." +#~ msgstr "" +#~ "Même si vous choisissez cette option, vous devrez configurer le service " +#~ "de noms (DNS) pour qu'il distribue les données du fichier de zone de cet " +#~ "annuaire, avant de pouvoir utiliser le domaine Active Directory." + +#~ msgid "" +#~ "Please specify the Kerberos realm this server will be in. In many cases, " +#~ "this will be the same as the DNS domain name." +#~ msgstr "" +#~ "Veuillez indiquer le royaume (« realm ») Kerberos auquel appartiendra ce " +#~ "serveur. Dans de nombreux cas, ce sera le nom de domaine DNS." + +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Veuillez indiquer le domaine où ce serveur apparaîtra dans les requêtes " +#~ "des clients." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Faut-il créer une base de données /var/lib/samba/passdb.tdb ?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Pour rester compatible avec les réglages par défaut de la majorité des " +#~ "versions de Windows, Samba doit être configuré pour utiliser des mots de " +#~ "passe chiffrés. Cela impose de conserver les mots de passe dans un " +#~ "fichier distinct de /etc/passwd. Ce fichier peut être créé " +#~ "automatiquement, mais les mots de passe doivent y être ajoutés " +#~ "manuellement avec la commande « smbpasswd » et être tenus à jour." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Si vous ne voulez pas créer le fichier maintenant, Samba (ainsi, " +#~ "probablement, que les clients Windows) devra utiliser des mots de passe " +#~ "non chiffrés." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Veuillez consulter le fichier /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html dans le paquet samba-doc pour plus d'informations." diff --git a/debian/po/gl.po b/debian/po/gl.po new file mode 100644 index 0000000..f2fe8c5 --- /dev/null +++ b/debian/po/gl.po @@ -0,0 +1,281 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2008-06-17 20:09+0100\n" +"Last-Translator: Jacobo Tarrio <jtarrio@debian.org>\n" +"Language-Team: Galician <trasno@ceu.fi.udc.es>\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Servidor e utilidades Samba" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "¿Modificar smb.conf para empregar a configuración WINS de DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Se o seu ordenador obtén o enderezo IP dun servidor DHCP da rede, o servidor " +"DHCP tamén pode fornecer información sobre os servidores WINS (servidores de " +"nomes NetBIOS) que estean presentes na rede. Para facelo hai que modificar o " +"ficheiro smb.conf para que a configuración WINS fornecida por DHCP se lea " +"automaticamente de /var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"O paquete dhcp-client debe estar instalado para aproveitar esta " +"caracterÃstica." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "¿Configurar o ficheiro smb.conf automaticamente?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"O resto da configuración de Samba trata con cuestións que afectan aos " +"parámetros de /etc/samba/smb.conf, que é o ficheiro que se emprega para " +"configurar os programas de Samba (nmbd e smbd). O seu ficheiro smb.conf " +"actual contén unha liña «include» ou unha opción que cobre varias liñas, o " +"que pode confundir ao proceso de configuración automático e facer que teña " +"que editar o ficheiro smb.conf a man para poñelo a funcionar outra vez." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Se non escolle esta opción ha ter que facer os cambios na configuración " +"vostede mesmo, e non ha poder aproveitar as melloras periódicas na " +"configuración." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Nome do grupo de traballo/dominio:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Indique o grupo de traballo para este sistema. Este parámetro controla o " +"grupo de traballo no que este sistema aparecerá cando funcione como " +"servidor, o grupo de traballo que se usará ao navegar usando varios " +"clientes, e o nome de dominio que se emprega coa configuración " +"security=domain." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "¿Actualizar de Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "É posible migrar os ficheiros de configuración existentes de Samba 3 a " +#~ "Samba 4. AÃnda que é bastante probable que falle en configuracións " +#~ "complexas, pode fornecer un bo punto de partida para a maiorÃa das " +#~ "instalacións existentes." + +#, fuzzy +#~ msgid "Realm name:" +#~ msgstr "Reino:" + +#~ msgid "Use password encryption?" +#~ msgstr "¿Empregar cifrado de contrasinais?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Todos os clientes Windows recentes comunÃcanse cos servidores SMB/CIFS " +#~ "empregando contrasinais cifrados. Se quere empregar contrasinais de texto " +#~ "claro ha ter que cambiar un parámetro no rexistro de Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Recoméndase activar esta opción xa que os contrasinais en texto claro xa " +#~ "non son mantidos nos produtos Microsoft. Se o fai, asegúrese de ter un " +#~ "ficheiro /etc/samba/smbpasswd válido e de estabelecer nel os " +#~ "contrasinais de cada usuario coa orde smbpasswd." + +#~ msgid "Samba server" +#~ msgstr "Servidor Samba" + +#~ msgid "daemons" +#~ msgstr "servizos" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "¿Como quere executar Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "O servizo de Samba smbd pode funcionar coma un servizo normal ou desde " +#~ "inetd. Recoméndase executalo coma un servizo." + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "¿Configurar Samba 4 coma PDC?" + +#~ msgid "" +#~ "Even when using this option, you will need to set up DNS such that it " +#~ "serves the data from the zone file in that directory before you can use " +#~ "the Active Directory domain." +#~ msgstr "" +#~ "Incluso ao empregar esta opción ha ter que configurar DNS de xeito que " +#~ "sirva os datos desde o ficheiro de zona dese directorio antes de poder " +#~ "empregar o dominio Active Directory." + +#~ msgid "" +#~ "Please specify the Kerberos realm this server will be in. In many cases, " +#~ "this will be the same as the DNS domain name." +#~ msgstr "" +#~ "Indique o reino Kerberos ao que ha pertencer este servidor. En moitos " +#~ "casos ha ser o mesmo que o nome de dominio DNS." + +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Indique o dominio no que quere que apareza este servidor cando lle " +#~ "pregunten os clientes." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "¿Crear a base de datos de contrasinais de samba, /var/lib/samba/passdb." +#~ "tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Para que sexa compatible coa configuración por defecto da maiorÃa das " +#~ "versións de Windows, Samba ten que se configurar para empregar " +#~ "contrasinais cifrados. Para facelo, hai que armacenar os contrasinais dos " +#~ "usuarios nun ficheiro separado de /etc/passwd. Este ficheiro pódese crear " +#~ "automaticamente, pero os contrasinais hai que engadilos á man empregando " +#~ "smbpasswd e hai que mantelo actualizado no futuro." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Se non o crea ha ter que reconfigurar samba (e probablemente tamén as " +#~ "máquinas cliente) para que empreguen contrasinais en texto normal." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Consulte o ficheiro /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html do " +#~ "paquete samba-doc para ter máis detalles." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Non está soportado o encadeamento de motores de passdb" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "A partires da versión 3.0.23, samba xa non soporta o encadeamento de " +#~ "varios motores no parámetro \"passdb backend\". Semella que o seu " +#~ "ficheiro smb.conf contén un parámetro de motor de passdb que consiste " +#~ "nunha lista de motores. A nova versión de samba non ha funcionar ata que " +#~ "o corrixa." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "¿Trasladar /etc/samba/smbpasswd a /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 introduciu unha interface de base de datos SAM máis completa " +#~ "que substitúe ao ficheiro /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Confirme se quere que se migre automaticamente o ficheiro smbpasswd " +#~ "existente a /var/lib/samba/passdb.tdb. Non escolla esta opción se " +#~ "pretende empregar outro motor pdb (por exemplo, LDAP)." + +#~ msgid "daemons, inetd" +#~ msgstr "servizos, inetd" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Consulte o ficheiro /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-" +#~ "Guide/pwencrypt.html do paquete samba-doc para obter máis detalles." diff --git a/debian/po/gu.po b/debian/po/gu.po new file mode 100644 index 0000000..9e80fd5 --- /dev/null +++ b/debian/po/gu.po @@ -0,0 +1,231 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba_gu\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2007-06-08 20:22+0530\n" +"Last-Translator: Kartik Mistry <kartik.mistry@gmail.com>\n" +"Language-Team: Gujarati <team@utkarsh.org>\n" +"Language: gu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "DHCP માંથી WINS ગોઠવણીઓ ઉપયોગ કરવા માટે smb.conf બદલશો?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"જો તમારà«àª‚ કમà«àªªà«àª¯à«àªŸàª° નેટવરà«àª•àª®àª¾àª‚ આઇપી સરનામાંની માહિતી DHCP સરà«àªµàª°àª®àª¾àª‚થી લે છે તો, DHCP સરà«àªµàª° " +"નેટવરà«àª•àª®àª¾àª‚ હાજર રહેલ WINS સરà«àªµàª°à«‹ (\"NetBIOS નામ સરà«àªµàª°à«‹\") વિશેની માહિતી પણ પૂરી પાડી " +"શકે છે. આને માટે તમારે smb.conf ફાઇલમાં ફેરફાર કરવો પડશે જેથી DHCP ઠપà«àª°à«€ પાડેલ WINS " +"ગોઠવણીઓ આપમેળે /var/lib/samba/dhcp.conf માંથી વાંચી શકાય." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "આ લાકà«àª·àª£àª¿àª•àª¤àª¾àª¨à«‹ લાઠલેવા માટે dhcp-કà«àª²àª¾àª¯àª¨à«àªŸ પેકેજ સà«àª¥àª¾àªªàª¿àª¤ કરેલ હોવà«àª‚ જ જોઇàª." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "smb.conf આપમેળે રà«àªªàª°à«‡àª–ાંકિત કરશો?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"સામà«àª¬àª¾ રà«àªªàª°à«‡àª–ાંકનનાં બાકીનાં પà«àª°àª¶à«àª¨à«‹ /etc/samba/smb.conf નાં વિકલà«àªªà«‹ સાથે કામ પાર પાડે " +"છે, જે સામà«àª¬àª¾ કારà«àª¯àª•à«àª°àª®à«‹àª¨à«‡ (nmbd અને smbd) રà«àªªàª°à«‡àª–ાંકન કરવા માટે વપરાય છે. તમારી હાલની " +"smb.conf ફાઇલ 'include' લીટી ધરાવે છે અથવા àªàª• થી વધૠલીટીમાં વિસà«àª¤àª¾àª°àªµàª¾àª¨à«‹ વિકલà«àªª " +"ધરાવે છે, જે આપમેળે રà«àªªàª°à«‡àª–ાંકન કà«àª°àª¿àª¯àª¾àª¨à«‡ મà«àª‚àªàªµàª£àª®àª¾àª‚ મૂકી શકે છે અને તમારે smb.conf ફરી કામ કરતી " +"કરવા માટે જાતે સà«àª§àª¾àª°àªµà«€ પડશે." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"જો તમે આ વિકલà«àªª પસંદ નહી કરો તો, તમારે બધા રà«àªªàª°à«‡àª–ાંકનો તમારી જાતે કરવા પડશે, અને તમે " +"આવૃતિક રà«àªªàª°à«‡àª–ાંકન સà«àª§àª¾àª°àª¾àª“નો લાઠલઇ શકશો નહી." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "વરà«àª•àª—à«àª°à«àªª/ડોમેઇન નામ:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#~ msgid "Use password encryption?" +#~ msgstr "પાસવરà«àª¡ àªàª¨à«àª•à«àª°àª¿àªªà«àª¶àª¨ વાપરશો?" + +#, fuzzy +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "હાલનાં બધા વિનà«àª¡à«‹àª કà«àª²àª¾àª¯àª¨à«àªŸà«‹ SMB સરà«àªµàª°à«‹ સાથે àªàª¨à«àª•à«àª°àª¿àªªà«àªŸà«‡àª¡ પાસવરà«àª¡à«‹àª¨à«‹ ઉપયોગ કરીને " +#~ "સંદેશા વà«àª¯àªµàª¹àª¾àª° કરે છે. જો તમે સાદો લખાણ પાસવરà«àª¡ વાપરવા માંગતા હોવ તો તમારે, વિનà«àª¡à«‹àª " +#~ "રજીસà«àªŸà«àª°à«€àª®àª¾àª‚ વિકલà«àªª બદલવો પડશે." + +#, fuzzy +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "આ વિકલà«àªª સકà«àª°àª¿àª¯ કરવાનà«àª‚ ખૂબ જ સલાહàªàª°à«àª¯à«àª‚ છે. જો તમે કરશો તો, તમે ધà«àª¯àª¾àª¨àª®àª¾àª‚ રાખશો કે " +#~ "તમારી પાસે યોગà«àª¯ /etc/samba/smbpasswd ફાઇલ હોય અને દરેક વપરાશકરà«àª¤àª¾ માટે તમે " +#~ "smbpasswd ઉપયોગ કરીને પાસવરà«àª¡ ગોઠવેલો છે." + +#~ msgid "daemons" +#~ msgstr "ડેમોનà«àª¸" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "તમે સામà«àª¬àª¾ કઇ રીતે ઉપયોગ કરશો?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "સામà«àª¬àª¾ ડેમોન smbd સામાનà«àª¯ ડેમોન અથવા inetd તરીકે ચાલી શકે છે. ડેમોન તરીકે ચલાવવાનà«àª‚ " +#~ "સલાહàªàª°à«àª¯à«àª‚ છે." + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "જà«àª¯àª¾àª°à«‡ કà«àª²àª¾àª¯àª¨à«àªŸà«‹ દà«àªµàª¾àª°àª¾ પૂછવામાં આવે તà«àª¯àª¾àª°à«‡ વપરાતà«àª‚ આ સરà«àªµàª° માટેનà«àª‚ વરà«àª•àª—à«àª°à«àªªàª¨à«àª‚ નામ મહેરબાની " +#~ "કરી સà«àªªàª·à«àªŸ કરો. ધà«àª¯àª¾àª¨àª®àª¾àª‚ રાખો કે આ વિકલà«àªª ડોમેઇન નામને પણ નિયંતà«àª°àª£ કરે છે જà«àª¯àª¾àª°à«‡ " +#~ "સલામતી=ડોમેઇન ગોઠવણી ઉપયોગ કરવામાં આવે છે." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "સામà«àª¬àª¾ પાસવરà«àª¡ ડેટાબેàª, /var/lib/samba/passdb.tdb બનાવશો?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "વિનà«àª¡à«‹àªàª¨à«€ મોટાàªàª¾àª—ની આવૃતિઓ જોડે અનà«àª°à«àªª થવા માટે, સામà«àª¬àª¾ àªàª¨à«àª•à«àª°àª¿àªªà«àªŸà«‡àª¡ પાસવરà«àª¡ સાથે કામ " +#~ "કરવા માટે ગોઠવેલ હોવà«àª‚ જોઇàª. આને માટે વપરાશકરà«àª¤àª¾ પાસવરà«àª¡à«‹ અલગ ફાઇલ /etc/passwd " +#~ "માં સંગà«àª°àª¹ થવા જોઇàª. આ ફાઇલ આપમેળે બનાવી શકાય છે, પણ પાસવરà«àª¡à«‹ જાતે જ smbpasswd " +#~ "ચલાવીને ઉમેરવા જોઇઠઅને àªàªµàª¿àª·à«àª¯àª®àª¾àª‚ છેલà«àª²àª¾àª®àª¾àª‚ છેલà«àª²àª¾àª‚ સà«àª§àª¾àª°à«‡àª² રાખવા જોઇàª." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "જો તમે નહી બનાવો તો, તમારે સાદા પાસવરà«àª¡à«‹ વાપરવા માટે સામà«àª¬àª¾ (અને કદાચ તમારા " +#~ "કà«àª²àª¾àª¯àª¨à«àªŸ મશીનોને) ફરીથી રà«àªªàª°à«‡àª–ાંકિત કરવાં પડશે." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "samba-doc પેકેજમાં /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html વધૠ" +#~ "માહિતી માટે જà«àª“." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "passdb બેકàªàª¨à«àª¡ બદલવાનà«àª‚ આધાર આપવામાં આવતà«àª‚ નથી" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "આવૃતિ à«©.૦.૨૩ ની સાથે, સામà«àª¬àª¾ હવે \"પાસવરà«àª¡ બેકàªàª¨à«àª¡\" વિકલà«àªªàª®àª¾àª‚ àªàª• કરતાં વધૠબેકàªàª¨à«àª¡àª¨à«‹ " +#~ "આધાર આપતà«àª‚ નથી. àªàªµà«àª‚ જાણવામાં આવેલ છે કે તમારી smb.conf ફાઇલ પાસવરà«àª¡ બેકàªàª¨à«àª¡ વિકલà«àªª " +#~ "સાથે બેકàªàª¨à«àª¡àª¨à«€ યાદી ધરાવે છે. તમે જà«àª¯àª¾àª‚ સà«àª§à«€ આ સà«àª§àª¾àª°àª¶à«‹ નહી તà«àª¯àª¾àª‚ સà«àª§à«€ સામà«àª¬àª¾ કામ કરશે " +#~ "નહી." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "/etc/samba/smbpasswd ને /var/lib/samba/passdb.tdb માં ખસેડશો?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "સામà«àª¬àª¾ à«©.૦ ઠવધૠપૂરà«àª£ સામ ડેટાબેઠઇનà«àªŸàª°àª«à«‡àª¸ રજૂ કરà«àª¯à«‹ છે જે /etc/samba/smbpasswd " +#~ "ફાઇલને બરખાસà«àª¤ કરે છે." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "મહેરબાની કરી ખાતરી કરો કે તમે હાલની સામà«àª¬àª¾ પાસવરà«àª¡ ફાઇલને આપમેળે /var/lib/samba/" +#~ "passdb.tdb માં ખસેડવા માંગો છો. આ વિકલà«àªª પસંદ કરશો નહી જો તમે બીજà«àª‚ pdb બેકàªàª¨à«àª¡ " +#~ "(દા.ત., LDAP) વાપરવાનà«àª‚ નકà«àª•à«€ કરà«àª¯à«àª‚ હોય." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "samba-doc પેકેજમાં /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/" +#~ "pwencrypt.html વધૠમાહિતી માટે જà«àª“." diff --git a/debian/po/he.po b/debian/po/he.po new file mode 100644 index 0000000..2bf5a21 --- /dev/null +++ b/debian/po/he.po @@ -0,0 +1,187 @@ +# translation of samba2_4.0.10+dfsg-3-he.po to Hebrew +# translation of PACKAGE. +# Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Katriel Traum <katriel.traum@gmail.com>, 2007. +# Omer Zak <w1@zak.co.il>, 2012, 2013. +msgid "" +msgstr "" +"Project-Id-Version: samba2_4.0.10+dfsg-3-he\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2013-10-23 09:52+0300\n" +"Last-Translator: Omer Zak <w1@zak.co.il>\n" +"Language-Team: Hebrew <debian-hebrew-common@lists.alioth.debian.org>\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "שרת סמבה ושירותי×" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "×”×× ×œ×©× ×•×ª ×ת הקובץ smb.conf כדי שישתמש בהגדרות WINS מתוך DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"במידה שמחשב ×–×” מקבל כתובת IP משרת DHCP ברשת, ייתכן ×›×™ שרת ×”-DHCP ×’× ×ž×¡×¤×§ " +"מידע על שרתי WINS (\"שרתי מיפוי כתובות NetBIOS\") ×”×–×ž×™× ×™× ×‘×¨×©×ª. שימוש במידע " +"×–×” מצריך ×©×™× ×•×™ בקובץ smb.conf כדי שכתובת שרת ×”-WINS שמספק שרת ×”-DHCP, ×ª×™×§×¨× " +"בצורה ×וטומטית מהקובץ /var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "על החבילה dhcp-client להיות ×ž×•×ª×§× ×ª כדי ל×פשר מ×פיין ×–×”." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "×”×× ×œ×”×’×“×™×¨ ×ת smb.conf בצורה ×וטומטית?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"ש×ר תהליך ההגדרה של סמבה עוסק בש×לות ×שר משפיעות על ×¤×¨×ž×˜×¨×™× ×‘×§×•×‘×¥ /etc/samba/" +"smb.conf. קובץ ×–×” ×”×•× ×§×•×‘×¥ ההגדרות הר×שי ×שר מכיל ×ת ×”×¤×¨×ž×˜×¨×™× ×©×œ שרתי הרקע " +"של סמבה (×©×”× smbd ו-nmbd). הקובץ smb.conf ×”× ×•×›×—×™ שלך כולל שורת 'include' ×ו " +"פרמטר ×שר מתפרש על כמה שורות. ×¤×¨×ž×˜×¨×™× ×לו ×¢×©×•×™×™× ×œ×‘×œ×‘×œ ×ת תהליך ההגדרה " +"×”×וטומטי, ויצריכו עריכה ×™×“× ×™×ª של הקובץ smb.conf על ×ž× ×ª לתקן ×ת הבעיות ול×פשר " +"לסמבה לעבוד." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"×× ×œ× ×ª×‘×—×¨ ב×פשרות זו, ×™×”×™×” עליך לבצע ×©×™× ×•×™×™× ×‘×¢×¦×ž×š ובצורה ×™×“× ×™×ª. כמו כן, ×œ× " +"תוכל להשתמש בשיפורי תצורה ×שר ×ž×ª×‘×¦×¢×™× ×ª×§×•×¤×ª×™×ª." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "×©× ×§×‘×•×¦×ª העבודה/×ž×ª×—× (Workgroup/Domain):" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"×× × ×¦×™×™×Ÿ ×ת ×©× ×§×‘×•×¦×ª העבודה (Workgroup) עבור מערכת זו. הגדרה זו קובעת ב×יזו " +"קבוצת עבודה ×ª×™×ž×¦× ×ž×¢×¨×›×ª זו כשישתמשו בה בתור שרת, מה תהיה ברירת המחדל לקבוצת " +"העבודה שישתמשו בה בזמן דפדוף ב×מצעות ×ž×ž×©×§×™× ×©×•× ×™×, ×•×©× ×”×ž×ª×—× (Domain) בעת " +"שימוש ב×פשרות security=domain." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "לשדרג מ-Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "× ×™×ª×Ÿ להמיר ×ת קבצי ההגדרות ×”×§×™×™×ž×™× ×ž-Samba 3 ל-Samba 4. סביר שההמרה תיכשל " +#~ "×‘×”×ª×§× ×•×ª מסובכות, ×בל תוצ×ותיה ××ž×•×¨×™× ×œ×ª×ª × ×§×•×“×ª התחלה טובה עבור רוב " +#~ "×”×”×ª×§× ×•×ª הקיימות." + +#~ msgid "Server role" +#~ msgstr "סוג השרת" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "בקרי ×ž×ª×—× ×ž× ×”×œ×™× ×ž×ª×—×ž×™× ×ž×¡×•×’ NT4 ×ו מסוג Active Directory ×•×ž×¡×¤×§×™× ×©×¨×•×ª×™× " +#~ "כמו × ×™×”×•×œ זהות ×ž×©×ª×ž×©×™× ×•×›× ×™×¡×•×ª למתחמי×. בכל ×ž×ª×—× ×“×¨×•×© לפחות בקר ×ž×ª×—× ×חד." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "×©×¨×ª×™× ×—×‘×¨×™ ×ž×ª×—× ×™×›×•×œ×™× ×œ×”×™×•×ª חלק ×ž×ž×ª×—× ×ž×¡×•×’ NT4 ×ו מסוג Active Directory " +#~ "×בל ××™× × × ×•×ª× ×™× ×©×¨×•×ª×™ מתח×. עמדות עבודה ושרתי הדפסה ×”×™× × ×‘×“×¨×š כלל ×©×¨×ª×™× " +#~ "חברי ×ž×ª×—× ×¨×’×™×œ×™×." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "שרת שעומד ×‘×¤× ×™ עצמו ××™× ×• יכול להיות חלק ×ž×ž×ª×—× ×•×ª×•×ž×š רק בשיתוף ×§×‘×¦×™× " +#~ "×•×›× ×™×¡×•×ª ×‘×¡×’× ×•×Ÿ ×—×œ×•× ×•×ª לקבוצות עבודה." + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "×× ×œ× ×”×•×’×“×¨ סוג השרת, ×œ× ×™×¡×•×¤×§ שרת Samba, כך שהמשתמש יוכל לד×וג לזה ×™×“× ×™×ª." + +#~ msgid "Realm name:" +#~ msgstr "×©× ×ž×ª×—×:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "× × ×œ×¦×™×™×Ÿ ×ת ×ž×ª×—× Kerberos עבור ×”×ž×ª×—× ×©× ×©×œ×˜ על ידי בקר ×ž×ª×—× ×–×”." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "בדרך כלל זו ×’×™×¨×¡× ×‘×ותיות רישיות של ×©× ×ž×—×©×‘×š ב-DNS." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "סיסמה חדשה עבור משתמש Samba†\"administrator\":" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "×× ×©×“×” ×–×” ×œ× ×™×ž×•×œ×, תיווצר סיסמה ×קר×ית." + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "× ×™×ª×Ÿ ×œ×©× ×•×ª ×חר כך ×ת הסיסמה על ידי הרצה ×›-root:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "חזור על הסיסמה עבור משתמש Samba†\"administrator\":" + +#~ msgid "Password input error" +#~ msgstr "שגי×ת קלט בסיסמה" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "שתי הסיסמ×ות ×©×”×›× ×¡×ª ××™× ×Ÿ זהות. × × ×œ× ×¡×•×ª שוב." + +#~ msgid " $ samba-tool user setpassword administrator" +#~ msgstr " $ samba-tool user setpassword administrator" diff --git a/debian/po/hu.po b/debian/po/hu.po new file mode 100644 index 0000000..3c37995 --- /dev/null +++ b/debian/po/hu.po @@ -0,0 +1,299 @@ +# Hungarian translation for samba +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the samba package. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2006. +# SZERVÃC Attila <sas@321.hu>, 2013. +# Dr. Nagy Elemér Károly <eknagy@omikk.bme.hu>, 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2013-05-14 18:21+0200\n" +"Last-Translator: Dr. Nagy Elemér Károly <eknagy@omikk.bme.hu>\n" +"Language-Team: Hungarian <debian-l10n-hungarian@lists.d.o>\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: UTF-8\n" +"X-Poedit-Language: Hungarian\n" +"X-Poedit-Country: HUNGARY\n" +"Plural-Forms: ???\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"MódosÃtod az smb.conf-ot, hogy a WINS beállÃtásokat a DHCP-n keresztül érje " +"el?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Ha e gép az IP cÃmeket egy DHCP kiszolgálótól kérdezi le a hálózaton, lehet, " +"hogy a WINS kiszolgálók (\"NetBIOS névkiszolgálók\") listáját is le tudja " +"kérdezni. Ehhez az smb.conf módosÃtása szükséges, hogy a DHCP-n keresztüli " +"WINS beállÃtásokat automatikusan kiolvassa a /var/lib/samba/dhcp.conf-ból." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +#, fuzzy +#| msgid "" +#| "The dhcp3-client package must be installed to take advantage of this " +#| "feature." +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"A dhcp3-client csomagnak telepÃtve kell lennie e képesség kihasználásához." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Az smb.conf-ot automatikusan állÃtod be?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +#| msgid "" +#| "The rest of the configuration of Samba deals with questions that affect " +#| "parameters in /etc/samba/smb.conf, which is the file used to configure " +#| "the Samba programs (nmbd and smbd). Your current smb.conf contains an " +#| "'include' line or an option that spans multiple lines, which could " +#| "confuse the automated configuration process and require you to edit your " +#| "smb.conf by hand to get it working again." +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"A Samba további beállÃtásaihoz a /etc/samba/smb.conf paramétereit " +"befolyásoló további kérdéseket kell megválaszolni, ami a Samba programok " +"(nmbd és smbd) beállÃtófájlja. A jelenlegi smb.conf tartalmaz egy 'include' " +"sort, vagy egy több sorra tört opciót, ami megzavarhatja az automata " +"beállÃtó folyamot, és szükségessé teszi az smb.conf saját kezű " +"szerkesztését, hogy az ismét működjön." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +#, fuzzy +#| msgid "" +#| "If you do not choose this option, you will have to handle any " +#| "configuration changes yourself, and will not be able to take advantage of " +#| "periodic configuration enhancements." +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Ha nem élsz e lehetÅ‘séggel, minden beállÃtás változását neked kell " +"felügyelned, és nem élvezheted az idÅ‘szakos beállÃtáshangolás elÅ‘nyeit." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +#| msgid "Workgroup/Domain Name:" +msgid "Workgroup/Domain Name:" +msgstr "Munkacsoport/Tartomány neve:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Samba3-ról frissÃted?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "A létezÅ‘ Samba3 konfigurációs fájlokat megpróbálhatjuk átvenni a Samba4-" +#~ "be. Ez valószÃnűleg nem fog sikerülni bonyolult konfiguráció esetén, de a " +#~ "legtöbb esetben jó kiindulási pont lesz." + +#~ msgid "Server role" +#~ msgstr "Szerver szerep" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "A tartományvezérlÅ‘k vezérélÅ‘k az NT4-stÃlusú vagy Active Directory " +#~ "tartományokat és olyan szolgáltatásokat biztosÃtanak mint az azonosÃtás " +#~ "vagy a tartomány bejelentkezés. Minden tartománynak legalább egy " +#~ "tartományvezérlÅ‘re van szüksége." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "A tagszerverek egy NT4-stÃlusú vagy egy Active Directory tartomány részei " +#~ "lehetnek de nem biztosÃtanak tartomány szolgáltatásokat. A " +#~ "munkaállomások, fájl szerverek és nyomtató szerverek általában sima " +#~ "tartomány tagok." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "A különálló szervert nem lehet tartományban használni. Csak " +#~ "fájlmegosztást és Windows for Workgroups stÃlusú bejelentkezést támogat." + +#~ msgid "Realm name:" +#~ msgstr "Birodalom (realm) név:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "Kérlek add meg az ezen tartományvezérlÅ‘ által vezérelt tartományhoz " +#~ "tartozó Kerberos birodalmat (realm-ot)." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "Ez általában a DNS gépnév csupa nagybetűvel Ãrva." + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Add meg e kiszolgáló által megjelenÃtendÅ‘ munkacsoport, mikor azt " +#~ "lekérdezik a kliensek. Vedd figyelembe, hogy e paraméter meghatározza a " +#~ "tartomány nevét is, ha engedélyezve van a security=domain beállÃtás." + +#~ msgid "Use password encryption?" +#~ msgstr "Használsz kódolt jelszavakat?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB servers using encrypted " +#~ "passwords. If you want to use clear text passwords you will need to " +#~ "change a parameter in your Windows registry." +#~ msgstr "" +#~ "Az újabb Windows kliensek kódolt jelszavakkal kommunikálnak az SMB " +#~ "kiszolgálókkal. Ha sima szöveges jelszavakat kÃvánsz alkalmazni, meg kell " +#~ "változtatni egy beállÃtást a kliensek regisztrációjában." + +#~ msgid "" +#~ "Enabling this option is highly recommended. If you do, make sure you have " +#~ "a valid /etc/samba/smbpasswd file and that you set passwords in there for " +#~ "each user using the smbpasswd command." +#~ msgstr "" +#~ "E lehetÅ‘ség bekapcsolása erÅ‘sen ajánlott. Ha ezt teszed, gyÅ‘zÅ‘dj meg róla " +#~ "hogy érvényes /etc/samba/smbpasswd fájllal rendelkezel és hogy " +#~ "beállÃtottad a jelszavakat minden felhasználóhoz a smbpasswd paranccsal." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Létrehozod a samba jelszóadatbázist (/var/lib/samba/passdb.tdb)?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Az újabb Windows kliensekkel való kompatibilitás érdekében a Samba-t " +#~ "kódolt jelszavak használatára kell beállÃtani. Ez megköveteli a " +#~ "jelszavak /etc/passwd fájltól különálló tárolását. Ez a fájl " +#~ "automatikusan létrejön, de a jelszavakat kézzel kell felvenni az " +#~ "smbpasswd parancs futtatásával és a továbbiakban kezelni." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Ha nem hozod létre, újra be kell állÃtani a Samba-t (és valószÃnűleg a " +#~ "klienseket is) a sima szöveges jelszavakhoz." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Lásd a samba-doc csomag /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html " +#~ "odalát a részletekért." + +#~ msgid "daemons" +#~ msgstr "démonok" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Hogyan induljon a Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Az smbd Samba démon futhat normál démonként vagy az inetd-n keresztül. A " +#~ "démonként való futtatása a javasolt beállÃtás." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "A passdb hátterek láncolása nem támogatott" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "A 3.0.23 verziótól a samba nem támogatja több háttér láncolását a " +#~ "\"passdb backend\" paraméterben. Ezzel szemben úgy fest, az smb.conf " +#~ "fájlod egy hátterek listájából álló passdb háttér paramétert tartalmaz. A " +#~ "samba új verziója ennek javÃtásával fog működni." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "Ãthelyezed a /etc/samba/smbpasswd tartalmát a /var/lib/samba/passdb.tdb-" +#~ "be?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "A Samba 3.0 sokkal átfogóbb SAM adatbázis felületet ad, mellyel elavul a /" +#~ "etc/samba/smbpasswd fájl." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "ErÅ‘sÃtsd meg a létezÅ‘ smbpasswd fájl áthelyezését a /var/lib/samba/passdb." +#~ "tdb fájlba. Ha másik pdb hátteret használnál (például LDAP), válaszolj " +#~ "nemmel." diff --git a/debian/po/id.po b/debian/po/id.po new file mode 100644 index 0000000..bc95005 --- /dev/null +++ b/debian/po/id.po @@ -0,0 +1,281 @@ +# translation of samba_po-id.po to Bahasa Indonesia +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Arief S Fitrianto <arief@gurame.fisika.ui.ac.id>, 2008. +# Mahyuddin Susanto <udienz@gmail.com>, 2012. +# Al Qalit <qal.smith@gmail.com>, 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: samba_4.0.0~alpha17.dfsg2-2\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2012-02-16 04:48+0700\n" +"Last-Translator: Al Qalit <qal.smith@gmail.com>\n" +"Language-Team: Debian Indonesia Translator <debian-l10n-indonesian@lists." +"debian.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplural=1, plural>1\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Server samba dan peralatan" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Ubah smb.conf agar menggunakan setelan WINS dari DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Jika komputer Anda mendapatkan alamat IP dari sebuah server DHCP di " +"jaringan, server DHCP tersebut mungkin juga memberikan info tentang server " +"WINS (\"server NetBIOS\") yang tersedia dalam jaringan. Berkas smb.conf " +"perlu diubah agar setelan WINS dari server DHCP dapat dibaca otomatis dari /" +"var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "Paket dhcp-client harus dipasang agar fitur ini dapat digunakan." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Konfigurasikan smb.conf secara otomatis?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Konfigurasi Samba selanjutnya berhubungan dengan pertanyaan seputar " +"parameter dalam /etc/samba/smb.conf yang digunakan untuk mengonfigurasi " +"program Samba (nmbd dan smbd). Konfigurasi smb.conf Anda saat ini berisi " +"setelah yang lebih dari satu baris, yang dapat membingungkan proses " +"konfigurasi otomatis. Anda harus mengubah smb.conf secara manual agar dapat " +"digunakan lagi." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Jika Anda tidak mengambil pilihan ini, Anda harus menangani sendiri semua " +"konfigurasi dan tidak dapat memanfaatkan keuntungan dari pembaharuan " +"konfigurasi secara periodik." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Nama Domain/Workgrop:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Mohon tentukan workgroup untuk sistem ini. Pengaturan kontrol workgroup apaa " +"yang akan tampil jika digunakan sebagai server, workgrup bawaan akan " +"digunakan ketika menjelajahi dengan berbagai frontends, dan nama doman " +"digunakan dengan pengaturan \"security=domain\"." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Upgrade dari Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "Sangat memungkinkan untuk migrasi dari berkas pengaturan lama dari Samba " +#~ "3 ke Samba4. Hal ini mungkin gagal untuk instalasi kompleks, tetapi " +#~ "memberikan titik awal yang baik untuk kebanyakan instalasi yang ada." + +#~ msgid "Server role" +#~ msgstr "Aturan server" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "Pengelola kontroller domain gaya-NT4 atau Active Domain dan penyedia " +#~ "layanan seperti pengelola identitas dan login domain. Setiap domain harus " +#~ "memiliki setidaknya satu kontroller domain" + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "Anggota server dapat menjadi bagian dari gaya-NT4 atau domain Active " +#~ "Directory tapi tidak menyediakan layanan domain apapun. Workstation dan " +#~ "berkas atau server pencetak biasanya aggota domain biasa." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "Server standalone tidak dapat digunakan di domain dan hanya mendukung " +#~ "sharing berkas dan login Windows untuk gaya-Workgroups." + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "Jika tidak ada aturan server yang ditentukan. Server Samba tidak akan " +#~ "ditetapkan, jadiini bisa dikerjakan secara manual oleh pengguna." + +#~ msgid "Realm name:" +#~ msgstr "Nama Realm:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "Silakan tentukan realm Kerberos untuk domain yang dikendalikan oleh " +#~ "kontroller domain ini." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "Biasanya ini adalah versi huruf besar dari nama DNS host anda." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "Kata sandi baru untuk pengguna \"administrator\" Samba:" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "Jika bagian ini kosong, sebuah kata sandi acak akan dihasilkan" + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "Kata sandi dapat diatur kemudian, dengan dijalankan oleh root:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "Ulangi kata sandi untuk pengguna \"administrator\" Samba:" + +#~ msgid "Password input error" +#~ msgstr "Kesalahan masukan kata sandi" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "Dua kata sandi yang anda masukkan tidak sama. Mohon ulangi lagi." + +#~ msgid " $ samba-tool user setpassword administrator" +#~ msgstr " $ samba-tool pengguna setpassword administrator" + +#~ msgid "Use password encryption?" +#~ msgstr "Gunakan enkripsi sandi?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Semua klien Windows terbaru berkomunikasi dengan server SMB/CIFS " +#~ "menggunakan sandi terenkripsi. Jika Anda ingin menggunakan sandi teks, " +#~ "Anda harus mengubah parameter tersebut dalam register Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Mengaktifkan pilihan ini sangat dianjurkan karena dukungan sandi teks " +#~ "sudah tidak didukung oleh produk Microsoft Windows. Jika demikian, " +#~ "pastikan Anda memiliki berkas valid /etc/samba/smbpasswd dan anda " +#~ "menentukan password disana untuk setiap pengguna menggunakan perintah " +#~ "smbpasswd." + +#~ msgid "Samba server" +#~ msgstr "Server Samba" + +#~ msgid "daemons" +#~ msgstr "server" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Bagaimana Anda ingin menjalankan Samba" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Server samba (smbd) dapat berjalan sebagai server normal (daemon) atau " +#~ "dari inetd. Sangat dianjurkan menjalankannya sebagai server normal." + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "Set up Samba 4 sebagai PDC?" + +#~ msgid "" +#~ "Even when using this option, you will need to set up DNS such that it " +#~ "serves the data from the zone file in that directory before you can use " +#~ "the Active Directory domain." +#~ msgstr "" +#~ "Bahkan ketika menggunakan opsi ini, anda harus mengatur DNS sedemikian " +#~ "rupa sehingga melayani data dari berkas zona dalam direktori tersebut " +#~ "sebelum Anda dapat menggunakan domain Active Directory." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Buat basis data sandi samba dalam /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Agar kompatibel dengan semua versi Windows, Samba harus dikonfigurasi " +#~ "untuk menggunakan sandi terenkripsi. Hal ini mengharuskan sandi pengguna " +#~ "disimpan dalam berkas selain /etc/passwd. Berkas ini dapat dibuat " +#~ "otomatis, tetapi kata sandi harus ditambahkan secara manual dengan " +#~ "menjalankan perintah smbpasswd dan diperbaharui setiap ada perubahan " +#~ "pengguna." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Jika Anda tidak membuatnya, Anda harus mengonfigurasi ulang Samba (dan " +#~ "juga komputer klien) untuk menggunakan sandi teks-murni." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Lihat /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html dalam paket samba-doc." diff --git a/debian/po/it.po b/debian/po/it.po new file mode 100644 index 0000000..567a777 --- /dev/null +++ b/debian/po/it.po @@ -0,0 +1,191 @@ +# Italian (it) translation of debconf templates for samba +# This file is distributed under the same license as the samba package. +# Luca Monducci <luca.mo@tiscali.it>, 2004-2014. +# +msgid "" +msgstr "" +"Project-Id-Version: samba 2-4.1.11+dfsg-1 italian debconf templates\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2014-08-31 15:02+0200\n" +"Last-Translator: Luca Monducci <luca.mo@tiscali.it>\n" +"Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Server e utilità Samba" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Modificare smb.conf per usare le impostazioni WINS da DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Se il computer acquisisce l'indirizzo IP da un server DHCP, tale server DHCP " +"potrebbe fornire anche le informazioni sui server WINS (i name server per " +"NetBIOS) presenti nella rete. È necessario modificare il file smb.conf per " +"far leggere automaticamente da /var/lib/samba/dhcp.conf le impostazioni WINS " +"fornite da DHCP." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Per usare questa funzionalità è necessario che il pacchetto dhcp-client sia " +"installato." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Configurare automaticamente smb.conf?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Il resto della configurazione di Samba riguarda i parametri in /etc/samba/" +"smb.conf, il file usato per configurare i programmi di Samba (nmbd e smbd). " +"Attualmente il file smb.conf contiene una riga «include» o un'opzione che si " +"estende su più righe; ciò potrebbe confondere il processo di configurazione " +"automatica e richiere la modifica manuale del file smb.conf per renderlo " +"nuovamente funzionante." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Chi rinuncia alla configurazione automatica dovrà gestire da solo qualunque " +"cambiamento nella configurazione e non potrà beneficiare dei periodici " +"miglioramenti della configurazione." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Nome del Gruppo di lavoro/Dominio:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Specificare il gruppo di lavoro per questo sistema. Questa impostazione " +"controlla: in quale gruppo di lavoro appare il sistema quando è usato come " +"server, il gruppo di lavoro predefinito usato nelle varie interfacce di " +"navigazione e il nome del dominio se è usato il parametro «security=domain»." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Aggiornare da Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "È possibile migrare i file di configurazione esistenti da Samba 3 a Samba " +#~ "4. Probabilmente, se la configurazione è particolarmente complessa, " +#~ "questo processo non riuscirà , tuttavia dovrebbe fornire un buon punto di " +#~ "partenza per la maggior parte delle installazioni esistenti." + +#~ msgid "Server role" +#~ msgstr "Ruolo del server" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "I domain controller gestiscono domini di tipo NT4 o Active Directory e " +#~ "forniscono servizi quali la gestione dell'identità e l'accesso al " +#~ "dominio. Ogni dominio ha almeno un domain controller." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "I server membri fanno parte di un dominio di tipo NT4 o Active Directory " +#~ "ma non forniscono alcun servizio di dominio. Le postazioni di lavoro, i " +#~ "file server o i print server solitamente sono dei normali membri del " +#~ "dominio." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "Un server a se stante non può essere usato in un dominio e supporta solo " +#~ "la condivisione dei file e l'accesso di tipo \"Windows for Workgroups\"." + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "Senza specificare un ruolo, il server Samba non sarà avviato tuttavia " +#~ "l'utente potrà scegliere un ruolo manualmente." + +#~ msgid "Realm name:" +#~ msgstr "Nome realm:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "Specificare il realm Kerberos per il dominio da controllare con questo " +#~ "domain controller." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "" +#~ "Solitamente è usato il nome DNS della macchina scritto in maiuscolo." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "Nuova password per l'utente Samba \"administrator\":" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "" +#~ "Se questo campo è lasciato vuoto, verrà generata una password casuale." + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "In seguito, per cambiare questa password, eseguire da root:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "Ripetere la password per l'utente Samba \"administrator\":" + +#~ msgid "Password input error" +#~ msgstr "Errore di inserimento della password" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "Le password inserite sono diverse. Inserirle di nuovo." diff --git a/debian/po/ja.po b/debian/po/ja.po new file mode 100644 index 0000000..f4536de --- /dev/null +++ b/debian/po/ja.po @@ -0,0 +1,197 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba4\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2013-10-23 23:04+0900\n" +"Last-Translator: Kenshi Muto <kmuto@debian.org>\n" +"Language-Team: Japanese <debian-japanese@lists.debian.org>\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Samba サーãƒãŠã‚ˆã³ãƒ¦ãƒ¼ãƒ†ã‚£ãƒªãƒ†ã‚£" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "DHCP ã‹ã‚‰ WINS è¨å®šã‚’使ã†ã‚ˆã† smb.conf を変更ã—ã¾ã™ã‹?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"ã‚ãªãŸã®ã‚³ãƒ³ãƒ”ュータãŒãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ä¸Šã® DHCP サーãƒã‹ã‚‰ IP ã‚¢ãƒ‰ãƒ¬ã‚¹æƒ…å ±ã‚’å–å¾—" +"ã—ã¦ã„ã‚‹ã®ã§ã‚ã‚Œã°ã€DHCP サーãƒã¯ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ä¸Šã«ã‚ã‚‹ WINS サーム(NetBIOS " +"ãƒãƒ¼ãƒ サーãƒ) ã«ã¤ã„ã¦ã®æƒ…å ±ã‚’æä¾›ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚DHCP ã§æä¾›ã•ã‚Œã‚‹ WINS " +"è¨å®šã¯ /var/lib/samba/dhcp.conf ã‹ã‚‰è‡ªå‹•çš„ã«èªã¿è¾¼ã¾ã‚Œã‚‹ãŸã‚ã€smb.conf ファイルを" +"変更ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"ã“ã®æ©Ÿèƒ½ã‚’使ã†ãŸã‚ã«ã¯ã€dhcp-client パッケージãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã‚‹å¿…è¦ãŒ" +"ã‚ã‚Šã¾ã™ã€‚" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "自動的㫠smb.conf ã‚’è¨å®šã—ã¾ã™ã‹?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Samba ã®è¨å®šã®æ®‹ã‚Šã®éƒ¨åˆ†ã¯ã€Samba プãƒã‚°ãƒ©ãƒ (nmbd ãŠã‚ˆã³ smbd) ã‚’è¨å®šã™ã‚‹ã®" +"ã«ä½¿ã†ãƒ•ã‚¡ã‚¤ãƒ« /etc/samba/smb.conf ã«ã‚るパラメータã«å½±éŸ¿ã™ã‚‹è³ªå•ã§ã™ã€‚ç¾åœ¨" +"ã® smb.conf ã¯ã€'include' è¡Œã¾ãŸã¯è¤‡æ•°è¡Œã«ã¾ãŸãŒã‚‹ã‚ªãƒ—ションをå«ã‚“ã§ã„ã¾ã™ã€‚" +"ã“ã‚Œã¯è‡ªå‹•è¨å®šå‡¦ç†ã‚’æ··ä¹±ã•ã›ã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã€å†ã³ãã‚ŒãŒä½œå‹•ã™ã‚‹ã‚ˆã†ã«ã™ã¹ã " +"smb.conf ã®æ‰‹å‹•ã§ã®ä¿®æ£ã‚’å¿…è¦ã¨ã—ã¾ã™ã€‚" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"ã“ã®é¸æŠžè‚¢ã§ã€Œã„ã„ãˆã€ã¨ç”ãˆã‚‹ã¨ã€ã™ã¹ã¦ã®è¨å®šã®å¤‰æ›´ã‚’ã‚ãªãŸè‡ªèº«ãŒé¢å€’を見る" +"å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚ã“ã‚Œã¯å®šæœŸçš„ãªè¨å®šæ”¹å–„ã«ã¯å‘ã„ã¦ã„ã¾ã›ã‚“。" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "ワークグループ/ドメインå:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"ã“ã®ã‚·ã‚¹ãƒ†ãƒ ã®ãƒ¯ãƒ¼ã‚¯ã‚°ãƒ«ãƒ¼ãƒ—を指定ã—ã¦ãã ã•ã„。ã“ã®è¨å®šã¯ã€ã‚·ã‚¹ãƒ†ãƒ ãŒã‚µãƒ¼ãƒ" +"ã¨ã—ã¦ä½¿ã‚れるã¨ãã«ã©ã®ãƒ¯ãƒ¼ã‚¯ã‚°ãƒ«ãƒ¼ãƒ—ã¨ã—ã¦ç¾ã‚Œã‚‹ã‹ã€ã„ãã¤ã‹ã®ãƒ•ãƒãƒ³ãƒˆã‚¨ãƒ³" +"ドã§ãƒ–ラウジングã•ã‚ŒãŸã¨ãã«ä½¿ã‚れるデフォルトã®ãƒ¯ãƒ¼ã‚¯ã‚°ãƒ«ãƒ¼ãƒ—ã€ãã—ã¦" +"\"security=domain\" è¨å®šãŒä½¿ã‚ã‚ŒãŸã¨ãã®ãƒ‰ãƒ¡ã‚¤ãƒ³åを制御ã—ã¾ã™ã€‚" + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Samba 3 ã‹ã‚‰ã‚¢ãƒƒãƒ—グレードã—ã¾ã™ã‹?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "Samba 3 ã‹ã‚‰ Samba 4 ã«æ—¢å˜ã®è¨å®šãƒ•ã‚¡ã‚¤ãƒ«ã‚’移行ã™ã‚‹ã“ã¨ãŒå¯èƒ½ã§ã™ã€‚ã“ã‚Œ" +#~ "ã¯ã€è¤‡é›‘ãªã‚»ãƒƒãƒˆã‚¢ãƒƒãƒ—ã§ã¯å¤±æ•—ã™ã‚‹ã“ã¨ã¯ã‚ã‚‹ã‚‚ã®ã®ã€å¤§åŠã®æ—¢å˜ã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼" +#~ "ル状態ã«ã¨ã£ã¦è‰¯ã„開始点をæä¾›ã™ã‚‹ã“ã¨ã«ãªã‚Šã¾ã™ã€‚" + +#~ msgid "Server role" +#~ msgstr "サーãƒãƒãƒ¼ãƒ«" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "ドメインコントãƒãƒ¼ãƒ©ã¯ NT4 スタイルã¾ãŸã¯ Active Directory ドメインを管ç†" +#~ "ã—ã€èªè¨¼ç®¡ç†ã‚„ドメインãƒã‚°ã‚ªãƒ³ãªã©ã®ã‚µãƒ¼ãƒ“スをæä¾›ã—ã¾ã™ã€‚å„ドメインã¯å°‘ãª" +#~ "ãã¨ã‚‚ 1 ã¤ã®ãƒ‰ãƒ¡ã‚¤ãƒ³ã‚³ãƒ³ãƒˆãƒãƒ¼ãƒ©ã‚’æŒã¤å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "メンãƒã‚µãƒ¼ãƒã¯ã€NT4 スタイルã¾ãŸã¯ Active Directory ドメインã®ä¸€éƒ¨ã«ãªã‚‹ã“" +#~ "ã¨ãŒã§ãã¾ã™ãŒã€ãƒ‰ãƒ¡ã‚¤ãƒ³ã‚µãƒ¼ãƒ“スã¯ä½•ã‚‚æä¾›ã—ã¾ã›ã‚“。ワークステーションãŠã‚ˆ" +#~ "ã³ãƒ•ã‚¡ã‚¤ãƒ«/プリントサーãƒã¯é€šå¸¸ã€æ™®é€šã®ãƒ‰ãƒ¡ã‚¤ãƒ³ãƒ¡ãƒ³ãƒã§ã™ã€‚" + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "スタンドアãƒãƒ³ã‚µãƒ¼ãƒã¯ã€ãƒ‰ãƒ¡ã‚¤ãƒ³ã§ã¯åˆ©ç”¨ã§ããšã€ãƒ•ã‚¡ã‚¤ãƒ«å…±æœ‰ãŠã‚ˆã³ " +#~ "Windows for Workgroups スタイルã®ãƒã‚°ã‚¤ãƒ³ã®ã¿ã‚’サãƒãƒ¼ãƒˆã—ã¾ã™ã€‚" + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "サーãƒãƒãƒ¼ãƒ«ãŒæŒ‡å®šã•ã‚Œãªã„å ´åˆã€Samba サーãƒã¯ä¾›çµ¦ã•ã‚Œãšã€ãƒ¦ãƒ¼ã‚¶ãŒæ‰‹å‹•ã§ã“" +#~ "れを行ã†ã“ã¨ã«ãªã‚Šã¾ã™ã€‚" + +#~ msgid "Realm name:" +#~ msgstr "レルムå:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "ã“ã®ãƒ‰ãƒ¡ã‚¤ãƒ³ã‚³ãƒ³ãƒˆãƒãƒ¼ãƒ©ãŒåˆ¶å¾¡ã™ã‚‹ãƒ‰ãƒ¡ã‚¤ãƒ³ã® Kerberos レルムを指定ã—ã¦ãã " +#~ "ã•ã„。" + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "通常ã“ã‚Œã¯ã€ã‚ãªãŸã® DNS ホストåã®å¤§æ–‡å—版ã§ã™ã€‚" + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "Samba ã® \"administrator\" ユーザã®æ–°ã—ã„パスワード:" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "ã“ã®æ¬„を空ã®ã¾ã¾ã«ã™ã‚‹ã¨ã€ãƒ©ãƒ³ãƒ€ãƒ ãªãƒ‘スワードãŒç”Ÿæˆã•ã‚Œã¾ã™ã€‚" + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "root ã§æ¬¡ã®ã‚ˆã†ã«å®Ÿè¡Œã™ã‚‹ã“ã¨ã§ã€ãƒ‘スワードを後ã‹ã‚‰è¨å®šã§ãã¾ã™:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "Samba ã® \"administrator\" ユーザã®ãƒ‘スワードã®ç¹°ã‚Šè¿”ã—:" + +#~ msgid "Password input error" +#~ msgstr "パスワード入力エラー" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "入力ã—㟠2 ã¤ã®ãƒ‘スワードãŒä¸€è‡´ã—ã¾ã›ã‚“。å†åº¦è©¦ã—ã¦ãã ã•ã„。" + +#~ msgid " $ samba-tool user setpassword administrator" +#~ msgstr " $ samba-tool user setpassword administrator" diff --git a/debian/po/ka.po b/debian/po/ka.po new file mode 100644 index 0000000..713041b --- /dev/null +++ b/debian/po/ka.po @@ -0,0 +1,179 @@ +# Georgian translation of samba. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Aiet Kolkhi <aietkolkhi@gmail.com>, 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2008-09-10 01:45+0400\n" +"Last-Translator: Aiet Kolkhi <aietkolkhi@gmail.com>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "გსურთ smb.conf-ის შეცვლრWINS პáƒáƒ áƒáƒ›áƒ”ტრების DHCP-დáƒáƒœ გáƒáƒ›áƒáƒ¡áƒáƒ§áƒ”ნებლáƒáƒ“?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"თუ თქვენი კáƒáƒ›áƒžáƒ˜áƒ£áƒ¢áƒ”რი IP მისáƒáƒ›áƒáƒ თს ქსელის DHCP სერვერიდáƒáƒœ იღებს, მáƒáƒ¨áƒ˜áƒœ DHCP " +"სერვერს შეიძლებრáƒáƒ¡áƒ”ვე გáƒáƒáƒ©áƒœáƒ“ეს ინფáƒáƒ მáƒáƒªáƒ˜áƒ ქსელში áƒáƒ სებულ WINS სერვერების " +"(„NetBIOS name servers“) შესáƒáƒ®áƒ”ბ. áƒáƒ›áƒ˜áƒ¡áƒáƒ—ვის სáƒáƒáƒ˜áƒ áƒáƒ ცვლილებრsmb.conf " +"ფáƒáƒ˜áƒšáƒ¨áƒ˜, რáƒáƒ—რDHCP-ს მáƒáƒ¬áƒáƒ“ებული WINS პáƒáƒ áƒáƒ›áƒ”ტრები áƒáƒ•áƒ¢áƒáƒ›áƒáƒ¢áƒ£áƒ áƒáƒ“ áƒáƒ›áƒáƒ˜áƒ™áƒ˜áƒ—ხáƒáƒ¡ /var/" +"lib/samba/dhcp.conf-დáƒáƒœ." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"áƒáƒ› ფუნქციის გáƒáƒ›áƒáƒ¡áƒáƒ§áƒ”ნებლáƒáƒ“ áƒáƒ£áƒªáƒ˜áƒšáƒ”ბელირდáƒáƒ§áƒ”ნებული იყáƒáƒ¡ dhcp-client პáƒáƒ™áƒ”ტი." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "გსურთ smb.conf-ის áƒáƒ•áƒ¢áƒáƒ›áƒáƒ¢áƒ£áƒ ი კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"დáƒáƒ ჩენილი Samba-ს კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ ეხებრსáƒáƒ™áƒ˜áƒ—ხებს, რáƒáƒ›áƒšáƒ”ბსáƒáƒª ზეგáƒáƒ•áƒšáƒ”ნრáƒáƒ¥áƒ•áƒ¡ /" +"etc/samba/smb.conf-ზე. ეს ფáƒáƒ˜áƒšáƒ˜ Samba-ს პრáƒáƒ’რáƒáƒ›áƒ”ბის (nmbd დრsmbd) " +"კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ˜áƒ¡áƒáƒ—ვის გáƒáƒ›áƒáƒ˜áƒ§áƒ”ნებáƒ. თქვენი áƒáƒ›áƒŸáƒáƒ›áƒ˜áƒœáƒ“ელი smb.conf ფáƒáƒ˜áƒšáƒ˜ შეიცáƒáƒ•áƒ¡ " +"'include' სტრიქáƒáƒœáƒ¡, áƒáƒœ პáƒáƒ áƒáƒ›áƒ”ტრს, რáƒáƒ›áƒ”ლის მრáƒáƒ•áƒáƒš სტრიქáƒáƒœáƒ¡ მიმáƒáƒ˜áƒ®áƒ˜áƒšáƒáƒ•áƒ¡, რáƒáƒ›áƒáƒª " +"შესáƒáƒ«áƒšáƒáƒ áƒáƒ•áƒ¢áƒáƒ›áƒáƒ¢áƒ£áƒ ი კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ˜áƒ¡ პრáƒáƒªáƒ”სი დáƒáƒáƒ‘ნიáƒáƒ¡ დრთქვენ smb.conf-ის " +"ხელით დáƒáƒ›áƒ£áƒ¨áƒáƒ•áƒ”ბრმáƒáƒ’იწიáƒáƒ— მის კვლáƒáƒ• áƒáƒ¡áƒáƒ›áƒ£áƒ¨Aვებლáƒáƒ“." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"თუ áƒáƒ› პáƒáƒ áƒáƒ›áƒ”ტრს áƒáƒ áƒáƒ›áƒáƒ˜áƒ ჩებთ, ნებისმიერი კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ˜áƒ¡ ცვლილებების გáƒáƒ¢áƒáƒ ებრ" +"ხელით მáƒáƒ’იწევთ. áƒáƒ¡áƒ”ვე ვერგáƒáƒ›áƒáƒ˜áƒ§áƒ”ნებთ კნფიგურáƒáƒªáƒ˜áƒ˜áƒ¡ პერიáƒáƒ“ულ გáƒáƒ£áƒ›áƒ¯áƒáƒ‘ესებებს." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "სáƒáƒ›áƒ£áƒ¨áƒáƒ ჯგუფის/დáƒáƒ›áƒ”ნის სáƒáƒ®áƒ”ლი:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +#, fuzzy +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"მიუთითეთ სáƒáƒ›áƒ£áƒ¨áƒáƒ ჯგუფი (workgroup), რáƒáƒ›áƒ”ლსáƒáƒª სერვერმრთáƒáƒ•áƒ˜ უნდრმიáƒáƒ™áƒ£áƒ—ვნáƒáƒ¡ " +"კლიენტების მიერმáƒáƒ—ხáƒáƒ•áƒœáƒ˜áƒ¡ გáƒáƒ›áƒáƒ’ზáƒáƒ•áƒœáƒ˜áƒ¡áƒáƒ¡. გáƒáƒ˜áƒ—ვáƒáƒšáƒ˜áƒ¡áƒ¬áƒ˜áƒœáƒ”თ, რáƒáƒ› ეს პáƒáƒ áƒáƒ›áƒ”ტრი " +"áƒáƒ¡áƒ”ვე áƒáƒ™áƒáƒœáƒ¢áƒ áƒáƒšáƒ”ბს security=domain პáƒáƒ áƒáƒ›áƒ”ტრზე გáƒáƒ›áƒáƒ§áƒ”ნებულ დáƒáƒ›áƒ”ნის სáƒáƒ®áƒ”ლს." + +#~ msgid "Use password encryption?" +#~ msgstr "გსურთ პáƒáƒ áƒáƒšáƒ˜áƒ¡ დáƒáƒ¨áƒ˜áƒ¤áƒ•áƒ ის გმáƒáƒáƒ§áƒ”ნებáƒ?" + +#, fuzzy +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Windows-ის ყველრáƒáƒ®áƒáƒšáƒ˜ კლიენტი SMB სერვერთáƒáƒœ კáƒáƒ•áƒ¨áƒ˜áƒ ს შიფრირებული პáƒáƒ áƒáƒšáƒ˜áƒ— " +#~ "áƒáƒ›áƒ§áƒáƒ ებს. თუ გსურთ დáƒáƒ£áƒ¨áƒ˜áƒ¤áƒ áƒáƒ•áƒ˜ პáƒáƒ áƒáƒšáƒ˜áƒ¡ გáƒáƒ›áƒáƒ§áƒ”ნებáƒ, მáƒáƒ’იწევთ შეცვáƒáƒšáƒáƒ— " +#~ "პáƒáƒ áƒáƒ›áƒ”ტრი Windows-ის რეგისტრში." + +#, fuzzy +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "áƒáƒ› პáƒáƒ áƒáƒ›áƒ”ტრის გáƒáƒáƒ¥áƒ¢áƒ˜áƒ£áƒ ებრრეკáƒáƒ›áƒ”ნდირებულიáƒ. თუ áƒáƒ›áƒáƒ¡ გáƒáƒáƒ™áƒ”თებთ, " +#~ "დáƒáƒ წმუნდით, რáƒáƒ› გáƒáƒ’áƒáƒ©áƒœáƒ˜áƒáƒ— გáƒáƒ›áƒáƒ თული /etc/samba/smbpasswd ფáƒáƒ˜áƒšáƒ˜ დრრáƒáƒ› იქ " +#~ "ყáƒáƒ•áƒ”ლ მáƒáƒ›áƒ®áƒ›áƒáƒ ებელზე პáƒáƒ áƒáƒšáƒ˜ გქáƒáƒœáƒ“ეთ დáƒáƒ§áƒ”ნებული smbpasswd ბრძáƒáƒœáƒ”ბით." + +#~ msgid "daemons" +#~ msgstr "დემáƒáƒœáƒ”ბი" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "რáƒáƒ’áƒáƒ გსურთ Samba-ს გáƒáƒ¨áƒ•áƒ”ბáƒ?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Samba-ს დემáƒáƒœáƒ˜ smbd შეიძლებრგáƒáƒ”შვáƒáƒ¡ რáƒáƒ’áƒáƒ ც ჩვეულებრივი დემრinetd-დáƒáƒœ. " +#~ "დემáƒáƒœáƒáƒ“ გáƒáƒ¨áƒ•áƒ”ბრრეკáƒáƒ›áƒ”ნდირებული მიდგáƒáƒ›áƒáƒ." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "გსურთ samba-ს პáƒáƒ áƒáƒšáƒ—რბáƒáƒ–ის, /var/lib/samba/passdb.tdb-ს შექმნáƒ?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Windows-ის უმეტეს ვერსიების ნáƒáƒ’ულისხმევ პáƒáƒ áƒáƒ›áƒ”ტრებთáƒáƒœ თáƒáƒ•áƒ¡áƒ”ბáƒáƒ“áƒáƒ‘ისáƒáƒ—ვის, " +#~ "Samba-მ დáƒáƒ¨áƒ˜áƒ¤áƒ ული პáƒáƒ áƒáƒšáƒ”ბი უნდრგáƒáƒ›áƒáƒ˜áƒ§áƒ”ნáƒáƒ¡. ეს სáƒáƒáƒ˜áƒ áƒáƒ”ბს, რáƒáƒ› " +#~ "მáƒáƒ›áƒ®áƒ›áƒáƒ ებელთრპáƒáƒ áƒáƒšáƒ”ბი /etc/passwd-ისáƒáƒ’áƒáƒœ გáƒáƒœáƒªáƒ®áƒáƒšáƒ™áƒ”ვებით იქნáƒáƒ¡ შენáƒáƒ®áƒ£áƒšáƒ˜. " +#~ "áƒáƒ› ფáƒáƒ˜áƒšáƒ˜áƒ¡ შექმნრáƒáƒ•áƒ¢áƒáƒ›áƒáƒ¢áƒ£áƒ áƒáƒ“ áƒáƒ ის შესáƒáƒ«áƒšáƒ”ბელი, თუმცრპáƒáƒ áƒáƒšáƒ”ბის ჩáƒáƒ›áƒáƒ¢áƒ”ბრ" +#~ "ხელით უნდრმáƒáƒ®áƒ“ეს smbpasswd ბრძáƒáƒœáƒ”ბით დრსáƒáƒ›áƒáƒ›áƒáƒ•áƒšáƒáƒ“ მუდáƒáƒ› გáƒáƒœáƒáƒ®áƒšáƒ”ბული " +#~ "უნდრიყáƒáƒ¡." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "თუ მáƒáƒ¡ áƒáƒ შექმნით, Samba-ს (დრსáƒáƒ•áƒáƒ áƒáƒ£áƒ“áƒáƒ“ თქვენი კლიენტისáƒáƒª) ხელáƒáƒ®áƒáƒšáƒ˜ " +#~ "კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ მáƒáƒ’იწევთ დáƒáƒ£áƒ¨áƒ˜áƒ¤áƒ áƒáƒ•áƒ˜ პáƒáƒ áƒáƒšáƒ”ბის გáƒáƒ›áƒáƒ¡áƒáƒ§áƒ”ნებლáƒáƒ“." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "დáƒáƒ›áƒáƒ¢áƒ”ბითი ინფáƒáƒ მáƒáƒªáƒ˜áƒ˜áƒ¡áƒáƒ—ვის იხილეთ /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html სტáƒáƒ¢áƒ˜áƒ samba-doc პáƒáƒ™áƒ”ტიდáƒáƒœ." diff --git a/debian/po/km.po b/debian/po/km.po new file mode 100644 index 0000000..26f9088 --- /dev/null +++ b/debian/po/km.po @@ -0,0 +1,272 @@ +# translation of km.po to Khmer +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Khoem Sokhem <khoemsokhem@khmeros.info>, 2006, 2007. +msgid "" +msgstr "" +"Project-Id-Version: samba_po_km\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2007-03-13 08:39+0700\n" +"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n" +"Language-Team: Khmer <support@khmeros.info>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "កែប្រែ smb.conf ដើម្បី​ប្រើ​ការកំណážáŸ‹â€‹ážšáž”ស់ WINS ពី DHCP ?" + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"ប្រសិន​បើ​កុំព្យូទáŸážšâ€‹ážšáž”ស់​អ្នក​ទទួល​​ពáŸážáŸŒáž˜áž¶áž“​អាសយដ្ឋាន IP ពី​ម៉ាស៊ីន​បម្រើ DHCP នៅ​លើ​បណ្ដាញ ម៉ាស៊ីន​បម្រើ​ DHCP " +"អាច​ផ្ដល់​ផង​ដែរ​នូវ​ពáŸážáŸŒáž˜áž¶áž“​អំពី​ម៉ាស៊ីន​បម្រើ WINS (\"ឈ្មោះ​ម៉ាស៊ីន​បម្រើ NetBIOS\") ដែល​បង្ហាញ​នៅ​លើ​" +"បណ្ដាញ ។ វា​ážáŸ’រូវ​ការ​ការ​ផ្លាស់ប្ដូរ​ទៅ​នឹង​ឯកសារ smb.conf របស់​អ្នក ដូច្នáŸáŸ‡áž€áž¶ážšâ€‹áž€áŸ†ážŽážáŸ‹ážšáž”ស់ WINS ដែល​" +"បានផ្ដល់​ដោយ DHCP នឹង​ážáŸ’រូវ​បាន​អាន​ដោយ​ស្វáŸáž™â€‹áž”្រវážáŸ’ážáž·â€‹áž–ី /var/lib/samba/dhcp.conf." + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "កញ្ចប់​ម៉ាស៊ីន​ភ្ញៀវ dhcp ážáŸ’រូវ​ážáŸ‚​បាន​ដំឡើង​ដើម្បី​ទទួល​បាន​ផលប្រយោជនáŸážšáž”ស់​លក្ážážŽáŸˆâ€‹áž–ិសáŸážŸâ€‹áž“áŸáŸ‡Â ។" + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ smb.conf ដោយ​ស្វáŸáž™â€‹áž”្រវážáŸ’ážáž·Â ?" + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"ការ​កំណážáŸ‹â€‹ážšáž…នា​សម្ពáŸáž“្ធ​របស់ Samba ទាក់ទង​ជា​មួយ​នឹង​សំណួរ​ដែល​ប៉ះពាល់​ប៉ារ៉ាម៉ែážáŸ’រ​នៅ​ក្នុង in /etc/samba/" +"smb.conf ដែល​ជា​ឯកសារ​បាន​ប្រើ​ដើម្បី​កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ​កម្មវិធី Samba (nmbd áž“áž·áž„ smbd) ។ smb." +"conf បច្ចុប្បន្ន​របស់​អ្នក​មាន​បន្ទាážáŸ‹ 'include' ឬ​ជម្រើស​ដែល​បញ្ចូល​បន្ទាážáŸ‹â€‹áž‡áž¶â€‹áž…្រើន​ចូល​គ្នា ដែល​អាច​បន្លំ​" +"ដំណើរ​ការ​កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ ដោយ​ស្វáŸáž™áž”្រវážáŸ’ážáž· ហើយ​ážáž˜áŸ’រូវ​ឲ្យ​អ្នក​កែសម្រួល smb.conf របស់​អ្នក​ដោយ​ដៃ​ដើម្បី​ឲ្យ​" +"វា​ធ្វើការ​ម្ដង​ទៀážÂ ។" + +# Type: boolean +# Description +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"ប្រសិន​បើ​អ្នក​មិន​ជ្រើស​ជម្រើស​នáŸáŸ‡â€‹áž‘០អ្នក​នឹង​ážáŸ’រូវ​ážáŸ‚​គ្រប់គ្រង​ការ​ផ្លាស់ប្ដូរ​ការ​​កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ​ណាមួយ​ដោយ​ážáŸ’លួន​" +"អ្នក​ផ្ទាល់ និង​មិន​អាច​បាន​ផល​ប្រយោជនáŸâ€‹áž–ី​ការ​បង្កើន​ការ​កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ​យ៉ាង​ទៀážâ€‹áž‘ាážáŸ‹â€‹áž”ាន​ទáŸÂ ។" + +# Type: string +# Description +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "ឈ្មោះ​ក្រុមការងារ/ដែន ៖" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +# Type: boolean +# Description +#~ msgid "Use password encryption?" +#~ msgstr "ប្រើ​ការ​អ៊ិនគ្រីប​ពាក្យ​សម្ងាážáŸ‹Â ?" + +# Type: boolean +# Description +#, fuzzy +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "គ្រប់​ម៉ាស៊ីន​ភ្ញៀវ​ដែល​ប្រើ​វីនដូ​ážáŸ’មីៗ​ទាំង​អស់​ទាក់ទង​ជា​មួយ​ម៉ាស៊ីន​បម្រើ SMB ដោយ​ប្រើ​ពាក្យសម្ងាážáŸ‹â€‹ážŠáŸ‚ល​បាន​" +#~ "អ៊ិនគ្រីប ។ ប្រសិន​បើ​អ្នក​ចង់​ជម្រះ​ពាក្យសម្ងាážáŸ‹â€‹áž¢ážáŸ’ážáž”áž‘ អ្នក​នឹង​ážáŸ’រូវážáŸ‚​ផ្លាស់ប្ដូរ​ប៉ារ៉ាម៉ែážáŸ’រ​នៅ​ក្នុង បញ្ជី​" +#~ "ឈ្មោះ​របស់​វីនដូ ។" + +# Type: boolean +# Description +#, fuzzy +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "បាន​ផ្ដល់​អនុសាសនáŸâ€‹áž™áŸ‰áž¶áž„​ážáŸ’លាំង​ឲ្យ​អនុញ្ញាážâ€‹áž‡áž˜áŸ’រើស​នáŸáŸ‡Â ។ ប្រសិន​បើ​អ្នក​ធ្វើ​ដូច្នáŸáŸ‡ សូម​ប្រាកដ​ážáž¶ អ្នក​មាន​" +#~ "ឯកសារ /etc/samba/smbpasswd ážáŸ’រឹមážáŸ’រូវ ហើយ​អ្នក​បាន​កំណážáŸ‹â€‹áž–ាក្យ​សម្ងាážáŸ‹â€‹ ដូច្នáŸáŸ‡â€‹ážŸáž˜áŸ’រាប់​អ្នក​ប្រើ​" +#~ "ម្នាក់ៗ អាច​ប្រើ​ពាក្យ​បញ្ជា smbpasswd ។" + +#~ msgid "daemons" +#~ msgstr "ដáŸáž˜áž·áž“ " + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "ážáž¾â€‹áž¢áŸ’នក​ចង់​រážáŸ‹ Samba ážáž¶áž˜â€‹ážœáž·áž’ី​ណា ?" + +# Type: select +# Description +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "ដáŸáž˜áž·áž“ Samba smbd អាចរážáŸ‹áž‡áž¶ážŠáŸáž˜áž·áž“ធម្មážáž¶ ឬពី inetd ។ ការរážáŸ‹áž‡áž¶ážŠáŸáž˜áž·áž“មួយážáŸ’រូវបានផ្ដល់អនុសាសនáŸÂ ។" + +# Type: string +# Description +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "សូម​បញ្ជាក់​ក្រុម​ការងារ​ដែល​អ្នក​ចង់​ឲ្យ​ម៉ាស៊ីន​បម្រើ​នáŸáŸ‡â€‹áž”ង្ហាញ​នៅ​ពáŸáž›â€‹ážŠáŸ‚ល​បាន​សួរ ដោយ​ម៉ាស៊ីន​ភ្ញៀវ ។ ចំណាំ​" +#~ "ážáž¶ ប៉ារ៉ាម៉ែážáŸ’រ​នáŸáŸ‡â€‹áž€áŸâ€‹ážáŸ’ážšáž½ážâ€‹áž–áž·áž“áž·ážáŸ’យ​ឈ្មោះ​ដែន ដែល​បាន​ប្រើ​ដោយ​សុវážáŸ’ážáž·áž—ាព=ការ​កំណážáŸ‹â€‹ážŠáŸ‚ន ។" + +# Type: boolean +# Description +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "បង្កើážâ€‹áž˜áž¼áž›ážŠáŸ’ឋាន​ទិន្ននáŸáž™áž–ាក្យសម្ងាážáŸ‹ samba /var/lib/samba/passdb.tdb ?" + +# Type: boolean +# Description +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "ដើម្បី​ឆប​ជា​មួយ​នឹង​លំនាំដើម​នៅ​ក្នុង​កំណែ​ភាគ​ច្រើន​របស់​វីនដូ Samba ážáŸ’រូវ​ážáŸ‚​បាន​កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ​ដើម្បី​ប្រើ​" +#~ "ពាក្យ​សម្ងាážáŸ‹â€‹ážŠáŸ‚ល​បាន​អ៊ិនគ្រីប ។ វា​ážáŸ’រូវ​ការ​ពាក្យសម្ងាážáŸ‹â€‹áž¢áŸ’នក​ប្រើ​ដើម្បី​ទុក​ក្នុង​ឯកសារ​ដោយ​ឡែក​ពី /etc/" +#~ "passwd ។ ឯកសារ​នáŸáŸ‡â€‹áž¢áž¶áž…​ážáŸ’រូវ​បាន​បង្កើážâ€‹ážŠáŸ„យ​ស្វáŸáž™áž”្រវážáŸ’ážáž· ប៉ុន្ážáŸ‚​ពាក្យ​សម្ងាážáŸ‹â€‹ážáŸ’រូវ​ážáŸ‚​បាន​បន្ážáŸ‚ម​ដោយ​ដៃ​" +#~ "ដោយ​រážáŸ‹ smbpasswd និង​ážáŸ’រូវ​បាន​ធ្វើឲ្យ​ទាន់​សមáŸáž™â€‹áž€áŸ’នុង​ពáŸáž›â€‹áž¢áž“ាគážÂ ។" + +# Type: boolean +# Description +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "ប្រសិន​បើ​អ្នក​មិន​បង្កើážâ€‹ážœáž¶ អ្នក​ážáŸ’រូវ​ážáŸ‚​កំណážáŸ‹â€‹ážšáž…នាសម្ពáŸáž“្ធ Samba (និង​ប្រហែល​ជាម៉ាស៊ីន​ភ្ញៀវ​របស់​អ្នក) " +#~ "ដើម្បី​ប្រើពាក្យសម្ងាážáŸ‹áž¢ážáŸ’ážáž”ទ​ធម្មážáž¶Â ។" + +# Type: boolean +# Description +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "សម្រាប់​សáŸáž…ក្ážáž¸â€‹áž›áž˜áŸ’អិážâ€‹áž”ន្ážáŸ‚ម​សូម​មើល /usr/share/doc/samba-doc/htmldocs/ENCRYPTION." +#~ "html ពី​កញ្ចប់ samba-doc ។" + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "មិនគាំទ្រ​ការ​ដាក់​កម្មវិធី​ážáž¶áž„​ក្រោយ passdb ជា​លំដាប់" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "ដោយ​ចាប់ផ្ដើម​ជា​មួយកំណែ ៣.០.២៣ samba មិន​គាំទ្រ​កម្មវិធី​ážáž¶áž„​ក្រោយ​ជា​ច្រើន​ដាក់​ជា​លំដាប់នៅ​ក្នុង​" +#~ "ប៉ារ៉ាម៉ែážáŸ’ážš \"កម្មវិធី​ážáž¶áž„​ក្រោយ passdb\" ។ វា​បង្ហាញ​ážáž¶ ឯកសារ smb.conf របស់​អ្នក​" +#~ "មានប៉ារ៉ាម៉ែážáŸ’រ​កម្មវិធី​ážáž¶áž„​ក្រោយ passdb ដែល​មាន​បញ្ជី​របស់​កម្មវិធី​ážáž¶áž„​ក្រោយ ។ កំណែ​ážáŸ’មី​របស់ samba " +#~ "នឹង​មិន​ដំណើរការ​ទáŸâ€‹ážšáž áž¼ážâ€‹ážŠáž›áŸ‹â€‹áž¢áŸ’នក​កែវា ។" + +# Type: boolean +# Description +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "ផ្លាស់ទីពី /etc/samba/smbpasswd ទៅ /var/lib/samba/passdb.tdb ?" + +# Type: boolean +# Description +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 បាន​បង្ហាញ​ចំណុច​ប្រទាក់មូលដ្ឋានទិន្ននáŸáž™ SAM áž–áŸáž‰áž›áŸáž‰â€‹áž‡áž¶â€‹áž…្រើន​ទៀហដែលជំនួស​ឯកសារ /" +#~ "etc/samba/smbpasswd ។" + +# Type: boolean +# Description +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "សូម​អះអាង​ážáž¶ážáž¾â€‹áž¢áŸ’នកចង់​ឲ្យ​ឯកសារ​ពាក្យ​សម្ងាážáŸ‹â€‹ážŠáŸ‚ល​មាន​ស្រាប់ážáŸ’រូវ​បាន​ប្ដូរដោយ​ស្វáŸáž™â€‹áž”្រវážáŸ’ážáž·â€‹áž‘ៅ​ទៅ​ /var/" +#~ "lib/samba/passdb.tdb ។ កុំជ្រើស​ជម្រើស​នáŸáŸ‡ ប្រសិន​បើ​អ្នក​មាន​គម្រោង​ប្រើ​កម្មវិធី​ážáž¶áž„​ក្រោយ " +#~ "pdb ដទៃ​ទៀហ(ឧទាហរណ០LDAP) ជំនួស​វិញ ។" + +# Type: boolean +# Description +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "សម្រាប់​សáŸáž…ក្ážáž¸â€‹áž›áž˜áŸ’អិážâ€‹áž”ន្ážáŸ‚ម​សូម​មើល /usr/share/doc/samba-doc/htmldocs/Samba3-" +#~ "Developers-Guide/pwencrypt.html ពី​កញ្ចប់ samba-doc ។" diff --git a/debian/po/ko.po b/debian/po/ko.po new file mode 100644 index 0000000..03eff48 --- /dev/null +++ b/debian/po/ko.po @@ -0,0 +1,222 @@ +# Sunjae Park <darehanl@gmail.com>, 2006 - 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2008-06-24 18:36-0400\n" +"Last-Translator: Sunjae Park <darehanl@gmail.com>\n" +"Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "smb.confì„ ìˆ˜ì •í•˜ì—¬ DHCPì˜ WINS ì„¤ì •ì„ ì‚¬ìš©í•˜ë„ë¡ í• ê¹Œìš”?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"컴퓨터가 ë„¤íŠ¸ì›Œí¬ ìƒì— 있는 DHCP 서버ì—ì„œ IP 주소 ì •ë³´ë¥¼ 받아올 경우, DHCP ì„œ" +"버ì—ì„œ ë„¤íŠ¸ì›Œí¬ ìƒì— 있는 WINS 서버(\"NetBIOS 네임 서버\")ì— ê´€í•œ ì •ë³´ë¥¼ 받아" +"올 수 있는 ê²½ìš°ë„ ìžˆìŠµë‹ˆë‹¤. ì´ë¥¼ 위해서는 smb.conf 파ì¼ì„ ìˆ˜ì •í•˜ì—¬ DHCPì—ì„œ " +"ì œê³µëœ WINS ì„¤ì •ì„ /var/lib/samba/dhcp.confì—ì„œ ìžë™ìœ¼ë¡œ ì½ì–´ë“¤ì¼ 수 있ë„ë¡ í•´ì•¼ " +"합니다." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "ì´ ê¸°ëŠ¥ì„ ì‚¬ìš©í•˜ê¸° 위해서는 dhcp-client 꾸러미를 설치해야 합니다." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "smb.confì„ ìžë™ìœ¼ë¡œ ì„¤ì •í• ê¹Œìš”?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"앞으로 ë‚¨ì€ Samba ì„¤ì •ì€ Samba 프로그램들(nmbd와 smbd)ì„ ì„¤ì •í• ë•Œ 사용하는 /" +"etc/samba/smb.confì— ìžˆëŠ” ê°ì¢… 매개 ë³€ìˆ˜ë“¤ì„ ë³€ê²½í•˜ëŠ” 질문들로 구성ë˜ì–´ 있습" +"니다. í˜„ìž¬ì˜ smb.confì€ 'include'를 사용하거나 여러 ì¤„ì— ê±¸ì¹œ ì˜µì…˜ì„ ì‚¬ìš©í•˜" +"ê³ ìžˆìŠµë‹ˆë‹¤. ì´ëŠ” ìžë™ ì„¤ì • ê³¼ì •ì— í˜¼ëˆì„ 줄 수 있으며 ë‚˜ì¤‘ì— ì†ìœ¼ë¡œ smb.conf" +"ì„ ìˆ˜ì •í•˜ì…”ì•¼ ì œëŒ€ë¡œ ë™ìž‘합니다." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"ì´ ì˜µì…˜ì„ ì„ íƒí•˜ì§€ ì•Šì„ ê²½ìš° ì„¤ì • 변경사í•ì„ ì§ì ‘ 다루셔야 하며 주기ì ì„¤ì • " +"변경 ì—…ê·¸ë ˆì´ë“œ ê¸°ëŠ¥ì„ ì‚¬ìš©í•˜ì§€ ëª»í• ê²ƒìž…ë‹ˆë‹¤." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "작업그룹/ë„ë©”ì¸ ì´ë¦„:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "삼바3로부터 ì—…ê·¸ë ˆì´ë“œí• 까요?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "삼바3ì˜ ê¸°ì¡´ ì„¤ì •íŒŒì¼ì„ 삼바4ë¡œ ì´ì „ 시키는 ê²ƒì´ ê°€ëŠ¥í•©ë‹ˆë‹¤. 복잡하게 ì„¤ì •" +#~ "ë˜ì–´ìžˆëŠ” 경우ì—는 ì‹¤íŒ¨í• ê°€ëŠ¥ì„±ì´ ë†’ì§€ë§Œ, ëŒ€ë¶€ë¶„ì˜ ê²½ìš° ì´ê²ƒìœ¼ë¡œ 시작하기 " +#~ "íŽ¸í• ê²ƒìž…ë‹ˆë‹¤." + +#, fuzzy +#~ msgid "Realm name:" +#~ msgstr "ì˜ì—:" + +#~ msgid "Use password encryption?" +#~ msgstr "비밀번호 암호화 ê¸°ëŠ¥ì„ ì‚¬ìš©í• ê¹Œìš”?" + +#~ msgid "daemons" +#~ msgstr "ë°ëª¬" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Samba를 어떻게 ì‹¤í–‰í•˜ì‹œê² ìŠµë‹ˆê¹Œ?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Sambaì˜ ë°ëª¬ì¸ smbdì€ ì¼ë°˜ì ì¸ ë°ëª¬ìœ¼ë¡œ ì‹¤í–‰í• ìˆ˜ë„ ìžˆê³ inetdì„ í†µí•´ 실행" +#~ "í• ìˆ˜ë„ ìžˆìŠµë‹ˆë‹¤. ë°ëª¬ìœ¼ë¡œ ì‹¤í–‰í• ê²ƒì„ ê¶Œìž¥í•©ë‹ˆë‹¤." + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "삼바4를 PDCë¡œ ì„¤ì •í• ê¹Œìš”?" + +#~ msgid "" +#~ "Even when using this option, you will need to set up DNS such that it " +#~ "serves the data from the zone file in that directory before you can use " +#~ "the Active Directory domain." +#~ msgstr "" +#~ "ì´ ì˜µì…˜ì„ ì‚¬ìš©í•˜ëŠ” 경우ì—ë„ Active Directory ë„ë©”ì¸ì„ 사용하기 ì „ DNS를 설" +#~ "ì •í•˜ì—¬ 해당 ë””ë ‰í† ë¦¬ì˜ zone파ì¼ì˜ ë°ì´í„°ë¥¼ 사용하ë„ë¡ í•´ì•¼ 합니다." + +#~ msgid "" +#~ "Please specify the Kerberos realm this server will be in. In many cases, " +#~ "this will be the same as the DNS domain name." +#~ msgstr "" +#~ "ì´ ì„œë²„ê°€ 소ì†ë Kerberos ì˜ì—ì„ ì§€ì •í•´ 주ì‹ì‹œì˜¤. ë§Žì€ ê²½ìš° DNS ë„ë©”ì¸ ì´" +#~ "름과 ê°™ì„ ê²ƒìž…ë‹ˆë‹¤." + +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "í´ë¼ì´ì–¸íŠ¸ì—ì„œ 질ì˜ê°€ 들어올 ë•Œ ì´ ì„œë²„ê°€ 소ì†ëœ ë„ë©”ì¸ì„ ì§€ì •í•´ì£¼ì‹ì‹œì˜¤. " + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "sambaì˜ ë¹„ë°€ë²ˆí˜¸ ë°ì´í„°ë² ì´ìŠ¤ /var/lib/samba/passdb.tdb를 만들까요?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "ëŒ€ë¶€ë¶„ì˜ ìœˆë„ìš° ë²„ì „ë“¤ê³¼ì˜ í˜¸í™˜ì„±ì„ ìœ„í•´ Samba는 ì•”í˜¸í™”ëœ ë¹„ë°€ë²ˆí˜¸ë¥¼ 사용" +#~ "하ë„ë¡ í•´ì•¼ 합니다. ì´ë¥¼ 위해서는 사용ìžë“¤ì˜ 비밀번호를 /etc/passwd와 다" +#~ "른 ê³³ì— ì €ìž¥í•´ì•¼ 합니다. ì´ íŒŒì¼ì€ ìžë™ìœ¼ë¡œ ìƒì„±í• 수는 있지만, 비밀번호들" +#~ "ì€ smbpasswd ëª…ë ¹ì„ í†µí•´ ì§ì ‘ ìž…ë ¥í•˜ì…”ì•¼ 하며 꾸준히 ìµœì‹ ìƒíƒœë¡œ ìœ ì§€í•˜ì…”" +#~ "야 합니다." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "ìƒì„±í•˜ì§€ ì•Šì„ ê²½ìš°, Samba(와 ëŒ€ë¶€ë¶„ì˜ í´ë¼ì´ì–¸íŠ¸ ë¨¸ì‹ )ì„ ë‹¤ì‹œ ì„¤ì •í•˜ì—¬ 플" +#~ "ë ˆì¸í…스트 비밀번호를 사용하ë„ë¡ í•´ì•¼ 합니다." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "ìžì„¸í•œ 사í•ì€ samba-doc 꾸러미ì—ì„œ ì œê³µí•˜ëŠ” /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html를 참조하ì‹ì‹œì˜¤." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "연쇄 passdb 백엔드는 ìž‘ì—…ì€ ì§€ì›ë˜ì§€ 않습니다" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "삼바는 3.0.23 ë²„ì „ë¶€í„° \"passdb backend\" 매개변수는 ë” ì´ìƒ 연쇄 백엔드" +#~ "를 지ì›í•˜ì§€ 않습니다. smb.conf 파ì¼ì— 있는 passdb 백엔드 ë§¤ê°œë³€ìˆ˜ì— ë°±ì—”" +#~ "ë“œ 목ë¡ì´ ì§€ì •ë˜ì–´ 있는 것으로 보입니다. ì´ê²ƒì„ 바꾸기 ì „ê¹Œì§€ëŠ” 새 ë²„ì „ì˜ " +#~ "삼바가 ë™ìž‘하지 않습니다." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "/etc/samba/smbpasswdì„ /var/lib/samba/passwd.tdbë¡œ 옮길까요?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0부터는 /etc/samba/smbpasswd 파ì¼ì„ 대체하며 ì´ì „보다 ì™„ì „í•œ SAM " +#~ "ë°ì´í„°ë² ì´ìŠ¤ ì¸í„°íŽ˜ì´ìŠ¤ë¥¼ ì œê³µí•©ë‹ˆë‹¤." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "ê¸°ì¡´ì˜ smbpasswd 파ì¼ì„ ìžë™ìœ¼ë¡œ /var/lib/samba/passdb.tdbë¡œ 옮길 여부를 " +#~ "ê²°ì •í•˜ì—¬ 주ì‹ì‹œì˜¤. LDAP 등 다른 pdb 백엔드를 ì‚¬ìš©í•˜ê³ ìž í• ê²½ìš° ì´ ì˜µì…˜ì„ " +#~ "ì„ íƒí•˜ì§€ 마ì‹ì‹œì˜¤." diff --git a/debian/po/ku.po b/debian/po/ku.po new file mode 100644 index 0000000..04c3126 --- /dev/null +++ b/debian/po/ku.po @@ -0,0 +1,177 @@ +# translation of samba_ku.po to Kurdish +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Erdal Ronahi <erdal dot ronahi at gmail dot com>, 2008. +msgid "" +msgstr "" +"Project-Id-Version: samba_ku\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2008-05-08 13:02+0200\n" +"Last-Translator: Erdal Ronahi <erdal dot ronahi at gmail dot com>\n" +"Language-Team: ku <ubuntu-l10n-kur@lists.ubuntu.com>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KAider 0.1\n" +"Plural-Forms: nplurals=2; plural= n != 1;\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"Bila smb.conf were guherandin da ku mîhengên WINS ji DHCP werin bikaranîn?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Eger kompîtera te ji ser pêşkêşkarê ji DHCPê navnîşaneke IPê bistîne, dibe " +"ku pêşkêşkara DHCP jî derbarê pêşkêşkara WINSê de agahiyan peyda bike " +"(\"NetBIOS navê pêşkêşkaran) ji ser torê pêşkêş bike. Ji bo vê divê pelê te " +"yê smb.conf bê guherandin lewre mîhengên WINSê yên DHCP-pêşkêş dike ji /var/" +"lib/samba/dhcp/confê xweber bên xwendin." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "Ji bo bikaranîna vê fonksiyonê divê pakêta dhcp-client were sazkirin." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Bila smb.conf were jixweber mîhengkirin?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Tevahiya vesazkirina peymana Sambayê ya bi pirsan bandorê li parametreya /" +"etc/samba/smb.confê dikin yên bernameyên Sambayê (nmbd û smbd) vesaz kirine. " +"Di smb.confa te ya niha de rêzikeke \"include\" an jî zêdetir rêzik, yên ku " +"dikarin pêvajoya vesazkirina xweber têk bibin û hewcetî derxin ku tu smb." +"confê bi destan saz bikî da ku bixebite." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Eger tu vê vebijêrkê hilnebijêrî, dê pêwîst bibe ku tu hemû veaszkirinan bi " +"serê xwe pêk bînî, û dê avantaja pêşdeçûna vesazkirina periyodîk pêk neyê." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Navê Koma Xebatê/Domain:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Tika ye Koma Xebatê ya vê pergalê diyar bike. Ev mîheng kontrol dike ka dê " +"di bikaranîna pêşkêşkarekê de kîjan Koma Xebatê bê nîşandan, Koma Xebatê ya " +"heyî ya dem bi dem fronted tê gerîn û navê domaînê ya bi mîhenga " +"\"security=domain\"ê tê bikaranîn." + +#~ msgid "Use password encryption?" +#~ msgstr "Bila kilîla şîfreyê bê bikaranîn?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Hemû navrûyên Windowsê dema şîfreyên kilîlkirî tên bikaranîn, bi " +#~ "pêşkêşkarên SMB/CIFS re dikevin têkiliyê. Eger dixwazî deqa şîfreya zelal " +#~ "bi kar bînî divê parametreya di tomarkirina Windowsa xwe de biguherînî." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Çalakirina vê vebijêrkê wekî desteka ji bo şîfreyên deqa sade ya zêdetir " +#~ "nayên parastin ya di berhemên Microsoft Windowsê de, bi tundî tê " +#~ "pêşniyarkirin." + +#~ msgid "daemons" +#~ msgstr "daemon" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Dixwazî Samba çawa bixebitînî?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Daemona Sambayê dikare wekî daemon'eke ji rêzê an jî inetd'ê bixebite. " +#~ "Xebitandina wekî daemonekê tê pêşniyarkirin." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Danegeha şîfreyên samba, /var/lib/samba/passdb.tdb, were afirandin?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Ji bo hevgirtîkirina srandard a di piraniya guhertoyên Windowsê de, divê " +#~ "Samba ji bo bikaranîna şîfreya kilîlkirî bê vesazkirin. Ji bo vê divê " +#~ "şîfreyên bikarhêneran di /etc/passwdê de hatibin tomarkirin. Dibe ku ev " +#~ "pel xweber bê afirandin, lê divê şîfre bi destan bi meÅŸandina smbpasswd " +#~ "hatibin lêzêdekirin û di siberojê de rojane bê girtin." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Eger tu vê neafirînî, divê Sambayê veasz bikî (û pêkan e ku makîneya " +#~ "navrûyê jî) ji bo şîfreya deqa sade." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Ji bo agahiyên zêdetir ji pakêta samba-docê /usr/share/doc/samba-doc/" +#~ "htmldocs/Samba3-Developers-Guide/pwencrypt.htmlê bibîne." diff --git a/debian/po/lt.po b/debian/po/lt.po new file mode 100644 index 0000000..a514f94 --- /dev/null +++ b/debian/po/lt.po @@ -0,0 +1,260 @@ +# translation of samba-lt.po to Lithuanian +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Gintautas Miliauskas <gintas@akl.lt>, 2006. +msgid "" +msgstr "" +"Project-Id-Version: samba-lt\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2008-06-24 23:47+0300\n" +"Last-Translator: Gintautas Miliauskas <gintas@akl.lt>\n" +"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.2\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Pakeisti smb.conf, kad bÅ«tų naudojami WINS nustatymai iÅ¡ DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Jei Å¡is kompiuteris gauna IP adresus iÅ¡ tinklo DHCP serverio, DHCP serveris " +"taip pat gali teikti informacijÄ… apie tinklo WINS serverius (NetBIOS vardų " +"serverius). Kad WINS nustatymai, gauti per DHCP (saugomi rinkmenoje /var/" +"lib/samba/dhcp.conf), bÅ«tų naudojami, reikia pakeisti rinkmenÄ… smb.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Kad bÅ«tų galima pasinaudoti Å¡ia galimybe, turi bÅ«ti įdiegtas paketas dhcp-" +"client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "AutomatiÅ¡kai konfigÅ«ruoti smb.conf?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Likusi Samba konfigÅ«ravimo dalis susijusi su parametrais, nustatomais Samba " +"konfigÅ«racijos rinkmenoje -- /etc/samba/smb.conf. Å i rinkmena konfigÅ«ruoja " +"Samba programas (nmbd ir smbd). Esamame smb.conf yra „include“ komanda arba " +"nustatymas, užraÅ¡ytas per kelias eilutes. Tai gali sutrikdyti automatinį " +"konfigÅ«ravimo procesÄ…, todÄ—l gali prireikti rankiniu bÅ«du paredaguoti smb." +"conf, kad Samba vÄ—l pradÄ—tų veikti." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Jei nepasirinksite Å¡ios galimybÄ—s, turÄ—site konfigÅ«ruoti Samba rankiniu bÅ«du " +"ir negalÄ—site pasinaudoti reguliariais automatiniais konfigÅ«racijos " +"patobulinimais." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "GrupÄ— (workgroup) / domeno vardas:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Migruoti nuo Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "Galima migruoti esamus Samba 3 konfigÅ«racijos failus į Samba 4. Jei " +#~ "konfigÅ«racija sudÄ—tinga, tai gali nesuveikti." + +#, fuzzy +#~ msgid "Realm name:" +#~ msgstr "Sritis:" + +#~ msgid "Use password encryption?" +#~ msgstr "Naudoti slaptažodžių Å¡ifravimÄ…?" + +#, fuzzy +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Visos nesenos Windows sistemos bendraudamos su SMB serveriu naudoja " +#~ "Å¡ifruotus slaptažodžius. Jei norite naudoti neÅ¡ifruotus slaptažodžius, " +#~ "reikia pakeisti reikÅ¡mÄ™ Windows registre." + +#, fuzzy +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Labai rekomenduojama pasirinkti Å¡iÄ… galimybÄ™. Jei pasirinksite Å¡ifruotus " +#~ "slaptažodžius, įsitikinkite, kad turite taisyklingÄ… /etc/samba/smbpasswd " +#~ "rinkmenÄ… ir kad ten nurodyti visų naudotojų, naudojanÄių smbpasswd, " +#~ "slaptažodžiai." + +#~ msgid "daemons" +#~ msgstr "tarnybos" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Kokiu bÅ«du norite leisti Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Samba tarnyba smbd gali veikti kaip įprastinÄ— tarnyba arba ji gali bÅ«ti " +#~ "paleidžiama iÅ¡ inetd. Rekomenduojama Samba naudoti kaip įprastinÄ™ tarnybÄ…." + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "Nustatyti Samba 4 kaip PDC (pagrindinį domenų valdiklį)?" + +#~ msgid "" +#~ "Even when using this option, you will need to set up DNS such that it " +#~ "serves the data from the zone file in that directory before you can use " +#~ "the Active Directory domain." +#~ msgstr "" +#~ "Net pasirinkÄ™ Å¡iÄ… galimybÄ™, kad veiktų Active Directory sritis, turÄ—site " +#~ "sukonfigÅ«ruoti DNS taip, kad jis teiktų duomenis iÅ¡ zonos failo " +#~ "atitinkamame aplanke." + +#~ msgid "" +#~ "Please specify the Kerberos realm this server will be in. In many cases, " +#~ "this will be the same as the DNS domain name." +#~ msgstr "" +#~ "Nurodykite Kerberos sritį, kuriai priklausys Å¡is serveris. Daugeliu " +#~ "atvejų ji sutaps su DNS vardų sritimi." + +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Nurodykite domenÄ…, kuriam Å¡is serveris turÄ—tų priklausyti klientams, " +#~ "siunÄiantiems užklausas." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Sukurti slaptažodžių duomenų bazÄ™, /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Kad bÅ«tų suderinama su standartine daugumos Windows sistemų " +#~ "konfigÅ«racija, Samba turi naudoti Å¡ifruotus slaptažodžius. Tokiu atveju " +#~ "naudotojų slaptažodžiai turi bÅ«ti saugomi atskirai nuo bendrų " +#~ "slaptažodžių rinkmenoje /etc/passwd. Å i rinkmena gali bÅ«ti sukurta " +#~ "automatiÅ¡kai, taÄiau slaptažodžiai turi bÅ«ti pridÄ—ti rankiniu bÅ«du, " +#~ "leidžiant programÄ… smbpasswd." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Jei nesukursite rinkmenos, turÄ—site perkonfigÅ«ruoti Samba (greiÄiausiai " +#~ "ir kitus tinklo kompiuterius), kad bÅ«tų naudojami neÅ¡ifruoti " +#~ "slaptažodžiai." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Daugiau informacijos galite rasti rinkmenoje /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html iÅ¡ paketo samba-doc." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Perkelti /etc/samba/smbpasswd į /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 versijoje atsirado iÅ¡samesnÄ— SAM duomenų bazÄ—s sÄ…saja, todÄ—l " +#~ "rinkmena /etc/samba/smbpasswd nebenaudojama." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Patvirtinkite, kad norite esamÄ… smbpasswd rinkmenÄ… automatiÅ¡kai " +#~ "numigruoti į /var/lib/samba/passdb.tdb. Nesirinkite Å¡ios galimybÄ—s, jei " +#~ "vietoj standartinio planuojate naudoti kitÄ… pdb modulį (pvz., LDAP)." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Daugiau informacijos galite rasti rinkmenoje /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html iÅ¡ paketo samba-doc." diff --git a/debian/po/ml.po b/debian/po/ml.po new file mode 100644 index 0000000..5f81a13 --- /dev/null +++ b/debian/po/ml.po @@ -0,0 +1,243 @@ +# Translation of samba to malayalam +# Copyright (c) 2006 Praveen A <pravi.a@gmail.com> and Debian Project +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2006-12-11 19:30+0530\n" +"Last-Translator: Praveen A <pravi.a@gmail.com>\n" +"Language-Team: Swathanthra Malayalam Computing <smc-discuss@googlegroups." +"com>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "DHCP യിലàµâ€ നിനàµà´¨àµà´³àµà´³ WINS സെറàµà´±à´¿à´™àµà´™àµà´•à´³àµâ€ ഉപയോഗികàµà´•à´¾à´¨àµâ€ smb.conf മാറàµà´±à´£àµ‹?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"നിങàµà´™à´³àµà´Ÿàµ† à´•à´®àµà´ªàµà´¯àµ‚à´Ÿàµà´Ÿà´±à´¿à´¨àµ à´à´ªà´¿ വിലാസ വിവരം നെറàµà´±àµà´µà´°àµâ€à´•àµà´•à´¿à´²àµ† ഒരൠDHCP സേവകനിലàµâ€ നിനàµà´¨àµà´®à´¾à´£àµ " +"à´²à´à´¿à´•àµà´•àµà´¨àµà´¨à´¤àµ†à´™àµà´•à´¿à´²àµâ€, DHCP സേവകനàµâ€ നെറàµà´±àµà´µà´°àµâ€à´•àµà´•à´¿à´²àµà´³àµà´³ WINS (\"NetBIOS നാമ സേവകരàµâ€\") " +"സേവകനàµà´®à´¾à´°àµ†à´•àµà´•àµà´±à´¿à´šàµà´šàµà´³àµà´³ വിവരങàµà´™à´³àµâ€ കൂടി നലàµà´•à´¿à´¯àµ‡à´•àµà´•à´¾à´‚. DHCP-നലàµà´•à´¿à´¯ WINS സജàµà´œàµ€à´•à´°à´£à´™àµà´™à´³àµâ€ /var/" +"lib/samba/dhcp.conf à´²àµâ€ നിനàµà´¨àµà´‚ à´¸àµà´µà´¯à´®àµ‡ വായികàµà´•àµà´¨àµà´¨à´¤à´¿à´¨àµ നിങàµà´™à´³àµà´Ÿàµ† smb.conf ഫയലിലàµâ€ ഒരൠമാറàµà´±à´‚ " +"ആവശàµà´¯à´®à´¾à´£àµ." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "à´ˆ à´•à´´à´¿à´µàµà´ªà´¯àµ‹à´—à´¿à´•àµà´•à´¾à´¨àµâ€ dhcp-client പാകàµà´•àµ‡à´œàµ ഇനàµâ€à´¸àµà´±àµà´±à´¾à´³àµâ€â€ ചെയàµà´¤à´¿à´°à´¿à´•àµà´•àµ‡à´£àµà´Ÿà´¤àµà´£àµà´Ÿàµ." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "smb.conf à´¸àµà´µà´¯à´®àµ‡ à´•àµà´°à´®àµ€à´•à´°à´¿à´•àµà´•à´£àµ‹?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"ബാകàµà´•à´¿à´¯àµà´³àµà´³ സാംബ à´•àµà´°à´®àµ€à´•à´°à´£à´‚ സാംബ à´ªàµà´°àµ‹à´—àµà´°à´¾à´®àµà´•à´³àµ† (nmbd à´¯àµà´‚ smbd) à´•àµà´°à´®àµ€à´•à´°à´¿à´•àµà´•à´¾à´¨àµà´ªà´¯àµ‹à´—à´¿à´•àµà´•àµà´¨àµà´¨ " +"ഫയലായ /etc/samba/smb.conf ലെ പരാമീറàµà´±à´±àµà´•à´³àµ† ബാധികàµà´•àµà´¨àµà´¨ ചോദàµà´¯à´™àµà´™à´³àµà´®à´¾à´¯à´¿ ബനàµà´§à´ªàµà´ªàµ†à´Ÿàµà´Ÿà´¤à´¾à´£àµ. " +"നിങàµà´™à´³àµà´Ÿàµ† ഇപàµà´ªàµ‹à´´à´¤àµà´¤àµ† smb.conf ഒരൠ'include' വരി à´…à´²àµà´²àµ†à´™àµà´•à´¿à´²àµâ€ à´’à´¨àµà´¨à´¿à´²à´§à´¿à´•à´‚ വരിയിലàµâ€ " +"à´µàµà´¯à´¾à´ªà´¿à´šàµà´šàµà´³àµà´³ ഒരൠതിരഞàµà´žàµ†à´Ÿàµà´•àµà´•à´¾à´µàµà´¨àµà´¨ വില ഉളàµâ€â€Œà´•àµà´•àµŠà´³àµà´³àµà´¨àµà´¨à´¤à´¾à´£àµ, അതൠസàµà´µà´¯à´®àµ‡à´¯àµà´³àµà´³ à´•àµà´°à´®àµ€à´•à´°à´£ à´ªàµà´°à´•àµà´°à´¿à´¯à´¯àµ† " +"ആശയകàµà´•àµà´´à´ªàµà´ªà´¤àµà´¤à´¿à´²à´¾à´•àµà´•àµà´•à´¯àµà´‚ വീണàµà´Ÿàµà´‚ à´ªàµà´°à´µà´°àµâ€à´¤àµà´¤à´¿à´•àµà´•àµà´¨àµà´¨ വിധതàµà´¤à´¿à´²à´¾à´•àµà´•à´¾à´¨àµâ€ smb.conf കൈകൊണàµà´Ÿàµ മാറàµà´±àµà´¨àµà´¨à´¤àµ " +"ആവശàµà´¯à´®à´¾à´•àµà´•àµà´•à´¯àµà´‚ ചെയàµà´¯àµà´‚." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"à´ˆ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•à´¾à´µàµà´¨àµà´¨ വില നിങàµà´™à´³àµâ€â€ തിരഞàµà´žà´Ÿàµà´¤àµà´¤à´¿à´²àµà´²àµ†à´™àµà´•à´¿à´²àµâ€ à´Žà´¨àµà´¤àµ†à´™àµà´•à´¿à´²àµà´‚ à´•àµà´°à´®àµ€à´•à´°à´£ മാറàµà´±à´™àµà´™à´³àµâ€ നിങàµà´™à´³àµâ€à´•àµà´•àµ " +"à´¸àµà´µà´¯à´‚ കൈകാരàµà´¯à´‚ ചെയàµà´¯àµ‡à´£àµà´Ÿà´¿ വരàµà´•à´¯àµà´‚ സമയാസമയങàµà´™à´³à´¿à´²àµà´³àµà´³ à´•àµà´°à´®àµ€à´•à´°à´£ à´ªàµà´°àµ‹à´—തികളàµà´Ÿàµ† à´®àµà´¨àµâ€à´¤àµ‚à´•àµà´•à´‚ നേടാനàµâ€ " +"നിങàµà´™à´³àµâ€à´•àµà´•àµ സാധികàµà´•à´¾à´¤àµ† വരàµà´•à´¯àµà´‚ ചെയàµà´¯àµà´‚." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "വരàµâ€à´•àµà´•àµà´—àµà´°àµ‚à´ªàµà´ªàµ/ഡൊമൈനàµâ€ നാമം:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#~ msgid "Use password encryption?" +#~ msgstr "അടയാളവാകàµà´•àµ à´Žà´¨àµâ€à´•àµà´°à´¿à´ªàµà´·à´¨àµâ€ ഉപയോഗികàµà´•à´£àµ‹?" + +#, fuzzy +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "à´Žà´²àµà´²à´¾ à´ªàµà´¤à´¿à´¯ വിനàµâ€à´¡àµ‹à´¸àµ à´•àµà´²à´¯à´¨àµà´±àµà´•à´³àµà´‚ SMB സേവകരàµà´®à´¾à´¯à´¿ ആശയവിനàµà´®à´¯à´‚ നടതàµà´¤àµà´¨àµà´¨à´¤àµ à´Žà´¨àµâ€à´•àµà´°à´¿à´ªàµà´±àµà´±àµ ചെയàµà´¤ " +#~ "അടയാള വാകàµà´•àµà´•à´³àµà´ªà´¯àµ‹à´—à´¿à´šàµà´šà´¾à´£àµ. നിങàµà´™à´³àµâ€ à´•àµà´²à´¿à´¯à´°àµâ€ ടെകàµà´¸àµà´±àµà´±àµ അടയാള " +#~ "വാകàµà´•àµà´•à´³àµà´ªà´¯àµ‹à´—à´¿à´•àµà´•à´¾à´¨à´¾à´—àµà´°à´¹à´¿à´•àµà´•àµà´¨àµà´¨àµ†à´™àµà´•à´¿à´²àµâ€ നിങàµà´™à´³àµâ€à´•àµà´•àµ നിങàµà´™à´³àµà´Ÿàµ† വിനàµâ€à´¡àµ‹à´¸àµ രജിസàµà´Ÿàµà´°à´¿à´¯à´¿à´²àµ† ഒരൠ" +#~ "പരാമീറàµà´±à´°àµâ€ മാറàµà´±àµ‡à´£àµà´Ÿà´¿ വരàµà´‚." + +#, fuzzy +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "à´ˆ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•à´¾à´µàµà´¨àµà´¨ വില ഇനേബിളàµâ€ ചെയàµà´¯àµà´¨àµà´¨à´¤à´¿à´¨àµ വളരെയധികം à´¶àµà´ªà´¾à´°àµâ€à´¶ ചെയàµà´¤à´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ. നിങàµà´™à´³àµâ€ " +#~ "à´…à´™àµà´™à´¨àµ† ചെയàµà´¯àµà´•à´¯à´¾à´£àµ†à´™àµà´•à´¿à´²àµâ€ നിങàµà´™à´³àµâ€à´•àµà´•àµ ഒരൠയോഗàµà´¯à´®à´¾à´¯ /etc/samba/smbpasswd ഫയലàµà´£àµà´Ÿàµ†à´¨àµà´¨àµà´‚ " +#~ "smbpasswd à´Žà´¨àµà´¨ ആജàµà´ž ഉപയോഗിചàµà´šàµ ഓരോ ഉപയോകàµà´¤à´¾à´•àµà´•à´³àµâ€à´•àµà´•àµà´‚ അവിടെ അടയാള വാകàµà´•àµ സെറàµà´±àµ ചെയàµà´¤àµ " +#~ "à´Žà´¨àµà´¨àµ ഉറപàµà´ªà´¾à´•àµà´•àµà´•à´¯àµà´‚ ചെയàµà´¯àµà´•." + +#~ msgid "daemons" +#~ msgstr "ഡെമണàµà´•à´³àµâ€" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "സാംബ à´Žà´™àµà´™à´¨àµ† à´ªàµà´°à´µà´°àµâ€à´¤àµà´¤à´¿à´ªàµà´ªà´¿à´•àµà´•à´¾à´¨à´¾à´£àµ നിങàµà´™à´³à´¾à´—àµà´°à´¹à´¿à´•àµà´•àµà´¨àµà´¨à´¤àµ?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "സാംബ ഡെമണàµâ€ smbd ഒരൠസാധാരണ ഡെമണായോ à´…à´²àµà´²àµ†à´™àµà´•à´¿à´²àµâ€ inetd യിലàµâ€ നിനàµà´¨àµ‹ " +#~ "à´ªàµà´°à´µà´°àµâ€à´¤àµà´¤à´¿à´ªàµà´ªà´¿à´•àµà´•à´¾à´µàµà´¨àµà´¨à´¤à´¾à´£àµ. ഡെമണായി à´“à´Ÿà´¿à´•àµà´•àµà´¨àµà´¨à´¤à´¾à´£àµ à´¶àµà´ªà´¾à´°àµâ€à´¶ ചെയàµà´¤à´¿à´Ÿàµà´Ÿàµà´³àµà´³ വഴി." + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "ദയവായി à´•àµà´²à´¯à´¨àµà´±àµà´•à´³àµâ€ à´…à´¨àµà´µàµ‡à´·à´¿à´•àµà´•àµà´®àµà´ªàµ‹à´³àµâ€ à´ˆ സേവകനàµâ€ ഉളàµâ€â€Œà´ªàµà´ªàµ†à´Ÿàµà´¨àµà´¨àµ à´Žà´¨àµà´¨àµ തോനàµà´¨àµ‡à´£àµà´Ÿ വരàµâ€à´•àµà´•àµà´—àµà´°àµ‚à´ªàµà´ªàµ നലàµà´•àµà´•. à´ˆ " +#~ "പരാമീറàµà´±à´°àµâ€ security=domain à´Žà´¨àµà´¨ സജàµà´œàµ€à´•à´°à´£à´¤àµà´¤à´¿à´²àµà´ªà´¯àµ‹à´—à´¿à´•àµà´•àµà´¨àµà´¨ ഡൊമൈനàµâ€ നാമതàµà´¤àµ‡à´¯àµà´‚ " +#~ "നിയനàµà´¤àµà´°à´¿à´•àµà´•àµà´¨àµà´¨àµ à´Žà´¨àµà´¨àµ‹à´°àµâ€à´•àµà´•àµà´•." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "സാംബ അടയാള വാകàµà´•àµà´•à´³àµà´Ÿàµ† ഡാറàµà´±à´¾à´¬àµ‡à´¸à´¾à´¯ /var/lib/samba/passdb.tdb സൃഷàµà´Ÿà´¿à´¯àµà´•àµà´•à´Ÿàµà´Ÿàµ‡?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "കൂടàµà´¤à´²àµâ€ വിനàµâ€à´¡àµ‹à´¸àµ ലകàµà´•à´™àµà´™à´³àµà´Ÿàµ‡à´¯àµà´‚ ഡിഫാളàµâ€à´Ÿàµà´Ÿàµà´•à´³àµà´®à´¾à´¯à´¿ പൊരàµà´¤àµà´¤à´ªàµà´ªàµ†à´Ÿà´¾à´¨àµâ€ സാംബ à´Žà´¨àµâ€à´•àµà´°à´¿à´ªàµà´±àµà´±àµ ചെയàµà´¤ അടയാള " +#~ "വാകàµà´•àµà´•à´³àµâ€ ഉപയോഗികàµà´•à´¾à´¨à´¾à´¯à´¿ à´•àµà´°à´®àµ€à´•à´°à´¿à´•àµà´•àµ‡à´£àµà´Ÿà´¤àµà´£àµà´Ÿàµ. ഇതിനൠഉപയോകàµà´¤àµƒ അടയാള വാകàµà´•àµà´•à´³àµâ€ /etc/" +#~ "passwd ലിലàµâ€ നിനàµà´¨àµà´‚ à´µàµà´¯à´¤àµà´¯à´¸àµà´¤à´®à´¾à´¯ ഒരൠഫയലിലàµâ€ സൂകàµà´·à´¿à´šàµà´šàµ വകàµà´•àµ‡à´£àµà´Ÿà´¤àµà´£àµà´Ÿàµ. à´ˆ ഫയലàµâ€ à´¸àµà´µà´¯à´®àµ‡ " +#~ "സൃഷàµà´Ÿà´¿à´•àµà´•à´¾à´µàµà´¨àµà´¨à´¤à´¾à´£àµ പകàµà´·àµ‡ അടയാള വാകàµà´•àµà´•à´³àµâ€ smbpasswd à´“à´Ÿà´¿à´šàµà´šàµà´•àµŠà´£àµà´Ÿàµ മാനàµà´µà´²à´¾à´¯à´¿ " +#~ "കൂടàµà´Ÿà´¿à´šàµà´šàµ‡à´°àµâ€â€Œà´•àµà´•àµ‡à´£àµà´Ÿà´¤àµà´‚ à´à´¾à´µà´¿à´¯à´¿à´²àµâ€ à´ªàµà´¤àµà´•àµà´•à´¿ സൂകàµà´·à´¿à´•àµà´•àµ‡à´£àµà´Ÿà´¤àµà´®à´¾à´£àµ." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "ഇതൠനിങàµà´™à´³àµâ€ സൃഷàµà´Ÿà´¿à´šàµà´šà´¿à´²àµà´²àµ†à´™àµà´•à´¿à´²àµâ€ നിങàµà´™à´³àµâ€à´•àµà´•àµ à´ªàµà´²àµ†à´¯à´¿à´¨àµâ€ ടെകàµà´¸àµà´±àµà´±àµ അടയാള വാകàµà´•àµà´•à´³àµâ€ " +#~ "ഉപയോഗികàµà´•à´£à´®àµ†à´™àµà´•à´¿à´²àµâ€ സാംബ (à´¯àµà´‚ ഒരൠപകàµà´·àµ‡ നിങàµà´™à´³àµà´Ÿàµ† à´•àµà´²à´¯à´¨àµà´±àµ മഷീനàµà´•à´³àµà´‚) à´ªàµà´¨à´ƒà´•àµà´°à´®àµ€à´•à´°à´¿à´•àµà´•àµ‡à´£àµà´Ÿà´¿ " +#~ "വരàµà´‚." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "കൂടàµà´¤à´²àµâ€ വിവരങàµà´™à´³àµâ€à´•àµà´•à´¾à´¯à´¿ samba-doc പാകàµà´•àµ‡à´œà´¿à´²àµ† /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html കാണàµà´•." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "passdb ബാകàµà´•àµ†à´¨àµâ€à´¡àµà´•à´³àµâ€ ചെയിനàµâ€ ചെയàµà´¯àµà´¨àµà´¨à´¤à´¿à´¨àµ† പിനàµâ€à´¤àµà´£à´¯àµà´•àµà´•àµà´¨àµà´¨à´¿à´²àµà´²" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "3.0.23 ലകàµà´•à´‚ à´®àµà´¤à´²àµâ€ സാംബ \"passdb backend\" പരാമീറàµà´±à´±à´¿à´²àµâ€ à´’à´¨àµà´¨à´¿à´²àµâ€ കൂടàµà´¤à´²àµâ€ ബാകàµà´•àµ†à´¨àµâ€à´¡àµà´•à´³àµ† " +#~ "ചെയിനàµâ€ ചെയàµà´¯àµà´¨àµà´¨à´¤àµ പിനàµâ€à´¤àµà´£à´¯àµà´•àµà´•àµà´¨àµà´¨à´¿à´²àµà´². നിങàµà´™à´³àµà´Ÿàµ† smb.conf à´²àµâ€ ബാകàµà´•àµ†à´¨àµâ€à´¡àµà´•à´³àµà´Ÿàµ† " +#~ "പടàµà´Ÿà´¿à´•à´¯àµà´³àµâ€â€Œà´•àµà´•àµŠà´³àµà´³àµà´¨àµà´¨ ഒരൠpassdb backend പരാമീറàµà´±à´°àµâ€ ഉളàµâ€â€Œà´•àµà´•àµŠà´³àµà´³àµà´¨àµà´¨à´¤à´¾à´¯à´¿ തോനàµà´¨àµà´¨àµà´¨àµ. നിങàµà´™à´³àµâ€ ഇതൠ" +#~ "ശരിയാകàµà´•àµà´¨àµà´¨à´¤àµ വരെ സാംബയàµà´Ÿàµ† à´ªàµà´¤à´¿à´¯ ലകàµà´•à´‚ à´ªàµà´°à´µà´°àµâ€à´¤àµà´¤à´¿à´•àµà´•àµà´•à´¯à´¿à´²àµà´²." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "/etc/samba/smbpasswd നെ /var/lib/samba/passdb.tdb യിലേകàµà´•àµ മാറàµà´±à´£àµ‹?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "നേരതàµà´¤àµ†à´¯àµà´£àµà´Ÿà´¾à´¯à´¿à´°àµà´¨àµà´¨ /etc/samba/smbpasswd ഫയലിനെ മാറàµà´±à´¿à´•àµà´•àµŠà´£àµà´Ÿàµ സാംബ 3.0 ഒരൠകൂടàµà´¤à´²àµâ€ " +#~ "പൂരàµâ€à´£à´®à´¾à´¯ SAM ഡാറàµà´±à´¾à´¬àµ‡à´¸àµ ഇനàµà´±à´°àµâ€à´«àµ‡à´¸àµ കൊണàµà´Ÿàµà´µà´¨àµà´¨à´¿à´Ÿàµà´Ÿàµà´£àµà´Ÿàµ." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "ദയവായി നിലവിലàµà´³àµà´³ smbpasswd ഫയലàµâ€ à´¸àµà´µà´¯à´®àµ‡ /var/lib/samba/passdb.tdb യിലേകàµà´•àµ " +#~ "മാറàµà´±àµà´µà´¾à´¨àµâ€ നിങàµà´™à´³à´¾à´—àµà´°à´¹à´¿à´•àµà´•àµà´¨àµà´¨àµà´£àµà´Ÿàµ‹ à´Žà´¨àµà´¨àµ നിശàµà´šà´¯à´¿à´•àµà´•àµà´•. ഇതിനൠപകരം മറàµà´±àµŠà´°àµ pdb ബാകàµà´•àµ†à´¨àµâ€à´¡àµ " +#~ "(ഉദാ. LDAP) ഇതിനൠപകരം ഉപയോഗികàµà´•à´¾à´¨àµâ€ നിങàµà´™à´³àµâ€à´•àµà´•àµ പദàµà´§à´¤à´¿à´¯àµà´£àµà´Ÿàµ†à´™àµà´•à´¿à´²àµâ€ à´ˆ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•à´¾à´µàµà´¨àµà´¨ " +#~ "വില തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•à´°àµà´¤àµ." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "കൂടàµà´¤à´²àµâ€ വിവരങàµà´™à´³àµâ€à´•àµà´•à´¾à´¯à´¿ samba-doc പാകàµà´•àµ‡à´œà´¿à´²àµ† /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html കാണàµà´•." diff --git a/debian/po/mr.po b/debian/po/mr.po new file mode 100644 index 0000000..4ac54cd --- /dev/null +++ b/debian/po/mr.po @@ -0,0 +1,230 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2006-08-15 07:59-0500\n" +"Last-Translator: Priti Patil <prithisd@gmail.com>\n" +"Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India " +"<janabhaaratii@cdacmumbai.in>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"डीà¤à¤šà¤¸à¥€à¤ªà¥€(डायनमिक होसà¥à¤Ÿ कानफिगà¥à¤°à¥‡à¤¶à¤¨ पà¥à¤°à¥‹à¤Ÿà¥‹à¤•à¥‰à¤²) मधील डबà¥à¤²à¥à¤¯à¥à¤†à¤¯à¤à¤¨à¤à¤¸(विनà¥à¤¸) निरà¥à¤§à¤¾à¤°à¤£à¤¾à¤‚चा " +"उपयोग करणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी smb.conf मधà¥à¤¯à¥‡ बदल करायचा का?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"संगणकाचà¥à¤¯à¤¾ जाळà¥à¤¯à¤¾à¤µà¤°,तà¥à¤®à¤šà¥à¤¯à¤¾ संगणकाला,डीà¤à¤šà¤¸à¥€à¤ªà¥€ परिसेवकामधून आयपी पतà¥à¤¤à¤¾ मिळाला असेल,तर " +"तो डीà¤à¤šà¤¸à¥€à¤ªà¥€ परिसेवक,संगणकाचà¥à¤¯à¤¾ जाळà¥à¤¯à¤¾à¤µà¤° असलेलà¥à¤¯à¤¾ डबà¥à¤²à¥à¤¯à¥‚आयà¤à¤¨à¤à¤¸ परिसेवकांबदà¥à¤¦à¤²à¤¹à¥€ " +"(\"नेटबॉयस( à¤à¤¨à¤ˆà¤Ÿà¥€ बीआयओà¤à¤¸) नांवाचा परिसेवक\") माहिती देऊ शकेल. यासाठीच तà¥à¤®à¤šà¥à¤¯à¤¾ smb." +"conf संचिकेत बदल करणे आवशà¥à¤¯à¤• आहे, तसे केलà¥à¤¯à¤¾à¤¨à¥‡ डीà¤à¤šà¤¸à¥€à¤ªà¥€à¤¨à¥‡ पà¥à¤°à¤µà¤¿à¤²à¥‡à¤²à¥€ डबà¥à¤²à¥à¤¯à¥‚आयà¤à¤¨à¤à¤¸ निरà¥à¤§à¤¾à¤°à¤£à¥‡ /" +"ईटीसी/सांबा/डीà¤à¤šà¤¸à¥€à¤ªà¥€ सीओà¤à¤¨à¤à¤« (/var/lib/samba/dhcp.conf./) मधून आपोआप वाचली जाऊ " +"शकतात." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"या विशेष लकà¥à¤·à¤£à¤¾à¤šà¤¾ फायदा घेणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी,डीà¤à¤šà¤¸à¥€à¤ªà¥€ ३ गà¥à¤°à¤¾à¤¹à¤• पॅकेज अधिषà¥à¤ ापित केले गेलेच पाहिजे. " + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "à¤à¤¸à¤à¤®à¤¬à¥€à¥¤à¤¸à¥€à¤“à¤à¤¨à¤à¤« smb.conf आपोआप संरचित करायचे का? " + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"सांबाची बाकीची संरचना,सांबा आजà¥à¤žà¤¾à¤µà¤²à¥€à¤šà¥€ (à¤à¤¨à¤à¤®à¤¬à¥€à¤¡à¥€ व à¤à¤¸à¤à¤®à¤¬à¥€à¤¡à¥€) संरचना करणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी " +"वापरलà¥à¤¯à¤¾ जाणाऱà¥à¤¯à¤¾ etc/samba/smb.conf /ईटीसी/सांबा/à¤à¤¸à¤à¤®à¤¬à¥€.सीओà¤à¤¨à¤à¤« या संचिकेमधील " +"चलितमूलà¥à¤¯à¤¾à¤‚वर परिणाम करणाऱà¥à¤¯à¤¾ पà¥à¤°à¤¶à¥à¤¨à¤¾à¤‚बाबत आहे. तà¥à¤®à¤šà¥à¤¯à¤¾ सधà¥à¤¯à¤¾à¤šà¥à¤¯à¤¾ à¤à¤¸à¤à¤®à¤¬à¥€. सीओà¤à¤¨à¤à¤« smb." +"conf मधà¥à¤¯à¥‡,'अंतरà¥à¤à¤¾à¤µ' ओळ किंवा अनेक ओळी असलेला à¤à¤• परà¥à¤¯à¤¾à¤¯ आहे. व तो सà¥à¤µà¤¯à¤‚चलित संरचना " +"पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¥‡à¤¤ गोंधळ करू शकतो आणि तà¥à¤¯à¤¾à¤®à¥à¤³à¥‡ तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ तà¥à¤®à¤šà¥€ à¤à¤¸à¤à¤®à¤¬à¥€.सीओà¤à¤¨à¤à¤«,smb.conf,पà¥à¤¨à¥à¤¹à¤¾ " +"कारà¥à¤¯à¤•à¤¾à¤°à¥€ होणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी सà¥à¤µà¤¤à¤ƒà¤š संपादित करावी लागेल." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"तà¥à¤®à¥à¤¹à¥€ हा परà¥à¤¯à¤¾à¤¯ निवडला नाहीत तर संरचनेतले बदल तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾à¤š हाताळावे लागतील व तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ " +"आवरà¥à¤¤à¥€ संरचना गà¥à¤£à¤¸à¤‚वरà¥à¤§à¤¨à¤¾à¤šà¤¾ चा लाठघेता येणार नाही." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "कारà¥à¤¯à¤—ट/पà¥à¤°à¤•à¥à¤·à¥‡à¤¤à¥à¤°à¤¾à¤šà¥‡ नाव:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#~ msgid "Use password encryption?" +#~ msgstr "कूटलिखित परवलीचा शबà¥à¤¦ वापरावा का?" + +#, fuzzy +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "विंडोजचे सरà¥à¤µ गà¥à¤°à¤¾à¤¹à¤• कूटलिखित परवलीचे शबà¥à¤¦ वापरà¥à¤¨ à¤à¤¸à¤à¤®à¤¬à¥€ परिसेवकांशी संवाद साधतात. " +#~ "तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ सà¥à¤ªà¤·à¥à¤Ÿ परवलीचे शबà¥à¤¦ वापरायचे असतील तर तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ तà¥à¤®à¤šà¥à¤¯à¤¾ विंडोजमधील नोंदीमधà¥à¤¯à¥‡ " +#~ "à¤à¤–ादे चलितमूलà¥à¤¯ बदलावे लागेल." + +#, fuzzy +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "हाच परà¥à¤¯à¤¾à¤¯ कारà¥à¤¯à¤¾à¤¨à¥à¤µà¤¿à¤¤ करणà¥à¤¯à¤¾à¤šà¥€ शिफारस केली जात आहे. तà¥à¤®à¥à¤¹à¥€ तसे केलà¥à¤¯à¤¾à¤¸,तà¥à¤®à¤šà¥à¤¯à¤¾à¤œà¤µà¤³ वैध " +#~ "अशी (/etc/samba/smbpasswd)ईटीसी/सांबा/à¤à¤¸à¤à¤®à¤¬à¥€ पासवरà¥à¤¡ संचिका आहे, तसेच ,à¤à¤¸à¤à¤®à¤¬à¥€ " +#~ "पासवरà¥à¤¡ आजà¥à¤žà¤¾à¤µà¤²à¥€ वापरà¥à¤¨, पà¥à¤°à¤¤à¥à¤¯à¥‡à¤• उपयोजकासाठी परवलीचे शबà¥à¤¦ निरà¥à¤§à¤¾à¤°à¤¿à¤¤ केलà¥à¤¯à¤¾à¤šà¥€ खातà¥à¤°à¥€ " +#~ "करा." + +#~ msgid "daemons" +#~ msgstr "डिमनà¥à¤¸" + +#~ msgid "inetd" +#~ msgstr "आयà¤à¤¨à¤‡à¤Ÿà¥€à¤¡à¥€" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ सांबा कशा पà¥à¤°à¤•à¤¾à¤°à¥‡ चालू करावयाचा आहे?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "सांबा डिमन à¤à¤¸à¤à¤®à¤¬à¥€à¤¡à¥€ हा पà¥à¤°à¥‹à¤—à¥à¤°à¤¾à¤® सरà¥à¤µà¤¸à¤¾à¤§à¤¾à¤°à¤£ डिमन मà¥à¤¹à¤£à¥‚न किंवा आयà¤à¤¨à¤‡à¤Ÿà¥€à¤¡à¥€ मधून " +#~ "चालविता येतो. डिमन मà¥à¤¹à¤£à¥‚न चालविणे अधिक शà¥à¤°à¥‡à¤¯à¤¸à¥à¤•à¤°." + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "गà¥à¤°à¤¾à¤¹à¤•à¤¾à¤‚नी पृचà¥à¤›à¤¾ केलà¥à¤¯à¤¾à¤µà¤° हा परिसेवक कोणतà¥à¤¯à¤¾ कारà¥à¤¯à¤—टात दिसायला हवा याचा नेमका उलà¥à¤²à¥‡à¤– " +#~ "करा. लकà¥à¤·à¤¾à¤¤ ठेवा की हेच चलितमूलà¥à¤¯ सà¥à¤°à¤•à¥à¤·à¤¾-पà¥à¤°à¤•à¥à¤·à¥‡à¤¤à¥à¤° निरà¥à¤§à¤¾à¤°à¤£ बरोबर वापरले असता " +#~ "पà¥à¤°à¤•à¥à¤·à¥‡à¤¤à¥à¤°à¤¨à¤¾à¤®à¤¹à¥€ नियंतà¥à¤°à¤¿à¤¤ करते." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "var/lib/samba/passdb.tdb /वà¥à¤¹à¥€à¤à¤†à¤° /à¤à¤²à¤†à¤¯à¤¬à¥€/सांबा /à¤à¤¸à¤à¤®à¤¬à¥€ पासडीबी.टीडीबी? या " +#~ "सांबा परवलीचà¥à¤¯à¤¾ शबà¥à¤¦à¤¾à¤šà¥€ डेटाबेस (माहिती) तयार करा." + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "विंडोजचà¥à¤¯à¤¾ बहà¥à¤¤à¥‡à¤• आवृतà¥à¤¤à¥€à¤‚मधील डिफॉलà¥à¤Ÿà¤¶à¥€ सहतà¥à¤µ ठेवणà¥à¤¯à¤¾à¤¸à¤¾à¤ ी कूटलिखित परवलीचे शबà¥à¤¦ वापरà¥à¤¨ " +#~ "सांबा संरचित केला पाहिजे. यासाठी परवलीचे शबà¥à¤¦,ईटीसी/पासवरà¥à¤¡ पेकà¥à¤·à¤¾ अलग संचिकेत साठवून " +#~ "ठेवणे आवशà¥à¤¯à¤• आहे. ही या संचिकेची रचना सà¥à¤µà¤¯à¤‚चलित करता येते,परंतॠयात परवलीचे शबà¥à¤¦,à¤à¤¸à¤à¤®à¤¬à¥€ " +#~ "पासवरà¥à¤¡ चालवून सà¥à¤µà¤¹à¤¸à¥à¤¤à¥‡ टाकले पाहिजेत व à¤à¤µà¤¿à¤·à¥à¤¯à¤•à¤¾à¤³à¤¾à¤¤ अदà¥à¤¯à¤¯à¤¾à¤µà¤¤ ठेवले पाहिजे." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "तà¥à¤®à¥à¤¹à¥€ ही रचना न केलà¥à¤¯à¤¾à¤¸ तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ सांबा(व कदाचित तà¥à¤®à¤šà¥à¤¯à¤¾ गà¥à¤°à¤¾à¤¹à¤•à¤¾à¤‚चे संगणक),साधà¥à¤¯à¤¾ शबà¥à¤¦à¤¾à¤‚चे " +#~ "परवलीचे शबà¥à¤¦ वापरà¥à¤¨ पà¥à¤¨à¤ƒà¤¸à¤‚रचित करावे लागतील." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "अधिक माहितीसाठी सांबा-डीओसी पॅकेजमधील /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html (यूà¤à¤¸à¤†à¤°/शेअर/डीओसी/सांबा-डीओसी/à¤à¤šà¤Ÿà¥€à¤à¤®à¤à¤²à¤¡à¥€à¤“सीà¤à¤¸/à¤à¤¨à¤•à¥à¤°à¤¿à¤ªà¥à¤¶à¤¨." +#~ "à¤à¤šà¤Ÿà¥€à¤à¤®à¤à¤²) हे पॅकेज पहा." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "/ईटीसी/सांबा/à¤à¤¸à¤à¤®à¤¬à¥€ पासवरà¥à¤¡,/वà¥à¤¹à¥€à¤à¤†à¤°/à¤à¤²à¤†à¤¯à¤¬à¥€/सांबा/पासवरà¥à¤¡à¥¤à¤Ÿà¥€à¤¡à¥€à¤¬à¥€ कडे हलवायचा का?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "सांबा ३.० ने पूरà¥à¤£à¤¤à¤° असा à¤à¤¸à¤à¤à¤® डेटाबेस अंतराफलक पà¥à¤°à¤¸à¥à¤¤à¥à¤¤ केला असून तो इटीसी/सांबा/" +#~ "à¤à¤¸à¤à¤®à¤¬à¥€ पासवरà¥à¤¡ संचिकेला मागे टाकतो." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "कृपया तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ सधà¥à¤¯à¤¾à¤šà¥€ à¤à¤¸à¤à¤®à¤¬à¥€ पासवरà¥à¤¡ संचिका आपोआप/वà¥à¤¹à¥€à¤à¤†à¤°/à¤à¤²à¤†à¤¯à¤¬à¥€/सांबा/पासडीबी।" +#~ "टीडीबी कडे सà¥à¤¥à¤²à¤¾à¤‚तरित à¤à¤¾à¤²à¥à¤¯à¤¾à¤¸ चालेल का याची खातà¥à¤°à¥€ करा. तà¥à¤®à¥à¤¹à¤¾à¤²à¤¾ तà¥à¤¯à¤¾à¤à¤µà¤œà¥€ दà¥à¤¸à¤°à¥€ " +#~ "कोणती पीडीबी बॅकà¤à¤‚ड(उदा.à¤à¤²à¤¡à¥€à¤à¤ªà¥€)करावयाची असलà¥à¤¯à¤¾à¤¸ हा परà¥à¤¯à¤¾à¤¯ सà¥à¤µà¥€à¤•à¤¾à¤°à¥ नका" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "अधिक माहितीसाठी सांबा-डीओसी पॅकेजमधील /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html (यूà¤à¤¸à¤†à¤°/शेअर/डीओसी/सांबा-डीओसी/à¤à¤šà¤Ÿà¥€à¤à¤®à¤à¤²à¤¡à¥€à¤“सीà¤à¤¸/à¤à¤¨à¤•à¥à¤°à¤¿à¤ªà¥à¤¶à¤¨." +#~ "à¤à¤šà¤Ÿà¥€à¤à¤®à¤à¤²) हे पॅकेज पहा." diff --git a/debian/po/nb.po b/debian/po/nb.po new file mode 100644 index 0000000..66fd0ec --- /dev/null +++ b/debian/po/nb.po @@ -0,0 +1,324 @@ +# translation of nb.po_[K2Raha].po to Norwegian BokmÃ¥l +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Bjørn Steensrud <bjornst@powertech.no>, 2006. +# Bjørn Steensrud <bjornst@skogkatt.homelinux.org>, 2012, 2013. +msgid "" +msgstr "" +"Project-Id-Version: samba_debian_po_nb\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2013-10-24 10:13+0200\n" +"Last-Translator: Bjørn Steensrud <bjornst@skogkatt.homelinux.org>\n" +"Language-Team: Norwegian BokmÃ¥l <i18n-nb@lister.ping.uio.no>\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.5\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Samba-tjener og verktøy" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Skal smb.conf endres til Ã¥ bruke WINS-innstillinger fra DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Hvis din datamaskin fÃ¥r informasjon om IP-adressen fra en DHCP-tjener pÃ¥ " +"nettet, sÃ¥ kan DHCP-tjeneren ogsÃ¥ skaffe informasjon om WINS-tjenere " +"(«NetBIOS navnetjenere») pÃ¥ nettet. For Ã¥ bruke dette mÃ¥ smb.conf-fila " +"endres slik at WINS-innstillinger fra DHCP automatisk leses fra /var/lib/" +"samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "For Ã¥ utnytte denne muligheten mÃ¥ pakka dhcp-client være installert." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Sette opp smb.conf automatisk?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Resten av Samba-oppsettet dreier seg om spørsmÃ¥l som pÃ¥virker parametre i /" +"etc/samba/smb.conf, som er oppsettsfila for Samba-programmene (nmbd og " +"smbd). smb.conf-fila inneholder nÃ¥ en «include»-linje eller en parameter " +"som gÃ¥r over flere linjer, som kanskje kan forvirre den automatiske " +"oppsettsprosessen slik at du mÃ¥ endre smb.conf for hÃ¥nd for Ã¥ fÃ¥ den til Ã¥ " +"virke igjen." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Hvis du ikke velger automatisk oppsett, mÃ¥ du hÃ¥ndtere oppsettsendringer " +"selv, og kan ikke dra nytte av periodiske forbedringer i oppsettet." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Arbeidsgruppe/domenenavn:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Oppgi arbeidsgruppen for dette systemet. Denne innstillingen styrer hvilken " +"arbeidsgruppe systemet blir vist i nÃ¥r det brukes som en tjener, standard " +"arbeidsgruppe som skal brukes nÃ¥r diverse forgrunnsmotorer brukes til Ã¥ bla " +"med, og domenenavnet som brukes med innstillingen «security=domain»." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Skal det oppgraderes fra Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "Det er mulig Ã¥ overføre de oppsettsfilene som finnes fra Samba 3 til " +#~ "Samba 4. Dette vil trolig mislykkes for kompliserte oppsett, men burde gi " +#~ "et godt utgangspunkt for de fleste eksisterende installasjonene." + +#~ msgid "Server role" +#~ msgstr "Tjenerrolle" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "Domenestyrere (controllers) styrer domener i NT4-stil eller Active " +#~ "Directory-domener og tilbyr tjenester som identitetsbehandling og domene-" +#~ "innlogging. Hvert domene mÃ¥ ha minst én domenestyrer." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "Medlem-tjenere kan være deler av NT4- eller Active Directory-domener, men " +#~ "tilbyr ingen domene-tjenester. Arbeidsstasjoner og fil- eller " +#~ "skrivertjenere er som regel vanlige domenemedlemmer." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "En frittstÃ¥ende tjener kan ikke brukes i et domene og støtter bare " +#~ "fildeling og innlogging som i Windows for Workgroups." + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "Hvis det ikke er oppgitt noen tjenerrolle, sÃ¥ blir ikke Samba-tjeneren " +#~ "rullet ut. Brukeren kan da gjøre det manuelt." + +#~ msgid "Realm name:" +#~ msgstr "OmrÃ¥denavn:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "Oppgi Kerberos-omrÃ¥de for domenet som denne domenestyreren styrer." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "Dette er som regel ditt DNS vertsnavn, skrevet med store bokstaver." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "Nytt passord for brukeren som er Samba «administrator»:" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "Hvis dette feltet er tomt blir det laget et vilkÃ¥rlig passord." + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "Et passord kan oppgis senere ved at root-brukeren kjører:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "Gjenta passord for brukeren som er Samba «administrator»:" + +#~ msgid "Password input error" +#~ msgstr "Feil ved inntasting av passord" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "De to passordene du skrev inn var ikke like. Prøv igjen." + +#~ msgid " $ samba-tool user setpassword administrator" +#~ msgstr " $ samba-tool user setpassword administrator" + +#~ msgid "Use password encryption?" +#~ msgstr "Bruke passord-kryptering?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Alle nyere Windows-klienter bruker krypterte passord nÃ¥r de kommuniserer " +#~ "med SMB/CIFS-tjenere. Hvis du vil bruke passord i klartekst mÃ¥ du endre " +#~ "en parameter i Windows registry pÃ¥ klientene." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Det anbefales sterkt Ã¥ slÃ¥ pÃ¥ dette for Ã¥ bruke krypterte passord fordi " +#~ "passord i klartekst ikke støttes lenger i Microsoft Windows-produkter. " +#~ "Gjør du det, sÃ¥ se etter at du har en gyldig fil i /etc/samba/smbpasswd " +#~ "og at du lagrer passord der for hver bruker med kommandoen smbpasswd." + +#~ msgid "Samba server" +#~ msgstr "Ingen Samba-tjener er installert pÃ¥ dette systemet" + +# Using same translation as in debian.edu/Skolelinux. A bit controversial. +#~ msgid "daemons" +#~ msgstr "nisser" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Hvordan vil du at Samba skal kjøres?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Samba-prosessen smbd kan kjøres som en normal nisse eller fra inetd. Det " +#~ "anbefales Ã¥ kjøre som en nisse." + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Oppgi hvilken arbeidsgruppe denne tjeneren skal vise nÃ¥r klienter spør " +#~ "den. Merk at denne parameteren ogsÃ¥ styrer domenenavnet som brukes med " +#~ "innstillingen security=domain." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Opprette samba passord-database, /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Samba mÃ¥ settes opp til Ã¥ bruke krypterte passord for Ã¥ være kompatibel " +#~ "med de fleste Windows-versjoner. Dette krever at brukerpassord mÃ¥ lagres " +#~ "i en egen fil unna /etc/passwd. Denne fila kan opprettes automatisk, men " +#~ "passordene mÃ¥ legges inn manuelt med smbpasswd og holdes oppdatert i " +#~ "fremtiden." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Hvis du ikke oppretter den, mÃ¥ du endre oppsettet pÃ¥ Samba (og trolig " +#~ "ogsÃ¥ klientmaskinene) til Ã¥ bruke klartekst-passord." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Mer detaljer finnes i fila /usr/share/doc/samba-doc/htmldocs/ENCRYPTION." +#~ "html fra pakka samba-doc." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Det er ikke støtte for Ã¥ kjede sammen passdb-motorer" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Fra og med versjon 3.0.23 støtter ikke samba lenger muligheten for Ã¥ " +#~ "koble sammen flere motorer i parameteren «passdb backend». Det ser ut til " +#~ "at fila smb.conf pÃ¥ dette systemet inneholder en passdb backend-parameter " +#~ "som bestÃ¥r av en liste over passdb -motorer. Den nye samba-versjonen vil " +#~ "ikke virke før dette er rettet." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Flytte /etc/samba/smbpasswd til /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "I Samba 3.0 ble det innført et mer utfyllende grensesnitt til SAM-" +#~ "databasen som erstatter fila /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Bekreft om du vil at den eksisterende smbpasswd-fila skal automatisk " +#~ "omgjøres til /var/lib/samba/passdb.tdb. Ikke velg dette om du har til " +#~ "hensikt Ã¥ bruke en annen pdb-motor i stedet (f.eks. LDAP)." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Mer detaljer finnes i fila /usr/share/doc/samba-doc/htmldocs/Samba3-" +#~ "Developers-Guide/pwencrypt.html fra pakka samba-doc." diff --git a/debian/po/ne.po b/debian/po/ne.po new file mode 100644 index 0000000..86e2819 --- /dev/null +++ b/debian/po/ne.po @@ -0,0 +1,236 @@ +# translation of ne.po to Nepali +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Shiva Prasad Pokharel <pokharelshiva@hotmail.com>, 2006. +# Nabin Gautam <nabin@mpp.org.np>, 2006. +# Shiva Pokharel <shiva@mpp.org.np>, 2007. +msgid "" +msgstr "" +"Project-Id-Version: ne\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2007-03-14 05:36+0545\n" +"Last-Translator: Shiva Pokharel <shiva@mpp.org.np>\n" +"Language-Team: Nepali <info@mpp.org.np>\n" +"Language: ne\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; nplural(n!=1)\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "DHCP बाट WINS सेटिङ पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨ smb.conf परिमारà¥à¤œà¤¨ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"यदि तपाईà¤à¤•à¥‹ कमà¥à¤ªà¥à¤¯à¥à¤Ÿà¤°à¤²à¥‡ सञà¥à¤œà¤¾à¤²à¤®à¤¾ DHCP सरà¥à¤à¤°à¤¬à¤¾à¤Ÿ IP ठेगाना जानकारी पà¥à¤°à¤¾à¤ªà¥à¤¤ गरà¥à¤› à¤à¤¨à¥‡, DHCP " +"सरà¥à¤à¤°à¤²à¥‡ पनि सञà¥à¤œà¤¾à¤²à¤®à¤¾ वरà¥à¤¤à¤®à¤¾à¤¨ WINS सरà¥à¤à¤° (\"NetBIOS name servers\") का बारेमा " +"जानकारी उपलबà¥à¤§ गराउन सकà¥à¤› । यसका लागि तपाईà¤à¤•à¥‹ smb.conf फाइलमा परिवरà¥à¤¤à¤¨ आवशà¥à¤¯à¤• हà¥à¤¨à¥à¤› " +"ताकी DHCP ले उपलबà¥à¤§ गराà¤à¤•à¤¾ WINS सेटिङ /var/lib/samba/dhcp.conf. बाट सà¥à¤µà¤šà¤¾à¤²à¤¿à¤¤ रà¥à¤ªà¤®à¤¾ " +"पढà¥à¤¨ सकियोसॠ।" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "यो विशेषताको फाइदा लिन dhcp-कà¥à¤²à¤¾à¤‡à¤¨à¥à¤Ÿ पà¥à¤¯à¤¾à¤•à¥‡à¤œ सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ गरिà¤à¤•à¥‹ हà¥à¤¨ परà¥à¤› ।" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "सà¥à¤µà¤šà¤¾à¤²à¤¿à¤¤ रà¥à¤ªà¤®à¤¾ smb.conf कनà¥à¤«à¤¿à¤—र गरà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤›?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"सामà¥à¤¬à¤¾à¤•à¥‹ बाà¤à¤•à¥€ कनà¥à¤«à¤¿à¤—रेसन /etc/samba/smb.conf परामितिमा पà¥à¤°à¤à¤¾à¤µ पारà¥à¤¨à¥‡ पà¥à¤°à¤¶à¥à¤¨à¤¸à¤à¤— डिल " +"गरà¥à¤›, जà¥à¤¨ सामà¥à¤¬à¤¾ कारà¥à¤¯à¤•à¥à¤°à¤® कनà¥à¤«à¤¿à¤—र गरà¥à¤¨ पà¥à¤°à¤¯à¥‹à¤— हà¥à¤¨à¥‡ फाइल हो (nmbd र smbd) । तपाईà¤à¤•à¥‹ " +"हालको smb.conf ले à¤à¤‰à¤Ÿà¤¾ 'समà¥à¤®à¤¿à¤²à¤¿à¤¤' लाइन वा बहà¥à¤à¤¾à¤—िय लाइन ढाकà¥à¤¨à¥‡ विकलà¥à¤ª समावेश गरà¥à¤›, " +"जसले सà¥à¤µà¤šà¤¾à¤²à¤¿à¤¤ कनà¥à¤«à¤¿à¤—रेसन पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ असà¥à¤¤à¤µà¥à¤¯à¤¸à¥à¤¤ पारà¥à¤¨ सकà¥à¤› र तपाईà¤à¤²à¥‡ यसबाट फेरि कारà¥à¤¯ गराउन " +"हातैले smb.conf समà¥à¤ªà¤¾à¤¦à¤¨ गरà¥à¤¨à¥ परà¥à¤› ।" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"यदि तपाईà¤à¤²à¥‡ यो विकलà¥à¤ª छनौट नगरेमा, कà¥à¤¨à¥ˆ पनि कनà¥à¤«à¤¿à¤—रेसन परिवरà¥à¤¤à¤¨ तपाईठआफैले हà¥à¤¯à¤¾à¤¨à¥à¤¡à¤² गरà¥à¤¨à¥ " +"परà¥à¤›, र आवधिक कनà¥à¤«à¤¿à¤—रेसन वृदà¥à¤§à¥€à¤•à¥‹ फाइदा लिन सकà¥à¤¨à¥ हà¥à¤¨à¥‡ छैन ।" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "कारà¥à¤¯ समूह/डोमेन नाम:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#~ msgid "Use password encryption?" +#~ msgstr "पासवरà¥à¤¡ गà¥à¤ªà¥à¤¤à¤¿à¤•à¤°à¤£ पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤› ?" + +#, fuzzy +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "हालका सबै सञà¥à¤à¥à¤¯à¤¾à¤² गà¥à¤°à¤¾à¤¹à¤• समकà¥à¤°à¤®à¤¿à¤¤ पासवरà¥à¤¡ पà¥à¤°à¤¯à¥‹à¤— गरेर SMB सरà¥à¤à¤°à¤¸à¤à¤— सञà¥à¤šà¤¾à¤° गरà¥à¤›à¤¨à¥ । " +#~ "यदि तपाईठखाली पाठपासवरà¥à¤¡ पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨ चाहनà¥à¤¹à¥à¤¨à¥à¤› à¤à¤¨à¥‡ तपाईà¤à¤•à¥‹ सञà¥à¤à¥à¤¯à¤¾à¤² दरà¥à¤¤à¤¾à¤•à¥‹ " +#~ "परामिति परिवरà¥à¤¤à¤¨ गरà¥à¤¨à¥ आवशà¥à¤¯à¤• हà¥à¤¨à¥à¤› ।" + +#, fuzzy +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "यो विकलà¥à¤ª सकà¥à¤·à¤® पारà¥à¤¨à¥‡ उतà¥à¤•à¥ƒà¤·à¥à¤Ÿ सà¥à¤µà¥€à¤•à¤¾à¤° गरिà¤à¤•à¥‹ छ । यदि तपाईठगरà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤› à¤à¤¨à¥‡, तपाईठसà¤à¤— /" +#~ "etc/samba/smbpasswd फाइल र तà¥à¤¯à¤¹à¤¾à¤ पà¥à¤°à¤¤à¥à¤¯à¥‡à¤• पà¥à¤°à¤¯à¥‹à¤—करà¥à¤¤à¤¾à¤•à¤¾ लागि सेट गरिà¤à¤•à¤¾ पासवरà¥à¤¡ " +#~ "smbpasswd आदेश पà¥à¤°à¤¯à¥‹à¤— गरेर वैदà¥à¤¯ à¤à¤à¤•à¥‹ निशà¥à¤šà¤¿à¤¨à¥à¤¤ हà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।" + +#~ msgid "daemons" +#~ msgstr "डेइमोन" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "तपाईठसामà¥à¤¬à¤¾ कसरी चलाउन चाहनà¥à¤¹à¥à¤¨à¥à¤›?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "सामà¥à¤¬à¤¾ डेइमोन समानà¥à¤¯ डेइमोनको रà¥à¤ªà¤®à¤¾ वा inetd बाट चलाउन सकिनà¥à¤› । डेइमोनको रूपमा " +#~ "चलाउनॠसिफारिस गरिà¤à¤•à¥‹ तरिका हो ।" + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "कृपया गà¥à¤°à¤¾à¤¹à¤•à¤²à¥‡ पà¥à¤°à¤¶à¥à¤¨ गरà¥à¤¦à¤¾ यो सरà¥à¤à¤° à¤à¤¿à¤¤à¥à¤° देखाउन चाहेका कारà¥à¤¯ समूह निरà¥à¤¦à¤¿à¤·à¥à¤Ÿ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ । " +#~ "याद गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ यो परामितिले पनि सà¥à¤°à¤•à¥à¤·à¤¾=डोमेन सेटिङमा पà¥à¤°à¤¯à¥‹à¤— गरिà¤à¤•à¤¾ डोमेन नाम " +#~ "नियनà¥à¤¤à¥à¤°à¤£ गरà¥à¤› ।" + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "सामà¥à¤¬à¤¾ पासवरà¥à¤¡ डाटाबेस /var/lib/samba/passdb.tdb सिरà¥à¤œà¤¨à¤¾ गरà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤› ?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "विनà¥à¤¡à¥‹à¤œà¤•à¤¾ धेरै संसà¥à¤•à¤°à¤£ पूरà¥à¤µà¤¨à¤¿à¤°à¥à¤§à¤¾à¤°à¤¿à¤¤à¤¸à¤à¤— मिलà¥à¤¨à¥‡, समकà¥à¤°à¤®à¤¿à¤¤ पासवरà¥à¤¡ पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨ सामà¥à¤¬à¤¾ " +#~ "कनà¥à¤«à¤¿à¤—र à¤à¤à¤•à¥‹ हà¥à¤¨à¥ परà¥à¤› । /etc/passwd बाट छà¥à¤Ÿà¥à¤¯à¤¾à¤à¤•à¥‹ फाइल à¤à¤£à¥à¤¡à¤¾à¤°à¤£ हà¥à¤¨ पà¥à¤°à¤¯à¥‹à¤—करà¥à¤¤à¤¾à¤•à¥‹ " +#~ "पासवरà¥à¤¡ आवशà¥à¤¯à¤• हà¥à¤¨à¥à¤› । यो फाइल सà¥à¤µà¤šà¤¾à¤²à¤¿à¤¤ तरिकाले सिरà¥à¤œà¤¨à¤¾ हà¥à¤¨ सकà¥à¤›, तर पासवरà¥à¤¡ " +#~ "smbpasswd चलाà¤à¤° हातैले थपà¥à¤¨à¥ परà¥à¤› र à¤à¤µà¤¿à¤·à¥à¤¯à¤®à¤¾ पनि अदà¥à¤¯à¤¾à¤µà¤§à¤¿à¤• राखà¥à¤¨à¥ परà¥à¤› ।" + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "यदि तपाईà¤à¤²à¥‡ यसलाई सिरà¥à¤œà¤¨à¤¾ गरà¥à¤¨à¥ à¤à¤à¤•à¥‹ छैन à¤à¤¨à¥‡, तपाईà¤à¤²à¥‡ पà¥à¤²à¥‡à¤¨à¤Ÿà¥‡à¤•à¥à¤¸à¥à¤Ÿ पासवरà¥à¤¡ पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨ " +#~ "सामà¥à¤¬à¤¾ (र समà¥à¤à¤µà¤¤ तपाईà¤à¤•à¥‹ गà¥à¤°à¤¾à¤¹à¤•à¤•à¥‹ मेसिन) पà¥à¤¨: कनà¥à¤«à¤¿à¤—र गरेको हà¥à¤¨à¥ परà¥à¤› ।" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "अधिक जानकारीका लागि /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html " +#~ "बाट samba-doc पà¥à¤¯à¤¾à¤•à¥‡à¤œ हेरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।" + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "passdb बà¥à¤¯à¤¾à¤•à¥‡à¤¨à¥à¤¡ चेन गरà¥à¤¨à¥‡à¤•à¤¾ लागि समरà¥à¤¥à¤¨ छैन " + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "सà¤à¤¸à¥à¤•à¤°à¤£ 3.0.23 सà¤à¤— सà¥à¤°à¥ गरà¥à¤¦à¤¾ सामà¥à¤¬à¤¾à¤²à¥‡ \"passdb backend\" परामितिमा यो à¤à¤¨à¥à¤¦à¤¾ बढि " +#~ "बहà¥à¤µà¤¿à¤§ बà¥à¤¯à¤¾à¤•à¥‡à¤¨à¥à¤¡ समरà¥à¤¥à¤¨ गरà¥à¤¦à¥ˆà¤¨ । सायद तपाईà¤à¤•à¥‹ smb.conf फाइलमा बà¥à¤¯à¤¾à¤•à¥‡à¤¨à¥à¤¡à¤¹à¤°à¥‚को सूची à¤à¤à¤•à¥‹ " +#~ "à¤à¤‰à¤Ÿà¤¾ passdb बà¥à¤¯à¤¾à¤•à¥‡à¤¨à¥à¤¡ à¤à¤à¤•à¥‹ हà¥à¤¨à¥à¤ªà¤°à¥à¤¦à¤› । तपाईà¤à¤²à¥‡ यसलाई नसचà¥à¤¯à¤¾à¤‰à¤¨à¥ à¤à¤à¤¸à¤®à¥à¤® सामà¥à¤¬à¤¾à¤•à¥‹ नयाठ" +#~ "संसà¥à¤•à¤°à¤£à¤²à¥‡ काम गरà¥à¤¦à¥ˆà¤¨ ।" + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "/etc/samba/smbpasswd लाई /var/lib/samba/passdb.tdb मा सारà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤› ?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "सामà¥à¤¬à¤¾ ३.० ले /etc/samba/smbpasswd फाइल हटाउने अà¤à¥ˆ बढी पूरà¥à¤£ SAM डाटाबेस इनà¥à¤Ÿà¤°à¤«à¥‡à¤¸ " +#~ "सारà¥à¤µà¤œà¤¨à¤¿à¤• गरेको छ ।" + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "कृपया तपाइà¤à¤²à¥‡ सà¥à¤µà¤šà¤¾à¤²à¤¿à¤¤ रà¥à¤ªà¤²à¥‡ /var/lib/samba/passdb.tdb मा सरà¥à¤¨à¥‡ अवसà¥à¤¥à¤¿à¤¤ smbpasswd " +#~ "फाइल चाहनà¥à¤¹à¥à¤¨à¥à¤› à¤à¤¨à¥‡ यकीन गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ । यदि तपाईठसाटोमा अरà¥à¤•à¥‹ pdb backend (जसà¥à¤¤à¥ˆ: " +#~ "LDAP) पà¥à¤°à¤¯à¥‹à¤— गरà¥à¤¨à¥‡ योजना बनाउनà¥à¤¹à¥à¤¨à¥à¤› à¤à¤¨à¥‡ यो विकलà¥à¤ª नरोजà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "अधिक जानकारीका लागि /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-" +#~ "Guide/pwencrypt.html बाट samba-doc पà¥à¤¯à¤¾à¤•à¥‡à¤œ हेरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ ।" diff --git a/debian/po/nl.po b/debian/po/nl.po new file mode 100644 index 0000000..0251ab1 --- /dev/null +++ b/debian/po/nl.po @@ -0,0 +1,200 @@ +# Dutch translation of samba4 debconf templates. +# Copyright (C) 2007-2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the samba4 package. +# +# Bart Cornelis <cobaco@skolelinux.no>, 2007. +# Jeroen Schot <schot@a-eskwadraat.nl>, 2012. +# Frans Spiesschaert <Frans.Spiesschaert@yucom.be>, 2014. +msgid "" +msgstr "" +"Project-Id-Version: samba4 4.0.0~alpha17.dfsg2-1\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2014-09-19 14:35+0200\n" +"Last-Translator: Frans Spiesschaert <Frans.Spiesschaert@yucom.be>\n" +"Language-Team: Debian l10n Dutch <debian-l10n-dutch@lists.debian.org>\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 1.4\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Samba-server en hulpprogramma's" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "smb.conf aanpassen om de WINS instellingen van DHCP te gebruiken?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Indien uw computer zijn IP-adresinformatie van een DHCP-server op het " +"netwerk haalt, voorziet deze mogelijk ook in informatie betreffende de op " +"het netwerk aanwezige WINS-servers (\"NetBIOS naamservers\"). In dat geval " +"is een wijziging aan het smb.conf bestand nodig, opdat de door DHCP " +"doorgegeven WINS instellingen automatisch gelezen zouden worden van /var/" +"lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Het pakket dhcp-client moet geïnstalleerd zijn om van deze functionaliteit " +"gebruik te kunnen maken." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "smb.conf automatisch instellen?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"De resterende Samba-configuratievragen hebben betrekking op parameters in /" +"etc/samba/smb.conf, het configuratiebestand dat gebruikt wordt voor de Samba-" +"programma's (nmbd en smbd). Uw huidige smb.conf bevat een \"include\"-regel " +"of een optie die meerdere regels beslaat. Het kan zijn dat dit het " +"automatische configuratieproces verstoort. In dat geval dient u uw smb.conf " +"handmatig aan te passen om samba terug werkend te krijgen." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Indien u geen gebruik maakt van deze optie, dient u alle configuratie-" +"instellingen zelf te doen, en zult u geen voordeel halen uit de periodieke " +"configuratie-verbeteringen." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Werkgroep/Domeinnaam:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Tot welke werkgroep behoort dit systeem? Deze instelling bepaalt ook de " +"werkgroep waarin dit systeem zal verschijnen wanneer het als server wordt " +"gebruikt, de standaard werkgroep die gebruikt wordt bij het verkennen met de " +"diverse interfaces, en de domeinnaam die wordt gebruikt voor de instelling " +"\"security=domain\"." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Opwaarderen vanaf Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "Het is mogelijk om de bestaande configuratiebestanden van Samba 3 te " +#~ "migreren naar Samba 4. Dit zal waarschijnlijk mislukken bij ingewikkelde " +#~ "opstellingen, maar geeft een goed uitgangspunt voor de meeste bestaande " +#~ "installaties." + +#~ msgid "Server role" +#~ msgstr "Server-rol" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "Domeincontrollers (dc) beheren NT4-stijl of Active Directory-domeinen en " +#~ "bieden diensten aan zoals identiteitsmanagement en domeinaanmeldingen. " +#~ "Ieder domein heeft ten minste één domeincontroller nodig." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "Lidservers (member) zijn onderdeel van een NT4-stijl of Active Directory-" +#~ "domein, maar bieden geen domeindiensten aan. Werkstations en bestands- of " +#~ "printerservers zijn meestal normale domeinleden." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "Een zelfstandige server (standalone) kan niet in een domein worden " +#~ "gebruikt en ondersteunt alleen bestandsdeling en Windows-voor-werkgroepen-" +#~ "stijl aanmelding." + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "Indien geen server-rol gedefinieerd werd, zal geen Samba-server voorzien " +#~ "worden, zodat de gebruiker dit handmatig kan doen." + +#~ msgid "Realm name:" +#~ msgstr "Identiteitsgebied (Realm-name):" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "Wat is het Kerberos-realm voor het door deze domeincontroller beheerde " +#~ "domein?" + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "Meestal is dit uw DNS computernaam (hostname) in hoofdletters." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "Nieuw wachtwoord voor de Samba 'administrator' gebruiker:" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "" +#~ "Als u dit veld leeg laat, wordt een willekeurig wachtwoord aangemaakt." + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "" +#~ "U kunt het wachtwoord later instellen door als root de volgende opdracht " +#~ "te geven:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "Herhaal het wachtwoord voor de Samba 'administrator' gebruiker:" + +#~ msgid "Password input error" +#~ msgstr "Fout bij het invoeren van het wachtwoord" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "" +#~ "De twee wachtwoorden die u invoerde waren niet identiek. Probeer opnieuw." diff --git a/debian/po/nn.po b/debian/po/nn.po new file mode 100644 index 0000000..749cd6c --- /dev/null +++ b/debian/po/nn.po @@ -0,0 +1,230 @@ +# translation of samba_nn.po to Norwegian nynorsk +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# HÃ¥vard Korsvoll <korsvoll@gmail.com>, 2007. +msgid "" +msgstr "" +"Project-Id-Version: samba_nn\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2007-03-17 18:35+0100\n" +"Last-Translator: HÃ¥vard Korsvoll <korsvoll@gmail.com>\n" +"Language-Team: Norwegian nynorsk <i18n-nn@lister.ping.uio.no>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Vil du endre smd.conf til Ã¥ bruke WINS-innstillingar frÃ¥ DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Viss maskina di fÃ¥r IP-adresseinformasjon frÃ¥ ein DHCP-tenar pÃ¥ nettverket, " +"kan DHCP-tenaren ogsÃ¥ gje informasjon om WINS-tenarar («NetBIOS " +"namnetenarar») som er tilstade pÃ¥ nettverket. Dette krev ei endring i smb." +"conf-fila slik at WINS-innstillingar som DHCP-tenaren oppgjev automatisk " +"vert lest frÃ¥ /var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "Pakka dhcp-client mÃ¥ vere installert for Ã¥ ta i bruk dette." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Setje opp smb.conf automatisk?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Resten av oppsettet av Samba er spørsmÃ¥l som handlar om parametrar i /etc/" +"samba/smb.conf, som er fila som blir brukt til Ã¥ setje opp Sambaprogram " +"(nmbd og smbd). Den noverande smb.conf-fila inneheld ei «include»-linje " +"eller ein opsjon som gÃ¥r over fleire linjer, noko som kan forvirre den " +"automatiske oppsettsprosessen og gjer at du mÃ¥ redigere smb.conf-fila " +"manuelt for Ã¥ fÃ¥ det til Ã¥ fungere igjen." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Viss du ikkje vel dette, sÃ¥ vil du mÃ¥tte handtere endringar i oppsettet " +"sjølv, og du vil ikkje vere i stand til Ã¥ ta imot periodiske forbetringar i " +"oppsettet." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Arbeidsgruppe/Domenenamn:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#~ msgid "Use password encryption?" +#~ msgstr "Bruke krypterte passord?" + +#, fuzzy +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Alle nyare Windows-klientar kommuniserer med SMB-tenarar ved hjelp av " +#~ "krypterte passord. Viss du vil bruke klartekstpassord, mÃ¥ du endre ein " +#~ "parameter i Windows-registeret." + +#, fuzzy +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Det er sterkt tilrÃ¥dd at du slÃ¥r pÃ¥ dette valet. Viss du gjer det, mÃ¥ du " +#~ "sjÃ¥ etter at du har ei gyldig /etc/samba/smbpasswd-fil, og du set inn " +#~ "passord der for kvar brukar ved hjelp av kommandoen «smbpasswd»." + +#~ msgid "daemons" +#~ msgstr "tenester" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Korleis vil du køyre Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Samba-tenesta smbd kan køyrast som ei normal teneste frÃ¥ inetd. Ã… køyre " +#~ "som ei teneste er den tilrÃ¥dde mÃ¥ten." + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Oppgje den arbeidsgruppa (workgroup) som du vil at denne tenaren skal " +#~ "vere i nÃ¥r han blir spurd av klientar. Merk at denne parameteren ogsÃ¥ " +#~ "kontrollerer domenenamnet som er brukt med instillinga security=domain." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Opprette samba passorddatabase, /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "For Ã¥ vere kompatibel med standard i dei fleste versjonar av Windows, mÃ¥ " +#~ "Samba bli sett opp til Ã¥ bruke krypterte passord. Dette krev at " +#~ "brukarpassord mÃ¥ lagrast i ei anna fil enn /etc/passwd. Denne fila kan " +#~ "lagast automatisk, men passorda mÃ¥ leggjast til manuelt ved Ã¥ køyre " +#~ "smbpasswd og haldast oppdatert i framtida." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Viss du ikkje lagar ho, mÃ¥ du endre oppsettet av Samba (og truleg " +#~ "klientmaskinene ogsÃ¥) til Ã¥ bruke klartekstpassord." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "SjÃ¥ /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html frÃ¥ pakken samba-" +#~ "doc for fleire detaljar." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Lenkjing av passdb-motorar er ikkje støtta" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "FrÃ¥ og med versjon 3.0.23 støttar ikkje samba lenkjing av motorar i " +#~ "«passdb backend»-parameteren lenger. Det ser ut til at smb.conf-fila di " +#~ "inneheld ein «passdb backend»-parameter som bestÃ¥r av ei liste med " +#~ "motorar. Den nye versjonen av samba vil ikkje fungere før du rettar opp " +#~ "dette." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Flytte /etc/samba/smbpasswd til /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 introduserte eit meir komplett SAM-databasegrensesnitt som " +#~ "erstattar /etc/samba/smbpasswd-fila." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Stadfest om du vil at den eksisterande smbpasswd-fila automatisk skal " +#~ "migrerast inn i /var/lib/samba/passdb.tdb. Ikkje vel dette viss du " +#~ "planlegg Ã¥ bruke ein anna pdb-motor (t.d. LDAP) i staden." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "SjÃ¥ /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html frÃ¥ pakken samba-doc for fleire detaljar." diff --git a/debian/po/pl.po b/debian/po/pl.po new file mode 100644 index 0000000..5066fb0 --- /dev/null +++ b/debian/po/pl.po @@ -0,0 +1,275 @@ +# Translation of samba4 debconf templates to Polish. +# Copyright (C) 2011 +# This file is distributed under the same license as the samba4 package. +# +# MichaÅ‚ KuÅ‚ach <michal.kulach@gmail.com>, 2012, 2013. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2013-10-24 23:05+0200\n" +"Last-Translator: MichaÅ‚ KuÅ‚ach <michal.kulach@gmail.com>\n" +"Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.4\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Serwer i narzÄ™dzia Samba" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Czy zmienić smb.conf tak, by używaÅ‚ ustawieÅ„ WINS z DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Jeżeli ten komputer pobiera informacje o adresie IP z serwera DHCP przez " +"sieć, serwer DHCP może również dostarczać informacji na temat serwerów WINS " +"(\"serwerów nazw NetBIOS\") obecnych w sieci. Wymaga to zmiany w pliku smb." +"conf, aby dostarczone przez DHCP ustawienia WINS byÅ‚y automatycznie " +"odczytywane z /var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Aby móc skorzystać z tej funkcjonalnoÅ›ci, musi być zainstalowany pakiet dhcp-" +"client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Czy automatycznie skonfigurować smb.conf?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"PozostaÅ‚a część konfiguracji Samby zwiÄ…zana jest z pytaniami wpÅ‚ywajÄ…cymi na " +"parametry w /etc/samba/smb.conf, który jest plikiem używanym do konfiguracji " +"programów Samby (nmbd i smbd). Obecny smb.conf zawiera wiersz \"include\", " +"bÄ…dź opcjÄ™ obejmujÄ…cÄ… wiele wierszy, co może przeszkodzić procesowi " +"zautomatyzowanej konfiguracji i wymagać od użytkownika rÄ™cznej edycji pliku " +"smb.conf, by mógÅ‚ znowu być używany." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Jeżeli ta opcja nie zostanie wybrana, konieczne bÄ™dzie samodzielnie " +"zajmowanie siÄ™ przez użytkownika wszelkimi zmianami konfiguracji i nie " +"bÄ™dzie można korzystać z okresowych jej ulepszeÅ„." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Nazwa grupy roboczej/domeny:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"ProszÄ™ okreÅ›lić grupÄ™ roboczÄ… systemu. To ustawienie okreÅ›la grupÄ™ roboczÄ…, " +"w której pojawi siÄ™ system, jeÅ›li bÄ™dzie użyty w roli serwera; domyÅ›lnÄ… " +"grupÄ™ roboczÄ…, która bÄ™dzie użyta podczas przeglÄ…dania z poziomu różnych " +"interfejsów oraz nazwÄ™ domeny używanÄ… w ustawieniu \"security=domain\"." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Zaktualizować z Samby 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "Można przenieść istniejÄ…ce pliki konfiguracyjne z Samby 3 do Samby 4. " +#~ "Istnieje duże prawdopodobieÅ„stwo, że nie powiedzie siÄ™ to w przypadku " +#~ "skomplikowanej konfiguracji, ale powinno zapewnić dobry poczÄ…tek dla " +#~ "wiÄ™kszoÅ›ci istniejÄ…cych instalacji." + +#~ msgid "Server role" +#~ msgstr "Rola serwera" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "Kontrolery domen zarzÄ…dzajÄ… domenami w stylu NT4 lub Active Directory i " +#~ "udostÄ™pniajÄ… usÅ‚ugi takie jak zarzÄ…dzanie tożsamoÅ›ciÄ… i domeny logowania. " +#~ "Każda domena musi mieć przynajmniej jeden kontroler domeny." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "Serwery czÅ‚onkowskie mogÄ… być częściÄ… domeny w stylu NT4 lub Active " +#~ "Directory, ale nie zapewniajÄ… żadnych usÅ‚ug domenowych. Stacje robocze i " +#~ "serwery plików lub druku sÄ… z reguÅ‚y zwykÅ‚ymi czÅ‚onkami domeny." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "Samodzielny serwer nie może być używany w domenie i obsÅ‚uguje wyÅ‚Ä…cznie " +#~ "dzielenie siÄ™ plikami oraz loginy w stylu Windows for Workgroups." + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "JeÅ›li rola serwera nie zostanie okreÅ›lona, to serwer Samby nie zostanie " +#~ "wÅ‚aÅ›ciwie przygotowany - może to zostać wykonane rÄ™cznie przez " +#~ "użytkownika," + +#~ msgid "Realm name:" +#~ msgstr "Nazwa dziedziny:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "ProszÄ™ podać dziedzinÄ™ Kerberos (ang. realm) do domeny którÄ… kontroluje " +#~ "ten kontroler domen." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "Z reguÅ‚y jest to pisana dużymi literami nazwa DNS komputera." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "Nowe hasÅ‚o dla użytkownika \"administrator\" Samby:" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "" +#~ "JeÅ›li to pole pozostanie puste, to zostanie wygenerowane losowe hasÅ‚o." + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "HasÅ‚o można ustawić później, wykonujÄ…c jako root:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "" +#~ "ProszÄ™ wprowadzić hasÅ‚o użytkownika \"administrator\" Samby ponownie:" + +#~ msgid "Password input error" +#~ msgstr "BÅ‚Ä…d wprowadzania hasÅ‚a" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "Wprowadzone hasÅ‚a nie sÄ… identyczne. ProszÄ™ spróbować ponownie." + +#~ msgid " $ samba-tool user setpassword administrator" +#~ msgstr " $ samba-tool user setpassword administrator" + +#~ msgid "Use password encryption?" +#~ msgstr "Czy używać szyfrowania haseÅ‚?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Wszystkie współczesne klienty Windows komunikujÄ… siÄ™ z serwerami SMB/CIFS " +#~ "używajÄ…c zaszyfrowanych haseÅ‚. Aby używać haseÅ‚ w postaci otwartego " +#~ "tekstu, konieczna bÄ™dzie zmiana odpowiedniego parametru w rejestrze " +#~ "Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "WÅ‚Ä…czenie tej opcji jest wysoce zalecane, ponieważ obsÅ‚uga haseÅ‚ w " +#~ "otwartym tekÅ›cie nie jest dÅ‚użej zapewniana przez systemy Microsoft " +#~ "Windows. W takim przypadku należy upewnić siÄ™, że plik /etc/samba/" +#~ "smbpasswd jest poprawny i że zostanÄ… w nim ustawione hasÅ‚a dla każdego " +#~ "użytkownika korzystajÄ…cego z polecenia smbpasswd." + +#~ msgid "Samba server" +#~ msgstr "Serwer Samba" + +#~ msgid "daemons" +#~ msgstr "demon" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "W jaki sposób Samba ma być uruchamiana?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Demon Samby smbd może dziaÅ‚ać jako zwykÅ‚y demon, albo z poziomu inetd. " +#~ "Zalecane jest uruchomienie demona." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Utworzyć bazÄ™ haseÅ‚ samby, /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Aby zachować zgodność z domyÅ›lnymi ustawieniami wiÄ™kszoÅ›ci wersji " +#~ "Windows, Samba musi korzystać z szyfrowanych haseÅ‚. W zwiÄ…zku z tym, " +#~ "hasÅ‚a użytkowników muszÄ… być przechowywane w innym pliku niż /etc/passwd. " +#~ "Ten plik może zostać utworzony automatycznie, ale hasÅ‚a muszÄ… być " +#~ "dodawane rÄ™cznie za pomocÄ… polecenia smbpasswd, a w przyszÅ‚oÅ›ci na " +#~ "bieżąco uaktualniane." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Jeżeli plik nie zostanie utworzony, konieczne bÄ™dzie przekonfigurowanie " +#~ "Samby (i prawdopodobnie komputerów klienckich) do używania haseÅ‚ w " +#~ "postaci otwartego tekstu." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "ProszÄ™ zapoznać siÄ™ z plikiem /usr/share/doc/samba-doc/htmldocs/Samba3-" +#~ "Developers-Guide/pwencrypt.html z pakietu samba-doc, aby poznać wiÄ™cej " +#~ "szczegółów." diff --git a/debian/po/pt.po b/debian/po/pt.po new file mode 100644 index 0000000..e8f1df7 --- /dev/null +++ b/debian/po/pt.po @@ -0,0 +1,344 @@ +# Portuguese translation for samba4's debconf messages +# This file is distributed under the same license as the samba4 package. +# +# Miguel Figueiredo <elmig@debianpt.org>, 2004-2011. +# Rui Branco - DebianPT <ruipb@debianpt.org>, 2017. +msgid "" +msgstr "" +"Project-Id-Version: samba 2-4.5.8+dfsg-2\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2017-06-04 14:58+0000\n" +"Last-Translator: Rui Branco - DebianPT <ruipb@debianpt.org>\n" +"Language-Team: Portuguese <traduz@debianpt.org>\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Servidor e utilitários Samba" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"Modificar o smb.conf para utilizar definições de WINS a partir de DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Se o seu computador obtém a informação do endereço IP a partir de um " +"servidor de DHCP na rede, o servidor de DHCP pode também fornecer informação " +"acerca de servidores de WINS (\"servidor de nomes NetBIOS\") presentes na " +"rede. Isto requer uma alteração no seu ficheiro smb.conf de modo que as " +"definições de WINS fornecidas por DHCP sejam automaticamente lidas a partir " +"de /var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Para tirar partido desta funcionalidade tem de ter instalado o pacote dhcp-" +"client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Configurar automaticamente o smb.conf?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"O resto da configuração do Samba trata de questões que afectam parâmetros " +"em /etc/samba/smb.conf, que é o ficheiro utilizado para configurar os " +"programas do Samba (nmbd e smbd). O seu actual smb.conf contém uma linha " +"\"include\" ou uma opção que se espalha por várias linhas, a qual pode " +"confundir o processo de configuração automática e necessitar que você edite " +"à mão o smb.conf para o ter novamente operacional." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Se não escolher esta opção, terá de lidar você mesmo com quaisquer " +"alterações de configuração, e não poderá tirar partido de melhorias " +"periódicas da configuração." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Nome do Grupo de trabalho/DomÃnio:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Por favor especifique o grupo de trabalho para este sistema. Esta " +"configuração controla qual o grupo de trabalho que irá aparecer quando for " +"utilizado como servidor, o grupo de trabalho predefinido a ser utilizado ao " +"navegar com vários frontends, e o nome de domÃnio utilizado com a " +"configuração \"security=domain\"." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Actualizar a partir do Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "É possÃvel migrar os ficheiros de configuração existentes do Samba 3 para " +#~ "Samba 4. É provável que falhe para configurações complexas, mas deve " +#~ "disponibilizar um bom ponto de partida para a maioria das instalações " +#~ "existentes." + +#~ msgid "Server role" +#~ msgstr "Papel do servidor" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "Os controladores de domÃnio gerem domÃnios estilo-NT4 ou Active Directory " +#~ "e disponibilizam serviços tais como a gestão de identidades e " +#~ "identificação em domÃnio. Cada domÃnio tem de ter pelo menos um " +#~ "controlador de domÃnio." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "Os servidores membros podem fazer parte de um domÃnio estilo-NT4 ou " +#~ "Active Directory mas não disponibilizam quaisquer serviços de domÃnio. " +#~ "Estações de trabalho, servidores de ficheiros ou de impressão são " +#~ "normalmente membros de domÃnio." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "Um servidor independente não pode ser utilizado num domÃnio e apenas " +#~ "suporta partilha de ficheiros e logins do tipo Windows for Workgroups." + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "Se não for especificado nenhum papel para o servidor, o servidor Samba " +#~ "não será provisionado e assim poderá ser feito manualmente pelo " +#~ "utilizador." + +#~ msgid "Realm name:" +#~ msgstr "Nome do reino:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "Por favor especifique o reino Kerberos para o domÃnio que este " +#~ "controlador de domÃnio controla." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "" +#~ "Normalmente isto é a versão em maiúsculas do seu nome de máquina de DNS." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "Nova palavra-chave para o utilizador \"administrator\" Samba:" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "Se for deixado em branco, será gerada uma palavra-chave aleatória." + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "A palavra-chave pode ser definida mais tarde usando como root:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "Repita a palavra-chave para o utilizador \"administrator\" Samba:" + +#~ msgid "Password input error" +#~ msgstr "Erro na introdução da palavra-chave" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "" +#~ "As duas palavras-chave que introduziu não coincidem. Por favor tente " +#~ "novamente." + +#~ msgid "Use password encryption?" +#~ msgstr "Utilizar encriptação de passwords?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Todos os clientes Windows recentes comunicam com servidores SMB/CIFS " +#~ "utilizando palavras-passe encriptadas. Se deseja utilizar palavras-passe " +#~ "de texto visÃvel irá ter de alterar um parâmetro no registo do seu " +#~ "Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "É altamente recomendado que escolha esta opção porque o suporte para " +#~ "palavras-passe com texto visÃvel já não é mantido nos produtos Microsoft " +#~ "Windows. Se o fizer, assegure-se que tem um ficheiro /etc/samba/smbpasswd " +#~ "válido e que define as palavras-passe para cada utilizador utilizando o " +#~ "comando smbpasswd." + +#~ msgid "Samba server" +#~ msgstr "Servidor Samba" + +#~ msgid "daemons" +#~ msgstr "daemons" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Como deseja correr o Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "O daemon de Samba smbd pode correr como um daemon normal ou a partir de " +#~ "inetd. Executá-lo como um daemon é a aproximação recomendada." + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "Configurar o Samba 4 como um PDC?" + +#~ msgid "" +#~ "Even when using this option, you will need to set up DNS such that it " +#~ "serves the data from the zone file in that directory before you can use " +#~ "the Active Directory domain." +#~ msgstr "" +#~ "Mesmo ao utilizar esta opção, você terá de configurar o DNS de tal forma " +#~ "que sirva os dados do ficheiro de zona nesse directório antes de poder " +#~ "utilizar o domÃnio de 'Active Directory'." + +#~ msgid "" +#~ "Please specify the Kerberos realm this server will be in. In many cases, " +#~ "this will be the same as the DNS domain name." +#~ msgstr "" +#~ "Por favor especifique o reino Kerberos onde este servidor irá estar. Em " +#~ "muitos casos, este será o mesmo do que o nome de domÃnio DNS." + +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Por favor especifique o domÃnio em que quer que este servidor apareça " +#~ "quando for questionado pelos clientes." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Criar base de dados de passwords samba, /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Para ser compatÃvel com as omissões na maioria das versões do Windows, o " +#~ "Samba tem de ser configurado para utilizar passwords encriptadas. Isto " +#~ "faz com que as passwords dos utilizadores sejam guardadas noutro ficheiro " +#~ "separado do /etc/passwd. Este ficheiro pode ser criado automaticamente, " +#~ "mas as passwords têm de ser manualmente adicionadas correndo o smbpasswd " +#~ "e mantidas actualizadas no futuro." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Se não o criar, terá de reconfigurar o samba (e provavelmente as suas " +#~ "máquinas clientes) para utilizar passwords de texto puro." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Para mais detalhes veja /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html " +#~ "do pacote samba-doc." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Não é suportado carregar backends passdb" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "A partir da versão 3.0.23, o samba deixou de suportar carregar vários " +#~ "backends no parâmentro \"passdb_backend\". Parece que o seu ficheiro smb." +#~ "conf contém um pârametro passdb backend que consiste numa lista de " +#~ "backends. A nova versão do Samba não irá funcionar até você corrigir " +#~ "isto." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Mover /etc/samba/smbpasswd para /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "O Samba 3.0 introduziu um interface mais completo da base de dados SAM " +#~ "que sucede ao ficheiro /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Por favor confirme se quer que o ficheiro existente smbpasswd seja " +#~ "automaticamente migrado para /var/lib/samba/passdb.tdb. Não escolha esta " +#~ "opção se em vez disso planeia utilizar outro backend pdb (e.g., LDAP)." + +#~ msgid "daemons, inetd" +#~ msgstr "daemons, inetd" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Para mais detalhes veja /usr/share/doc/samba-doc/htmldocs/Samba3-" +#~ "Developers-Guide/pwencrypt.html do pacote samba-doc." diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po new file mode 100644 index 0000000..baf06bd --- /dev/null +++ b/debian/po/pt_BR.po @@ -0,0 +1,330 @@ +# Debconf translations for samba. +# Copyright (C) 2014 THE samba'S COPYRIGHT HOLDER +# This file is distributed under the same license as the samba package. +# André LuÃs Lopes <andrelop@debian.org>, 2007. +# Adriano Rafael Gomes <adrianorg@arg.eti.br>, 2012-2014. +# +msgid "" +msgstr "" +"Project-Id-Version: samba 2:4.1.9+dfsg-1\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2014-06-25 17:58-0300\n" +"Last-Translator: Adriano Rafael Gomes <adrianorg@arg.eti.br>\n" +"Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian." +"org>\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Servidor Samba e utilitários" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Modificar smb.conf para usar configurações WINS fornecidas via DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Caso seu computador obtenha as informações de endereçamento IP de um " +"servidor DHCP na rede, o servidor DHCP poderá também fornecer informações " +"sobre servidores WINS (\"servidores de nomes NetBIOS\") presentes na rede. " +"Isso requer uma alteração no seu arquivo smb.conf, assim as configurações " +"WINS fornecidas via DHCP serão automaticamente lidas de /var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"O pacote dhcp-client deve estar instalado para que esse recurso possa ser " +"utilizado." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Configurar smb.conf automaticamente?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"O restante da configuração do Samba lida com questões que afetam parâmetros " +"no arquivo /etc/samba/smb.conf, que é o arquivo usado para configurar os " +"programas Samba (nmbd e smbd). Seu arquivo smb.conf atual contém uma linha " +"\"include\" ou uma opção que ocupa diversas linhas, o que pode confundir o " +"processo de configuração automatizado e requerer que você edite seu arquivo " +"smb.conf manualmente para torná-lo funcional novamente." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Caso você não escolha essa opção, você precisará lidar com quaisquer " +"mudanças de configuração manualmente e você não poderá aproveitar os " +"melhoramentos periódicos de configuração." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Grupo de Trabalho/Nome de DomÃnio:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Por favor, especifique o grupo de trabalho para este sistema. Esta " +"configuração controla em qual grupo de trabalho o sistema aparecerá quando " +"usado como um servidor, qual o grupo de trabalho padrão a ser usado ao " +"navegar usando vários \"frontends\", e qual o nome de domÃnio usado com a " +"configuração \"security=domain\"." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Atualizar a partir do Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "É possÃvel migrar os arquivos de configuração existentes a partir do " +#~ "Samba 3 para o Samba 4. Isso provavelmente falhará para configurações " +#~ "complexas, mas pode fornecer um bom ponto de partida para a maioria das " +#~ "instalações existentes." + +#~ msgid "Server role" +#~ msgstr "Papel do servidor" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "Controladores de domÃnio gerenciam domÃnios no estilo NT4 ou Active " +#~ "Directory e fornecem serviços como gerenciamento de identidade e logons " +#~ "de domÃnio. Cada domÃnio precisa ter pelo menos um controlador de domÃnio." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "Servidores membro podem ser parte de um domÃnio no estilo NT4 ou Active " +#~ "Directory, mas não fornecem nenhum serviço de domÃnio. Estações de " +#~ "trabalho e servidores de arquivo ou de impressão geralmente são membros " +#~ "regulares de domÃnio." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "Um servidor autônomo não pode ser usado em um domÃnio e somente suporta " +#~ "compartilhamento de arquivos e logins no estilo Windows for Workgroups." + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "Se nenhum papel de servidor for especificado, o servidor Samba não será " +#~ "provisionado, assim isso poderá ser feito manualmente pelo usuário." + +#~ msgid "Realm name:" +#~ msgstr "Nome do domÃnio:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "Por favor, especifique o domÃnio Kerberos para o domÃnio que esse " +#~ "controlador de domÃnio controla." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "" +#~ "Geralmente, isso é uma versão em letras maiúsculas do seu nome de máquina " +#~ "DNS." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "Nova senha para o usuário \"administrator\" do Samba:" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "" +#~ "Se esse campo for deixado em branco, uma senha aleatória será gerada." + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "Uma senha pode ser definida mais tarde, executando, como root:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "Repita a senha para o usuário \"administrator\" do Samba:" + +#~ msgid "Password input error" +#~ msgstr "Erro na informação da senha" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "" +#~ "As duas senhas que você informou não foram as mesmas. Por favor, tente " +#~ "novamente." + +#~ msgid "Use password encryption?" +#~ msgstr "Usar senhas criptografadas ?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Todos os clientes Windows atuais comunicam-se com servidores SMB/CIFS " +#~ "usando senhas criptografadas. Caso você queira usar senhas em texto puro, " +#~ "você precisará modificar um parâmetro no registro do seu Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Habilitar esta opção é altamente recomendado pois o suporte a senhas em " +#~ "texto puro não é mais mantido nos produtos Microsoft Windows. Caso você o " +#~ "faça, certifique-se de possuir um arquivo /etc/samba/smbpasswd válido e " +#~ "que você tenha definido senhas no mesmo para cada usuário usando o " +#~ "comando smbpasswd." + +#~ msgid "Samba server" +#~ msgstr "Servidor Samba" + +#~ msgid "daemons" +#~ msgstr "daemons" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Como você deseja que o Samba seja executado ?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "O serviço Samba smbd pode ser executado como daemon normal ou a partir do " +#~ "inetd. Executá-lo como daemon é o método recomendado." + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Por favor, especifique o grupo de trabalho no qual quer que este servidor " +#~ "pareça estar quando questionado por clientes. Note que este parâmetro " +#~ "também controla o nome de DomÃnio usado com a configuração " +#~ "security=domain." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Gerar a base de dados para senhas /var/lib/samba/passdb.tdb ?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Para ser compatÃvel com os padrões na maioria das versões do Windows, o " +#~ "Samba deve ser configurado para utilizar senhas encriptadas. Isto requer " +#~ "que as senhas dos usuários sejam armazenadas em um arquivo diferente do " +#~ "arquivo /etc/passwd. Esse arquivo pode ser criado automaticamente, mas as " +#~ "senhas devem ser definidas manualmente através da execução do utilitário " +#~ "smbpasswd e devem ser mantidas atualizadas no futuro." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Caso você não o crie, você terá que reconfigurar o samba (e provavelmente " +#~ "suas máquinas clientes) para utilização de senhas em texto puro." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Consulte o arquivo /usr/share/doc/samba-doc/htmldos/ENCRYPTION.html, " +#~ "fornecido pelo pacote samba-doc, para conhecer maiores detalhes." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Múltiplos backends passdb não são suportados" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Desde a versão 3.0.23, o Samba não mais suporta múltiplos backends como " +#~ "valor para o parâmetro \"passdb backend\". Parece que seu arquivo smb." +#~ "conf possui um parâmetro passdb backend que consiste de uma lista de " +#~ "backends. A nova versão do Samba não funcionará até que você corrija isso." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Mover /etc/samba/smbpasswd para /var/lib/samba/passdb.tdb ?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "O Samba 3.0 introduziu uma interface mais completa com a base de dados " +#~ "SAM, a qual substitui o arquivo /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Por favor, confirme se você gostaria que o arquivo smbpasswd existente " +#~ "fosse migrado automaticamente para /var/lib/samba/passdb.tdb. Não aceite " +#~ "essa opção caso você planeje utilizar um outro backend pdb (como LDAP, " +#~ "por exemplo)." + +#~ msgid "daemons, inetd" +#~ msgstr "daemons, inetd" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Veja /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html, fornecido pelo pacote samba-doc, para mais detalhes." diff --git a/debian/po/ro.po b/debian/po/ro.po new file mode 100644 index 0000000..a273576 --- /dev/null +++ b/debian/po/ro.po @@ -0,0 +1,224 @@ +# translation of ro.po to Romanian +# Mesajele în limba română pentru debconf-samba. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Eddy PetriÈ™or <eddy.petrisor@gmail.com>, 2006. +# Eddy PetriÈ™or <eddy.petrisor@gmail.com>, 2007. +# Igor Stirbu <igor.stirbu@gmail.com>, 2008. +# Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org>, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: ro\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2023-01-21 14:51+0100\n" +"Last-Translator: Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org>\n" +"Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Poedit 3.2.2\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Server È™i utilități Samba" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Se modifică „smb.conf†pentru a folosi configuraÈ›iile WINS din DHCP?" + +# RO: prefer să nu folosesc termeni de genul „calculatorul dvs.â€; de multe ori nu e cazul È™i sună mai puÈ›in profesional. +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the network, " +"the DHCP server may also provide information about WINS servers (\"NetBIOS name " +"servers\") present on the network. This requires a change to your smb.conf " +"file so that DHCP-provided WINS settings will automatically be read from /var/" +"lib/samba/dhcp.conf." +msgstr "" +"Dacă acest calculator primeÈ™te informaÈ›iile IP (de configurare a reÈ›elei) de la " +"un server DHCP din reÈ›ea, acel server ar putea să ofere informaÈ›ii È™i despre " +"serverele WINS („serverele NetBIOS de numeâ€) prezente în reÈ›ea. Acest lucru " +"necesită o schimbare a fiÈ™ierului „smb.conf†astfel încât configuraÈ›iile WINS " +"oferite prin DHCP să fie citite automat din „/var/lib/samba/dhcp.confâ€." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Pachetul dhcp-client trebuie să fie instalat pentru a beneficia de această " +"facilitate." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Se configurează „smb.conf†automat?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include\" " +"line or an option that spans multiple lines, which could confuse the automated " +"configuration process and require you to edit your smb.conf by hand to get it " +"working again." +msgstr "" +"Restul configuraÈ›iei Samba tratează întrebările care afectează parametrii din „/" +"etc/samba/smb.confâ€, fiÈ™ierul utilizat pentru a configura programele Samba " +"(«nmbd» È™i «smbd»). Actualul fiÈ™ier „smb.conf†conÈ›ine o linie „include†sau o " +"opÈ›iune care se desfășoară de-a lungul a mai multor linii, lucru care ar putea " +"să creeze confuzie în procesul de configurare automată È™i ar putea duce la " +"necesitatea editării manuale a fiÈ™ierului „smb.conf†pentru a-l face din nou " +"funcÈ›ional." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Dacă nu selectaÈ›i aceasta opÈ›iune, va trebui să gestionaÈ›i personal orice " +"schimbare a configuraÈ›iei È™i nu veÈ›i putea beneficia de îmbunătățirile " +"periodice ale configuraÈ›iei." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Grupul de lucru/Numele de domeniu:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain name " +"used with the \"security=domain\" setting." +msgstr "" +"SpecificaÈ›i grupul de lucru pentru acest sistem. Această opÈ›iune controlează în " +"ce grup de lucru va apărea sistemul atunci când este utilizat ca server, grupul " +"de lucru implicit care va fi utilizat atunci când navigaÈ›i cu diverse interfeÈ›e " +"È™i numele de domeniu utilizat cu configurarea „security=domainâ€." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Actualizare de la Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 to " +#~ "Samba 4. This is likely to fail for complex setups, but should provide a " +#~ "good starting point for most existing installations." +#~ msgstr "" +#~ "Este posibil ca fiÈ™ierele de configurare existente pentru Samba 3 să fie " +#~ "migrate la Samba 4. Probabil, pentru configuraÈ›ii complexe, conversia va " +#~ "eÈ™ua, dar pentru majoritatea instalărilor rezultatul ar trebui să reprezinte " +#~ "un bun punct de plecare." + +#, fuzzy +#~ msgid "Realm name:" +#~ msgstr "Domeniu:" + +#~ msgid "Use password encryption?" +#~ msgstr "Se folosesc parole criptate? " + +#~ msgid "daemons" +#~ msgstr "demoni" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Cum doriÈ›i să rulaÈ›i Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running as a " +#~ "daemon is the recommended approach." +#~ msgstr "" +#~ "Demonul Samba smbd poate rula ca un demon normal sau din inetd. Rularea ca " +#~ "demon este recomandată." + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "Se configurează Samba 4 ca PDC?" + +#~ msgid "" +#~ "Even when using this option, you will need to set up DNS such that it serves " +#~ "the data from the zone file in that directory before you can use the Active " +#~ "Directory domain." +#~ msgstr "" +#~ "Chiar dacă se utilizează această opÈ›iune, va trebui să configuraÈ›i serviciul " +#~ "DNS să servească datele din fiÈ™ierul de zonă în acel director înainte de a " +#~ "putea utiliza domeniul Active Directory." + +#~ msgid "" +#~ "Please specify the Kerberos realm this server will be in. In many cases, " +#~ "this will be the same as the DNS domain name." +#~ msgstr "" +#~ "PrecizaÈ›i domeniul Kerberos de care va aparÈ›ine acest server. ÃŽn multe " +#~ "cazuri acesta va fi la fel cu domeniul DNS." + +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in when " +#~| "queried by clients. Note that this parameter also controls the domain name " +#~| "used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "PrecizaÈ›i domeniul de care acest server va aparÈ›ine când va fi chestionat de " +#~ "clienÈ›i." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Se creează baza de date cu parole /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba must " +#~ "be configured to use encrypted passwords. This requires user passwords to " +#~ "be stored in a file separate from /etc/passwd. This file can be created " +#~ "automatically, but the passwords must be added manually by running smbpasswd " +#~ "and be kept up-to-date in the future." +#~ msgstr "" +#~ "Pentru compatibilitate cu majoritatea versiunilor de Windows, Samba trebuie " +#~ "să fie configurată să folosească parole criptate. Acest lucru necesită ca " +#~ "parolele utilizatorilor să fie stocate în alt fiÈ™ier decât /etc/passwd. " +#~ "Acest fiÈ™ier poate fi creat automat, dar parolele trebuie să fie adăugate " +#~ "manual prin rularea comenzii smbpasswd È™i, în viitor, trebuie È›inut la zi." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Dacă nu-l creaÈ›i, va trebui să reconfiguraÈ›i Samba (probabil È™i " +#~ "calculatoarele client) să folosească parole necriptate." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt.html " +#~ "from the samba-doc package for more details." +#~ msgstr "" +#~ "A se vedea /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/" +#~ "pwencrypt.html din pachetul samba-doc pentru mai multe detalii." diff --git a/debian/po/ru.po b/debian/po/ru.po new file mode 100644 index 0000000..ffff262 --- /dev/null +++ b/debian/po/ru.po @@ -0,0 +1,282 @@ +# translation of samba4_4.0.0~alpha8+git20090912-1_ru.po to Russian +# Translation of samba_3.0.23c-1.po to Russian +# Yuriy Talakan' <yt@amur.elektra.ru>, 2005, 2006. +# Pavel Maryanov <acid_jack@ukr.net>, 2006, 2007. +# Yuri Kozlov <yuray@komyakino.ru>, 2010, 2011, 2013. +msgid "" +msgstr "" +"Project-Id-Version: samba 2:4.0.10+dfsg-3\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2013-10-24 19:24+0400\n" +"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n" +"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.4\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Сервер Samba и утилиты" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Изменить smb.conf Ð´Ð»Ñ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð½Ð°Ñтроек WINS из DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"ЕÑли компьютер получает информацию о Ñвоём IP-адреÑе от Ñлужбы DHCP по Ñети, " +"тогда DHCP-Ñервер также может предоÑтавлÑÑ‚ÑŒ информацию о Ñерверах WINS " +"(«Ñерверы имён NetBIOS»), доÑтупных в Ñети. Чтобы наÑтройки WINS, " +"предоÑтавленные Ñервером DHCP, автоматичеÑки ÑчитывалиÑÑŒ из /etc/samba/dhcp." +"conf, нужно изменить файл smb.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Чтобы иÑпользовать Ñту возможноÑÑ‚ÑŒ, нужно уÑтановить пакет dhcp-client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "ÐаÑтроить smb.conf автоматичеÑки?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"ОÑтавшаÑÑÑ Ñ‡Ð°ÑÑ‚ÑŒ наÑтройки Samba предÑтавлÑет Ñобой вопроÑÑ‹, влиÑющие на " +"параметры в /etc/samba/smb.conf. Ðтот файл иÑпользуетÑÑ Ð´Ð»Ñ Ð½Ð°Ñтройки " +"программ Samba (nmbd и smbd). Ð’ текущем файле smb.conf еÑÑ‚ÑŒ Ñтрока «include» " +"или параметр, ÑоÑтоÑщий из неÑкольких Ñтрок. При Ñтом автоматичеÑÐºÐ°Ñ " +"наÑтройка может быть нарушена, и Ð´Ð»Ñ Ð²Ð¾ÑÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ð¾ÑпоÑобноÑти " +"потребуетÑÑ Ð¾Ñ‚Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¸Ñ€Ð¾Ð²Ð°Ñ‚ÑŒ smb.conf вручную." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"При отказе от Ñтой возможноÑти позаботитьÑÑ Ð¾Ð±Ð¾ вÑех изменениÑÑ… конфигурации " +"придётÑÑ ÑамоÑтоÑтельно, а приведёт к невозможноÑти периодичеÑкого " +"Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð½Ð°Ñтроек." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Ð Ð°Ð±Ð¾Ñ‡Ð°Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ð°/домен:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Укажите рабочую группу ÑиÑтемы. Ðтой наÑтройкой задаётÑÑ Ñ€Ð°Ð±Ð¾Ñ‡Ð°Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ð°, в " +"которой будет поÑвлÑÑ‚ÑŒÑÑ Ð´Ð°Ð½Ð½Ñ‹Ð¹ компьютер, еÑли он иÑпользуетÑÑ ÐºÐ°Ðº Ñервер, " +"в качеÑтве рабочей группы по умолчанию при проÑмотре Ñети из различных " +"клиентÑких программ, а также в качеÑтве имени домена при иÑпользовании " +"параметра «security=domain»." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Выполнить обновление Ñ Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "ЕÑÑ‚ÑŒ возможноÑÑ‚ÑŒ преобразовать ÑущеÑтвующие файлы наÑтройки от Samba 3 в " +#~ "формат Samba 4. ВероÑтнее вÑего, полноÑтью Ñто Ñделать не удаÑÑ‚ÑÑ, еÑли " +#~ "наÑтройки Ñложны, но должно Ñработать в большинÑтве Ñлучаев." + +#~ msgid "Server role" +#~ msgstr "Роль Ñервера" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "Контроллеры домена управлÑÑŽÑ‚ доменами NT4 и Active Directory и " +#~ "предоÑтавлÑÑŽÑ‚ Ñлужбы по управлению учётными запиÑÑми и Ð´Ð»Ñ Ð²Ñ…Ð¾Ð´Ð° в домен. " +#~ "Ð”Ð»Ñ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ домена требуетÑÑ Ð½Ðµ менее одного доменного контроллера." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "Ð Ñдовые Ñерверы могут быть чаÑтью домена NT4 или Active Directory, но не " +#~ "предоÑтавлÑÑŽÑ‚ доменных Ñлужб. К Ñтим Ñерверам отноÑÑÑ‚ÑÑ Ñ€Ð°Ð±Ð¾Ñ‡Ð¸Ðµ Ñтанции, " +#~ "файловые Ñерверы и Ñерверы печати." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "Ðвтономный Ñервер не может иÑпользоватьÑÑ Ð² домене и предоÑтавлÑет только " +#~ "обмен файлами и вход по протоколу Windows for Workgroups." + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "Сервер Samba не заработает, еÑли не указать роль Ñервера, но Ñто может " +#~ "Ñделать пользователь вручную." + +#~ msgid "Realm name:" +#~ msgstr "Ð˜Ð¼Ñ Ð¾Ð±Ð»Ð°Ñти:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "Укажите облаÑÑ‚ÑŒ (realm) Kerberos Ð´Ð»Ñ Ð´Ð¾Ð¼ÐµÐ½Ð°, которым управлÑет данный " +#~ "доменный контроллер." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "Обычно, Ñто Ð¸Ð¼Ñ DNS вашего узла, запиÑанное заглавными буквами." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "Ðовый пароль Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Samba «administrator»:" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "" +#~ "ЕÑли оÑтавить поле пуÑтым, то будет Ñгенерирован произвольный пароль." + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "Пароль можно задать позднее, выполнив Ñ Ð¿Ñ€Ð°Ð²Ð°Ð¼Ð¸ root:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "Введите пароль Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Samba «administrator» ещё раз:" + +#~ msgid "Password input error" +#~ msgstr "Ошибка ввода паролÑ" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "Введённые вами пароли не Ñовпадают. Попробуйте ещё раз." + +#~ msgid " $ samba-tool user setpassword administrator" +#~ msgstr " $ samba-tool user setpassword administrator" + +#~ msgid "Use password encryption?" +#~ msgstr "ИÑпользовать шифрование паролей?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Ð’Ñе поÑледние Windows-клиенты ÑвÑзываютÑÑ Ñ Ñерверами SMB/CIFS Ñ " +#~ "иÑпользованием шифрованных паролей. ЕÑли вы хотите иÑпользовать " +#~ "нешифрованные пароли, то тогда нужно изменить определённый параметр в " +#~ "рееÑтре Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Крайне рекомендуетÑÑ Ð²ÐºÐ»ÑŽÑ‡Ð¸Ñ‚ÑŒ Ñтот параметр, так как нешифрованные пароли " +#~ "больше не иÑпользуютÑÑ Ð² Microsoft Windows. Ð’ Ñтом Ñлучае нужно убедитьÑÑ " +#~ "в правильноÑти файла /etc/samba/smbpasswd и в том, что Ð´Ð»Ñ Ð²Ñех " +#~ "пользователей в нём уÑтановлены пароли Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ команды smbpasswd." + +#~ msgid "Samba server" +#~ msgstr "Сервер Samba" + +#~ msgid "daemons" +#~ msgstr "как ÑамоÑтоÑтельный процеÑÑ" + +#~ msgid "inetd" +#~ msgstr "из inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Как нужно запуÑкать Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Служба Samba smbd может поÑтоÑнно работать как ÑамоÑтоÑтельный процеÑÑ " +#~ "или запуÑкатьÑÑ Ð¸Ð· inetd. РекомендуетÑÑ Ð¸Ñпользовать запуÑк в виде " +#~ "ÑамоÑтоÑтельного процеÑÑа." + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "ÐаÑтроить Samba 4 в качеÑтве PDC?" + +#~ msgid "" +#~ "Even when using this option, you will need to set up DNS such that it " +#~ "serves the data from the zone file in that directory before you can use " +#~ "the Active Directory domain." +#~ msgstr "" +#~ "Даже в Ñлучае утвердительного ответа Ð´Ð»Ñ Ð°ÐºÑ‚Ð¸Ð²Ð°Ñ†Ð¸Ð¸ домена Active " +#~ "Directory вам необходимо наÑтроить DNS так, чтобы он иÑпользовал данные " +#~ "из файла зоны, раÑположенного в каталоге Ñ Ð½Ð°Ñтройками пакета." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Создать базу данных паролей Samba — /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Ð”Ð»Ñ ÑовмеÑтимоÑти Ñо Ñтандартными значениÑми большинÑтва верÑий Windows " +#~ "Samba необходимо наÑтроить на иÑпользование шифрованных паролей. При Ñтом " +#~ "пароли пользователей должны хранитьÑÑ Ð² отдельном файле, а не в /etc/" +#~ "passwd. Ðтот файл будет Ñоздан автоматичеÑки, однако пароли нужно " +#~ "добавить вручную Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ команды smbpasswd и не забывать поддерживать " +#~ "их в актуальном ÑоÑтоÑнии." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "ЕÑли Ñтот файл не Ñоздан, тогда нужно перенаÑтроить Samba (и, возможно, " +#~ "клиентÑкие машины) на иÑпользование нешифрованных паролей." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Более Ð¿Ð¾Ð´Ñ€Ð¾Ð±Ð½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð´Ð¾Ñтупна в файле /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html из пакета samba-doc." diff --git a/debian/po/sk.po b/debian/po/sk.po new file mode 100644 index 0000000..b37a4c9 --- /dev/null +++ b/debian/po/sk.po @@ -0,0 +1,266 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Miroslav Kure <kurem@debian.cz>, 2006. +# Peter Mann <Peter.Mann@tuke.sk>, 2006. +# Ivan Masár <helix84@centrum.sk>, 2008, 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: samba4\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2012-06-17 19:40+0100\n" +"Last-Translator: Ivan Masár <helix84@centrum.sk>\n" +"Language-Team: Slovak <debian-l10n-slovak@lists.debian.org>\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Samba server a nástroje" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "UpraviÅ¥ smb.conf, aby použÃval nastavenie WINS z DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Ak váš poÄÃtaÄ zÃskava IP adresu z DHCP servera, môže vám tento server " +"ponúkaÅ¥ aj údaje o serveroch WINS (menných serveroch NetBIOS-u), ktoré sa " +"nachádzajú na vaÅ¡ej sieti. To vyžaduje zásah do súboru smb.conf, kde sa " +"nastavà naÄÃtavanie údajov o WINS serveroch zo súboru /var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Aby ste mohli využiÅ¥ túto vlastnosÅ¥, musÃte maÅ¥ nainÅ¡talovaný balÃk dhcp-" +"client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Automaticky nastaviÅ¥ smb.conf?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"ZvyÅ¡ok nastavenia Samby sa zaoberá otázkami, ktoré ovplyvňujú parametre " +"uvedené v /etc/samba/smb.conf, Äo je konfiguraÄný súbor pre programy Samba " +"(nmbd a smbd). Váš súÄasný súbor smb.conf obsahuje riadok „include“ alebo " +"voľbu, ktorá presahuje viac riadkov. Toto môže zaprÃÄiniÅ¥ zlé automatické " +"nastavenie, takže pre správnu funkÄnosÅ¥ možno budete musieÅ¥ upraviÅ¥ smb.conf " +"manuálne." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Ak si nezvolÃte túto možnosÅ¥, budete musieÅ¥ sami zvládnuÅ¥ vÅ¡etky nastavenia " +"a nebudete môcÅ¥ využÃvaÅ¥ výhody pravidelných vylepÅ¡enà tohto súboru." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Pracovná skupina/Názov domény:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Zadajte názov pracovnej skupiny pre tento poÄÃtaÄ. Táto voľba urÄuje v " +"ktorej pracovnej skupine sa má tento systém objaviÅ¥ keÄ sa k nemu pristupuje " +"ako k serveru, pri prehliadanà rôznymi rozhraniami a názov domény, ktorá sa " +"použÃva pri nastavenà „security=domain“." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "AktualizovaÅ¥ zo Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "Je možné previesÅ¥ existujúce konfiguraÄné súbory zo Samba 3 do Samba 4. " +#~ "To pri zložitých nastaveniach pravdepodobne nebude fungovaÅ¥, ale malo by " +#~ "to poskytnúť dobrý poÄiatoÄný stav pre ÄalÅ¡ie úpravy pri väÄÅ¡ine " +#~ "existujúcich inÅ¡taláciÃ." + +#~ msgid "Server role" +#~ msgstr "Úloha servera" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "OvládaÄe domény (domain controllers) spravujú domény v Å¡týle NT4 alebo " +#~ "Active Directory a poskytujú služby ako správa identt a prihlasovanie do " +#~ "domén. Každá doména musà maÅ¥ aspoň jeden ovláaÄ domény." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "ÄŒlenské servery môžu byÅ¥ súÄasÅ¥ou domény v Å¡týle NT4 alebo Active " +#~ "Directory, ale neposkytujú žiadne doménové služby. Pracovné stanice a " +#~ "súborové alebo tlaÄové servery sú zvyÄajne obyÄajnà Älenovia domény." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "Samostatný server nie je možné použiÅ¥ v doméne a podporuje iba zdieľanie " +#~ "súborov a prihlasovanie v Å¡týle Windows for Workgroups." + +#~ msgid "Realm name:" +#~ msgstr "Názov oblasti (realm):" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "ProsÃm, urÄite oblasÅ¥ Kerberos pre doménu, ktorú ovláda tento ovládaÄ " +#~ "domény." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "" +#~ "Toto je zvyÄajne váš názov poÄÃtaÄa podľa DNS napÃsaný veľkými pÃsmenami." + +#~ msgid "Use password encryption?" +#~ msgstr "PoužiÅ¥ Å¡ifrovanie hesiel?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "VÅ¡etky súÄasné poÄÃtaÄe Windows použÃvajú na komunikáciu so SMB/CIFS " +#~ "servermi Å¡ifrované heslá. Ak chcete použiÅ¥ neÅ¡ifrované heslá, musÃte " +#~ "zmeniÅ¥ parameter v registroch systému Windows." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Povolenie tejto voľby sa dôrazne odporúÄa, pretože podpora neÅ¡ifrovaných " +#~ "hesiel v produktoch Microsoft Windows sa už neudržiava. V tom prÃpade sa " +#~ "uistite, že máte platný súbor /etc/samba/smbpasswd a že v ňom nastavÃte " +#~ "heslá vÅ¡etkým použÃvateľom prÃkazom smbpasswd." + +#~ msgid "Samba server" +#~ msgstr "Samba server" + +#~ msgid "daemons" +#~ msgstr "démoni" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Ako chcete spúšťaÅ¥ Sambu?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Samba server smbd sa môže spúšťaÅ¥ ako obyÄajný démon (odporúÄa sa) alebo " +#~ "sa môže spúšťaÅ¥ z inetd." + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "NastaviÅ¥ Samba 4 ako PDC?" + +#~ msgid "" +#~ "Even when using this option, you will need to set up DNS such that it " +#~ "serves the data from the zone file in that directory before you can use " +#~ "the Active Directory domain." +#~ msgstr "" +#~ "Aj pri použità tejto voľby budete musieÅ¥ nastaviÅ¥ DNS tak, aby " +#~ "poskytovalo údaje zo súboru zóny v danom adresári predtým, než budete " +#~ "môcÅ¥ použiÅ¥ doménu Active Directory." + +#~ msgid "" +#~ "Please specify the Kerberos realm this server will be in. In many cases, " +#~ "this will be the same as the DNS domain name." +#~ msgstr "" +#~ "ProsÃm, zadajte v ktorej doméne Kerberos sa tento server bude nachádzaÅ¥. " +#~ "V mnohých prÃpadoch to bude rovnaká hodnota ako názov domény DNS." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "VytvoriÅ¥ databázu hesiel /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Kvôli kompatibilite s predvoleným nastavenÃm väÄÅ¡iny verzià Windows sa " +#~ "musà Samba nastaviÅ¥ na použÃvanie Å¡ifrovaných hesiel. To vyžaduje " +#~ "uloženie použÃvateľských hesiel v inom súbore ako /etc/passwd. Tento " +#~ "súbor sa môže vytvoriÅ¥ automaticky, ale heslá do neho musÃte pridaÅ¥ " +#~ "manuálne programom smbpasswd a taktiež ho musÃte neustále aktualizovaÅ¥." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Ak tento súbor nevytvorÃte, budete musieÅ¥ nastaviÅ¥ Sambu (a zrejme aj " +#~ "poÄÃtaÄe klientov) aby použÃvali neÅ¡ifrované heslá." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Podrobnosti nájdete v súbore /usr/share/doc/samba-doc/htmldocs/ENCRYPTION." +#~ "html z balÃka samba-doc." diff --git a/debian/po/sl.po b/debian/po/sl.po new file mode 100644 index 0000000..b400cee --- /dev/null +++ b/debian/po/sl.po @@ -0,0 +1,241 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: Samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2007-03-13 08:06+0100\n" +"Last-Translator: Matej KovaÄiÄ <matej.kovacic@owca.info>\n" +"Language-Team: Sl <skrat@owca.info>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Slovenian\n" +"X-Poedit-Country: SLOVENIA\n" +"X-Poedit-SourceCharset: utf-8\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"Spremeni smb.conf za uporabo WINS nastavitev pridobljenih s strani DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"ÄŒe vaÅ¡ raÄunalnik pridobiva informacije o IP naslovu prek DHCP strežnika, " +"lahko ta strežnik ponuja tudi informacije o WINS strežnikih (\"NetBIOS " +"imenski strežniki\"), ki so prisotni v omrežju. To zahteva spremembo v " +"datoteki smb.conf ki bo omogoÄila samodejno branje nastavitev WINS iz /var/" +"lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "Za uporabo teh možnosti mora biti nameÅ¡Äen paket dhcp-client." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Samodejna nastavitev smb.conf?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Ostanek nastavitev Sambe se nanaÅ¡a na vpraÅ¡anja, ki vplivajo na parametre v /" +"etc/samba/smb.conf. Ta datoteka se uporablja za konfiguracijo Samba " +"programov (nmbd in smbd). VaÅ¡ trenutni smb.conf vkljuÄuje vrstico 'include' " +"ali možnost, ki se razteza Äez veÄ vrstic konfiguracijske datoteke in lahko " +"povzroÄi zmedo v procesu avtomatskih nastavitev. Za ponovno vzpostavitev " +"delovanja bo potrebno roÄno urejanje konfiguracijske datoteke z nastavitvami " +"smb.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"ÄŒe ne izberete te možnosti, boste morali vse spremembe nastavitev opraviti " +"sami in ne boste mogli uporabljati periodiÄnih samodejnih izboljÅ¡av " +"nastavitev." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Ime delovne skupine/domene:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#~ msgid "Use password encryption?" +#~ msgstr "Uporaba Å¡ifriranja gesel?" + +#, fuzzy +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Vsi novejÅ¡i Windows odjemalci komunicirajo s SMB strežniki z uporabo " +#~ "Å¡ifriranih gesel. ÄŒe želite uporabiti neÅ¡ifrirana gesla boste morali " +#~ "spremeniti ustrezen parameter v Windows registru." + +#, fuzzy +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "MoÄno priporoÄamo vklop te možnosti. ÄŒe jo boste vkljuÄili, preverite da " +#~ "imate veljavno datoteko /etc/samba/smbpasswd in da ste tam nastavili " +#~ "gesla za vsakega uporabnika s pomoÄjo ukaza smbpasswd." + +#~ msgid "daemons" +#~ msgstr "daemoni" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Kako želite poganjati Sambo?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Samba demon smbd lahko teÄe kot obiÄajen demon ali iz inetd. " +#~ "PriporoÄljivo je poganjanje sambe kot demon." + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Prosimo, nastavite ime delovne skupine, v kateri se bo pojavil ta " +#~ "strežnik ko ga bodo klienti iskali. Ta parameter doloÄa tudi ime domene, " +#~ "ki je uporabljeno v nastavitvah security=domain." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Ali naj ustvarim bazo samba gesel, /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "ÄŒe želite doseÄi kompatibilnost z veÄino razliÄic operacijskega sistema " +#~ "Windows, mora biti Samba nastavljena tako, da uporablja Å¡ifrirana gesla. " +#~ "Taka uporabniÅ¡ka gesla morajo biti shranjena v posebni datoteki in ne v /" +#~ "etc/passwd. Ta datoteko je mogoÄe ustvariti samodejno, gesla pa je treba " +#~ "dodajati roÄno s pomoÄjo programa smbpasswd. Za ažurnost gesel morate " +#~ "tudi v prihodnje skrbeti roÄno." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "ÄŒe je ne boste ustvarili, boste morali nastaviti Sambo (in verjetno tudi " +#~ "odjemalce) za uporabo neÅ¡ifriranih gesel." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Za podrobnejÅ¡e informacije si oglejte /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html iz paketa samba-doc." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Veriženje (chaining) passdb hrbtenic ni podprto." + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Od razliÄice 3.0.23 samba ne podpira veÄ veriženja (chaining) veÄih " +#~ "hrbtenic v \"passdb backend\" parametru. Kaže, da vaÅ¡a konfiguracijska " +#~ "datoteka smb.conf vsebuje passdb hrbteniÄni parameter, ki vsebuje seznam " +#~ "hrbtenic. Nova razliÄica sambe ne bo delovala dokler tega ne popravite." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Premaknem /etc/samba/smbpasswd v /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 uvaja popolnejÅ¡i vmesnik do SAM baze ki nadomeÅ¡Äa datoteko /etc/" +#~ "samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Prosimo potrdite Äe želite avtomatsko prenesti obstojeÄo datoteko " +#~ "smbdpasswd v var/lib/samba/passdb.tdb. Te možnosti ne izberite Äe boste " +#~ "namesto tega uporabljali kakÅ¡no drugo pdb hrbtenico (n. pr. LDAP)." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Za podrobnejÅ¡e informacije si oglejte /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html iz paketa samba-doc." diff --git a/debian/po/sq.po b/debian/po/sq.po new file mode 100644 index 0000000..9967ce9 --- /dev/null +++ b/debian/po/sq.po @@ -0,0 +1,238 @@ +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# Developers do not need to manually edit POT or PO files. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2007-03-13 21:25+0100\n" +"Last-Translator: Elian Myftiu <elian.myftiu@gmail.com>\n" +"Language-Team: Debian L10n Albanian <debian-l10n-albanian@lists.debian.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Ta ndryshoj smb.conf për të përdorur rregullimet WINS nga DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Nëse kompjuteri yt pajiset me adrese IP nga një shërbyes DHCP në rrjet, " +"shërbyesi DHCP mundet gjithashtu të japë të dhëna rreth shërbyesve WINS " +"(\"shërbyesa emri NetBIOS\") që ndodhen në rrjet. Kjo ka nevojë për një " +"ndryshim në skedën tënde smb.conf në mënyrë të tillë që rregullimet WINS që " +"vijnë me DHCP të lexohen automatikisht nga /var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Duhet instaluar paketa dhcp-client për të patur përparësi mbi këtë veti." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Ta konfiguroj smb.conf automatikisht?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Pjesa e mbetur e konfigurimit Samba ka të bëjë me pyetje që prekin parametra " +"në /etc/samba/smb.conf, e cili është skeda që përdoret për të konfiguruar " +"programet Samba (nmbd dhe smbd). smb.conf yt i tanishëm përmban një rresht " +"'include' ose një mundësi që tendos rreshta të shumëfishtë, të cilët mund të " +"hutojnë proçesin automatik të konfigurimit dhe të të kërkojë ta ndryshosh " +"skedarin tënd smb.conf dorazi dhe ta vesh në punë sërish." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Nëse nuk zgjedh këtë mundësi, do të duhet të kryesh çdo ndryshim konfigurimi " +"vetë, dhe nuk do kesh rastin të përfitosh nga përmirësime periodike " +"konfigurimi." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Grup Pune/Emër Zone:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#~ msgid "Use password encryption?" +#~ msgstr "Të përdor kriptim fjalëkalimi?" + +#, fuzzy +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Të tërë klientët e fundit Windows komunikojnë me shërbyes SMB duke " +#~ "përdorur fjalëkalime të kriptuar. Nëse dëshiron të përdorësh fjalëkalime " +#~ "të qarta tekstualë do të duhet të ndryshosh një parametër në regjistrin " +#~ "tënd Windows." + +#, fuzzy +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Aktivizimi i kësaj mundësie këshillohet fuqimisht. Nëse e bën, sigurohu " +#~ "që ke një skedar të vlefshëm /etc/samba/smbpasswd dhe që i cakton " +#~ "fjalëkalimet atje për secilin përdorues duke përdorur komandën smbpasswd." + +#~ msgid "daemons" +#~ msgstr "daemons" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Si dëshiron të xhirojë Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Daemon Samba smbd mund të xhirojë si një daemon normal ose nga inetd. " +#~ "Rekomandohet puna si daemon." + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Të lutem saktëso grupin e punës ku dëshiron që ky shërbyes të shfaqet kur " +#~ "të pyetet nga klientë. Vër re që ky parametër kontrollon gjithashtu emrin " +#~ "e zonës së përdorur me rregullimet security=domain." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Të krijoj bazë të dhënash fjalëkalimi, /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Për të qenë e pajtueshme me parazgjedhjet në shumë versione Windows, " +#~ "Samba duhet të konfigurohet për përdorim fjalëkalimesh të kriptuar. Kjo " +#~ "kërkon fjalëkalimet e përdoruesve të ruhen në një skedë të veçantë nga /" +#~ "etc/passwd. Kjo skedë mund të krijohet automatikisht, por fjalëkalimet " +#~ "duhet të shtohen dorazi duke përdorur smbpasswd dhe të mirëmbahen në të " +#~ "ardhmen." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Nëse nuk e krijon, do të duhet të rikonfigurosh Samba (dhe ndoshta " +#~ "kompjuterët klientë) për të përdorur fjalëkalime tekstualë të qartë." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Shih /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html nga paketa samba-" +#~ "doc për hollësi të mëtejshme." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Vargëzimi i passdb nuk suportohet" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Duke filluar nga versioni 3.0.23, samba nuk do ta suportojë më vargëzimin " +#~ "në parametrin \"passdb backend\". Ngjan që kartela jote smb.conf përmban " +#~ "një parametër passdb që përmban një listë me backend-a. Versioni i ri i " +#~ "samba-s nuk do të punojë deri kur ta korrigjoni këtë." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Ta lëviz /etc/samba/smbpasswd në /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 paraqiti një ndërfaqe baze të dhënash më të plotë SAM që " +#~ "zëvendëson skedën /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Të lutem poho nëse do dëshironit që skeda ekzistuese smbpasswd të " +#~ "shpërngulej automatikisht në /var/lib/samba/passdb.tdb. Mos e zgjidh " +#~ "këtë mundësi nëse synon të përdorësh një tjetër organizues pdb (p.sh., " +#~ "LDAP)." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Shih /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html nga paketa samba-doc për hollësi të mëtejshme." diff --git a/debian/po/sv.po b/debian/po/sv.po new file mode 100644 index 0000000..a8df81b --- /dev/null +++ b/debian/po/sv.po @@ -0,0 +1,267 @@ +# Translation of samba4 debconf template to Swedish +# Copyright (C) 2010-2011 Martin Bagge <brother@bsnet.se> +# This file is distributed under the same license as the samba4 package. +# +# Daniel Nylander <po@danielnylander.se>, 2007 +# Martin Bagge <brother@bsnet.se>, 2010, 2011 +msgid "" +msgstr "" +"Project-Id-Version: samba4\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2013-10-23 09:06+0100\n" +"Last-Translator: Martin Bagge / brother <brother@bsnet.se>\n" +"Language-Team: Swedish <debian-l10n-swedish@lists.debian.org>\n" +"Language: Swedish\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.5.4\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Sambaserver och verktyg" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Ändra smb.conf till att använda WINS-inställningar frÃ¥n DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Om din dator fÃ¥r en IP-address och information frÃ¥n en DHCP-server pÃ¥ " +"nätverket kan även DHCP-server ocksÃ¥ skicka information om WINS-servrar " +"(\"NetBIOS namnservrar\") i ditt nätverk. Detta kräver en ändring i din fil " +"smb.conf sÃ¥ att WINS-inställningar frÃ¥n DHCP-servern automatiskt kan läsas " +"frÃ¥n /var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Paketet dhcp-client mÃ¥ste installeras för att kunna använda denna funktion." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Konfigurera smb.conf automatiskt?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Resten av Samba-konfigurationen hanterar frÃ¥gor som rör parametrar i /etc/" +"samba/smb.conf, vilken är den fil som används för att konfigurera Samba-" +"programmen (nmbd och smbd). Din aktuella smb.conf innehÃ¥ller en \"include\"-" +"rad eller ett alternativ som spänner över flera rader som kan göra Debconf " +"förvirrad och kan innebära att du mÃ¥ste redigera din smb.conf pÃ¥ egen hand " +"för att fÃ¥ det att fungera igen." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Om du inte väljer detta alternativ mÃ¥ste du hantera alla " +"konfigurationsändringar pÃ¥ egen hand och kan därför inte utnyttja fördelarna " +"med periodiska konfigurationsförbättringar." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Arbetsgrupp/Domännamn:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Ange vilken arbetsgrupp som dettaa system tillhör. Denna inställning anger " +"vilken arbetsgrupp systemet kommer att hamna i när det används som server, " +"inställningen anger vilken standardgrupp som kommer att sökas igenom med de " +"klientprogram som finns och detta kommer att vara domännamnet som används " +"tillsammans med inställningen \"security=domain\"." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Uppgradera frÃ¥n Samba 3?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "Det är möjligt att migrera existerande inställningsfiler frÃ¥n Samba 3 " +#~ "till Samba 4. Det är troligt att det inte kommer att fungera i komplexa " +#~ "installationer men bör ge bra startlägen för de allra flesta " +#~ "installationer." + +#~ msgid "Server role" +#~ msgstr "Serverroll" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "Domänkontrollanter hanterar NT4- eller Active Directory-domäner och " +#~ "tillhandahÃ¥ller tjänster som identitetshantering och domäninlogging. " +#~ "Varje domän behöver Ã¥tminstone en domänkontrollant." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "Medlemsservrar kan vara del av en NT4- eller Active Directory-domän utan " +#~ "att tillhandahÃ¥lla nÃ¥gra domäntjänster. Arbetsstationer och fil- eller " +#~ "skrivarservrar är vanligen domänmedlemmar." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "En fristÃ¥ende server kan inte användas i en domän och stöder endast " +#~ "fildelning och Windows för Workgroups-inloggning." + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "Om ingen serverroll anges kommer sambaservern inte att förberedas, detta " +#~ "kan göras manuellt av användaren." + +#~ msgid "Realm name:" +#~ msgstr "Namn för realm:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "Ange Kerberosrealm för domänen som denna domänkontrollant kontrollerar." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "Vanligen är detta DNS-värdnamnet i stora bokstäver." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "Nytt lösenord för Samba-användaren \"administrator\":" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "Om fältet lämnas tomt slumpas ett lösenord fram." + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "Lösenordet kan anges senare via rot-exekvering:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "Upprepa lösenordet för Samba-användaren \"administrator\":" + +#~ msgid "Password input error" +#~ msgstr "Fel vid avgivande av lösenord" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "De bÃ¥da lösenorden som angavs stämde inte överrens. Försök igen." + +#~ msgid " $ samba-tool user setpassword administrator" +#~ msgstr " $ samba-tool user setpassword administrator" + +#~ msgid "Use password encryption?" +#~ msgstr "Använd lösenordskryptering?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "De flesta Windows-klienter av senare versioner kommunicerar med " +#~ "krypterade lösenord mot SMB/CIFS-servrar. Om du vill använda lösenord i " +#~ "klartext behöver du ändra en parameter i ditt Windows-register." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Det rekommenderas varmt att du aktiverar detta alternativ. Om du gör det, " +#~ "kontrollera att du har en giltig /etc/samba/smbpasswd och att du har " +#~ "ställt in lösenorden där för varje användare med kommandot smbpasswd." + +#~ msgid "Samba server" +#~ msgstr "Sambaserver" + +#~ msgid "daemons" +#~ msgstr "demoner" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Hur vill du köra Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Samba-demonen smbd kan köras som en normal demon eller frÃ¥n inetd. Att " +#~ "köra som en demon är den rekommenderade metoden." + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "Installera Samba 4 som en PDC?" + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Skapa Sambas lösenordsdatabas, /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "För att vara kompatibel med de standardvärden i de flesta versioner av " +#~ "Windows mÃ¥ste Samba konfigureras för att använda krypterade lösenord. " +#~ "Detta kräver att användarnas lösenord lagras i en fil separerad frÃ¥n /etc/" +#~ "passwd. Denna fil kan skapas automatiskt men lösenorden mÃ¥ste läggas " +#~ "till manuellt genom att köra smbpasswd och hÃ¥llas uppdaterad i framtiden." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Om du inte skapar den mÃ¥ste du konfigurera Samba (och antagligen även " +#~ "dina klientmaskiner) till att använda lösenord i klartext." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Se /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html frÃ¥n paketet samba-doc för mer information." diff --git a/debian/po/ta.po b/debian/po/ta.po new file mode 100644 index 0000000..b9c9017 --- /dev/null +++ b/debian/po/ta.po @@ -0,0 +1,223 @@ +# translation of samba_po.po to TAMIL +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# drtvasudevan <agnihot3@gmail.com>, 2006. +msgid "" +msgstr "" +"Project-Id-Version: samba_po\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2006-12-16 20:10+0530\n" +"Last-Translator: drtvasudevan <agnihot3@gmail.com>\n" +"Language-Team: TAMIL <Ubuntu-tam@lists.ubuntu.com>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "smb.conf ஠டிஹெசà¯à®šà®¿à®ªà®¿ யிலிரà¯à®¨à¯à®¤à¯ WINS அமைபà¯à®ªà¯ˆ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤ மாறà¯à®±à®¿à®¯à®®à¯ˆà®•à¯à®•à®µà®¾ ?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"உஙà¯à®•à®³à¯ கணினி IP à®®à¯à®•à®µà®°à®¿à®¯à¯ˆ வலைப௠பினà¯à®©à®²à®¿à®²à®¿à®°à¯à®¨à¯à®¤à¯ டிஹெசà¯à®šà®¿à®ªà®¿ சேவையகதà¯à®¤à®¿à®©à¯ மூலம௠" +"பெறà¯à®®à®¾à®©à®¾à®²à¯ அநà¯à®¤ டிஹெசà¯à®šà®¿à®ªà®¿ சேவையகம௠வலைப௠பினà¯à®©à®²à®¿à®²à¯ உளà¯à®³ WINS servers (விணà¯à®¸à¯ " +"சேவையகஙà¯à®•à®³à¯) (\"NetBIOS name servers\") நெடà¯à®ªà®¯à®¾à®¸à¯ பெயர௠சேவையகஙà¯à®•à®³à¯ கà¯à®±à®¿à®¤à¯à®¤ தகவலà¯à®•à®³à¯ˆ " +"தர இயலà¯à®®à¯. இதறà¯à®•à¯ smb.conf கோபà¯à®ªà¯ˆ டிஹெசà¯à®šà®¿à®ªà®¿ தரà¯à®®à¯ WINS வடிவமைபà¯à®ªà¯ˆ /var/lib/" +"samba/dhcp.conf கோபà¯à®ªà®¿à®²à®¿à®°à¯à®¨à¯à®¤à¯ தானியஙà¯à®•à®¿à®¯à®¾à®• படிகà¯à®•à¯à®®à¯ படி அமைகà¯à®• வேணà¯à®Ÿà¯à®®à¯." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "இநà¯à®¤ வசதியை பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®¿à®•à¯ கொளà¯à®³ டிஹெசà¯à®šà®¿à®ªà®¿3 சாரà¯à®¨à¯à®¤à¯‹à®©à¯ பொதியை நிறà¯à®µ வேணà¯à®Ÿà¯à®®à¯." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "smb.conf ஠தானியஙà¯à®•à®¿à®¯à®¾à®• வடிவமைகà¯à®•à®²à®¾à®®à®¾?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"மறà¯à®± சாமà¯à®ªà®¾ வடிவமைபà¯à®ªà¯ /etc/samba/smb.conf கோபà¯à®ªà®¿à®²à¯ உளà¯à®³ எலà¯à®²à¯ˆ செயல௠அலகà¯à®•à®³à¯ˆ " +"(parameters) பாதிகà¯à®•à¯à®®à¯ கேளà¯à®µà®¿à®•à®³à¯ˆà®ªà¯ பறà¯à®±à®¿à®¯à®¤à¯. இநà¯à®¤ கோபà¯à®ªà¯ சாமà¯à®ªà®¾ நிரலà¯à®•à®³à¯ˆ(nmbd and " +"smbd) (எனà¯à®Žà®®à¯à®ªà®¿à®Ÿà®¿ மறà¯à®±à¯à®®à¯ எஸà¯à®Žà®®à¯à®ªà®¿à®Ÿà®¿) வடிவமைகà¯à®• பயனà¯à®ªà®Ÿà¯à®µà®¤à¯. உஙà¯à®•à®³à®¤à¯ தறà¯à®ªà¯‹à®¤à¯ˆà®¯ smb.conf " +"கோபà¯à®ªà¯ 'இனà¯à®•à¯à®²à¯‚டà¯' ('include') வரி அலà¯à®²à®¤à¯ பல வரிகளை ஆகà¯à®•à®¿à®°à®®à®¿à®•à¯à®•à¯à®®à¯ தேரà¯à®µà¯ˆ உளà¯à®³à®Ÿà®•à¯à®•à®¿à®¯à®¤à¯. " +"இத௠தானியஙà¯à®•à®¿ வடிவமைபà¯à®ªà¯ செயலை கà¯à®´à®ªà¯à®ªà®²à®¾à®®à¯. அதனால௠அத௠மீணà¯à®Ÿà¯à®®à¯ வேலை செயà¯à®µà®¤à®±à¯à®•à¯ உஙà¯à®•à®³à¯ˆ " +"கைமà¯à®±à¯ˆà®¯à®¾à®• உஙà¯à®•à®³à¯ smb.conf கோபà¯à®ªà¯ˆ திரà¯à®¤à¯à®¤à®•à¯ கோரலாமà¯." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"நீஙà¯à®•à®³à¯ இதை தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•à®¾à®µà®¿à®Ÿà¯à®Ÿà®¾à®²à¯ எநà¯à®¤ வடிவமைபà¯à®ªà¯ˆà®¯à¯à®®à¯ நீஙà¯à®•à®³à¯‡à®¤à®¾à®©à¯ செயà¯à®¯ வேணà¯à®Ÿà¯à®®à¯. மேலà¯à®®à¯ " +"அவà¯à®µà®ªà¯à®ªà¯‹à®¤à¯ நிகழà¯à®®à¯ வடிவமைபà¯à®ªà¯ மேமà¯à®ªà®¾à®Ÿà¯à®Ÿà¯ வசதியை இழகà¯à®• நேரà¯à®®à¯." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "வேலைகà¯à®•à¯à®´à¯/களப௠பெயரà¯:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#~ msgid "Use password encryption?" +#~ msgstr "கடவà¯à®šà¯ சொல௠கà¯à®±à®¿à®¯à¯€à®Ÿà¯à®Ÿà®¾à®•à¯à®•à®¤à¯à®¤à¯ˆ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à®µà®¾?" + +#, fuzzy +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "அனைதà¯à®¤à¯ விணà¯à®Ÿà¯‹à®¸à¯ சாரà¯à®¨à¯à®¤à¯‹à®©à¯à®•à®³à¯à®®à¯ SMB சேவையகஙà¯à®•à®³à¯à®Ÿà®©à¯ கà¯à®±à®¿à®¯à¯€à®Ÿà¯à®Ÿà®¾à®•à¯à®•à®¿à®¯ கடவà¯à®šà¯ சொறà¯à®•à®³à¯ˆ பயன௠" +#~ "படà¯à®¤à¯à®¤à®¿ தொடரà¯à®ªà¯ கொளà¯à®•à®¿à®©à¯à®±à®©. நீஙà¯à®•à®³à¯ தெளிவான உரை கடவà¯à®šà¯ சொலà¯à®²à¯ˆ பயன௠படà¯à®¤à¯à®¤ விரà¯à®®à¯à®ªà®¿à®©à®¾à®²à¯ " +#~ "விணà¯à®Ÿà¯‹à®¸à¯ பதிவகதà¯à®¤à®¿à®²à¯ மாறà¯à®±à®™à¯à®•à®³à¯ செயà¯à®¯ வேணà¯à®Ÿà¯à®®à¯." + +#, fuzzy +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "இநà¯à®¤ தேரà¯à®µà¯ˆ செயல௠படà¯à®¤à¯à®¤ பலமாகப௠பரிநà¯à®¤à¯à®°à¯ˆà®•à¯à®•à®ªà¯ படà¯à®•à®¿à®±à®¤à¯. அபà¯à®ªà®Ÿà®¿à®šà¯ செயà¯à®¤à®¾à®²à¯ " +#~ "செலà¯à®²à¯à®ªà®Ÿà®¿à®¯à®¾à®•à¯à®®à¯ /etc/samba/smbpasswd கோபà¯à®ªà¯ உஙà¯à®•à®³à®¿à®Ÿà®®à¯ இரà¯à®ªà¯à®ªà®¤à¯ˆà®¯à¯à®®à¯ நீஙà¯à®•à®³à¯ ஒவà¯à®µà¯Šà®°à¯ " +#~ "பயனரà¯à®•à¯à®•à¯à®®à¯ smbpasswd கடà¯à®Ÿà®³à¯ˆ மூலம௠தனிதà¯à®¤à®©à®¿ கடவà¯à®šà¯ சொல௠அமைபà¯à®ªà®¤à¯ˆà®¯à¯à®®à¯ உறà¯à®¤à®¿ செயà¯à®¤à¯ " +#~ "கொளà¯à®³à®µà¯à®®à¯. " + +#~ msgid "daemons" +#~ msgstr "கிஙà¯à®•à®°à®©à¯à®•à®³à¯ (டீமனà¯à®•à®³à¯)" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "சாமà¯à®ªà®¾à®µà¯ˆ எபà¯à®ªà®Ÿà®¿ இயகà¯à®• விரà¯à®®à¯à®ªà¯à®•à®¿à®±à¯€à®°à¯à®•à®³à¯?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "சாமà¯à®ªà®¾ கிஙà¯à®•à®°à®©à®¾à®© எஸà¯à®Žà®®à¯à®ªà®¿à®Ÿà®¿ இயலà¯à®ªà®¾à®© கிஙà¯à®•à®°à®©à®¾à®• இயஙà¯à®•à®²à®¾à®®à¯ அலà¯à®²à®¤à¯ inetd லிரà¯à®¨à¯à®¤à¯ " +#~ "இயஙà¯à®•à®²à®¾à®®à¯. கிஙà¯à®•à®°à®©à®¾à®• இயஙà¯à®•à¯à®µà®¤à¯‡ பரிநà¯à®¤à¯à®°à¯ˆà®•à¯à®•à®ªà¯ படà¯à®•à®¿à®±à®¤à¯." + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "சாரà¯à®¨à¯à®¤à¯‹à®©à¯à®•à®³à®¾à®²à¯ வினவப௠படà¯à®®à¯ போத௠இநà¯à®¤ சேவையகம௠எநà¯à®¤ வேலைக௠கà¯à®´à¯à®µà¯ˆ சேரà¯à®¨à¯à®¤à®¤à®¾à®• தெரிய " +#~ "வேணà¯à®Ÿà¯à®®à¯ என கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿà¯à®•. இநà¯à®¤ எலà¯à®²à¯ˆ செயல௠அலக௠security=domain வடிவமைபà¯à®ªà®¿à®²à¯ உளà¯à®³ " +#~ "களப௠பெயரையà¯à®®à¯ கடà¯à®Ÿà¯à®ªà¯ படà¯à®¤à¯à®¤à¯à®®à¯." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ " /var/lib/samba/passdb.tdb எனà¯à®± சாமà¯à®ªà®¾ கடவà¯à®šà¯ சொல௠தரவà¯à®¤à¯ தளதà¯à®¤à¯ˆ உரà¯à®µà®¾à®•à¯à®•à®µà®¾?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "பெரà¯à®®à¯à®ªà®¾à®²à®¾à®© விணà¯à®Ÿà¯‹à®¸à¯ பதிவà¯à®•à®³à¯à®Ÿà®©à¯ இசைநà¯à®¤à¯ போவதறà¯à®•à¯ சாமà¯à®ªà®¾à®µà¯ˆ கà¯à®±à®¿à®¯à¯€à®Ÿà¯à®Ÿà®¾à®•à¯à®•à®®à¯ செயà¯à®¤ " +#~ "கடவà¯à®šà¯ சொறà¯à®•à®³à¯ˆ பயன௠படà¯à®¤à¯à®¤à¯à®®à®¾à®±à¯ அமைகà¯à®• வேணà¯à®Ÿà¯à®®à¯. இதறà¯à®•à¯ /etc/passwd கோபà¯à®ªà¯ அலà¯à®²à®¾à®¤à¯ " +#~ "வேறொர௠கோபà¯à®ªà®¿à®²à¯ பயனர௠கடவà¯à®šà¯ சொறà¯à®•à®³à¯ˆ சேமிகà¯à®• வேணà¯à®Ÿà¯à®®à¯. இநà¯à®¤ கோபà¯à®ªà¯ˆ தானியஙà¯à®•à®¿à®¯à®¾à®• " +#~ "உரà¯à®µà®¾à®•à¯à®•à®²à®¾à®®à¯. ஆனால௠கடவà¯à®šà¯ சொறà¯à®•à®³à¯ˆ கைமà¯à®±à¯ˆà®¯à®¾à®• smbpasswd கடà¯à®Ÿà®³à¯ˆ மூலம௠சேரà¯à®•à¯à®• " +#~ "வேணà¯à®Ÿà¯à®®à¯; எதிரà¯à®•à®¾à®²à®¤à¯à®¤à®¿à®²à¯ அதை இறà¯à®±à¯ˆà®ªà¯ படà¯à®¤à¯à®¤à®µà¯à®®à¯ வேணà¯à®Ÿà¯à®®à¯. " + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "நீஙà¯à®•à®³à¯ அதை உரà¯à®µà®¾à®•à¯à®•à®µà®¿à®²à¯à®²à¯ˆà®¯à®¾à®©à®¾à®²à¯ எளிய உரை கடவà¯à®šà¯ சொறà¯à®•à®³à¯ˆ பயன௠படà¯à®¤à¯à®¤à¯à®®à®¾à®±à¯ சாமà¯à®ªà®¾à®µà¯ˆ " +#~ "(அனேகமாக உஙà¯à®•à®³à¯ சாரà¯à®¨à¯à®¤à¯‹à®©à¯ இயநà¯à®¤à®¿à®°à®™à¯à®•à®³à¯ˆà®¯à¯à®®à¯) மீணà¯à®Ÿà¯à®®à¯ வடிவமைகà¯à®• வேணà¯à®Ÿà¯à®®à¯." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "சாமà¯à®ªà®¾ ஆவணஙà¯à®•à®³à¯ (samba-doc) பொதிகளில௠இரà¯à®¨à¯à®¤à¯ /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html ஠மேலதிக விவரஙà¯à®•à®³à¯à®•à¯à®•à¯à®ªà¯ பாரà¯à®•à¯à®•à®µà¯à®®à¯." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "/etc/samba/smbpasswd à® /var/lib/samba/passdb.tdb கà¯à®•à¯ நகரà¯à®¤à¯à®¤à®µà®¾?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "சாமà¯à®ªà®¾ 3.0 /etc/samba/smbpasswd கோபà¯à®ªà¯ˆ நீகà¯à®•à®¿ செமà¯à®®à¯ˆà®¯à®¾à®© à®®à¯à®´à¯à®®à¯ˆà®¯à®¾à®© SAM (எஸà¯à®à®Žà®®à¯) " +#~ "தரவà¯à®¤à¯à®¤à®³ இடைமà¯à®•à®¤à¯à®¤à¯ˆ அறிமà¯à®•à®ªà¯ படà¯à®¤à¯à®¤à¯à®•à®¿à®±à®¤à¯." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "இரà¯à®ªà¯à®ªà®¿à®²à¯à®³à¯à®³ smbpasswd கோபà¯à®ªà¯ˆ /var/lib/samba/passdb.tdb கà¯à®•à¯ தானியஙà¯à®•à®¿à®¯à®¾à®• மாறà¯à®± " +#~ "வேணà¯à®Ÿà¯à®®à®¾ என உறà¯à®¤à®¿ செயà¯à®¯à®µà¯à®®à¯. நீஙà¯à®•à®³à¯ LDAP போனà¯à®± வேற௠pdb பின௠நிலையை பயன௠படà¯à®¤à¯à®¤ " +#~ "உதà¯à®¤à¯‡à®šà®¿à®¤à¯à®¤à¯ இரà¯à®¨à¯à®¤à®¾à®²à¯ இதை தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®• வேணà¯à®Ÿà®¾à®®à¯." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "சாமà¯à®ªà®¾ ஆவணஙà¯à®•à®³à¯ (samba-doc) பொதிகளில௠இரà¯à®¨à¯à®¤à¯ /usr/share/doc/samba-doc/" +#~ "htmldocs/ENCRYPTION.html ஠மேலதிக விவரஙà¯à®•à®³à¯à®•à¯à®•à¯à®ªà¯ பாரà¯à®•à¯à®•à®µà¯à®®à¯." diff --git a/debian/po/templates.pot b/debian/po/templates.pot new file mode 100644 index 0000000..a496e7f --- /dev/null +++ b/debian/po/templates.pot @@ -0,0 +1,91 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the samba package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" diff --git a/debian/po/th.po b/debian/po/th.po new file mode 100644 index 0000000..4bb336b --- /dev/null +++ b/debian/po/th.po @@ -0,0 +1,312 @@ +# Thai translation of samba. +# Copyright (C) 2006-2013 Software in the Public Interest, Inc. +# This file is distributed under the same license as the samba package. +# Theppitak Karoonboonyanan <thep@linux.thai.net>, 2006-2013. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2013-11-02 20:15+0700\n" +"Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n" +"Language-Team: Thai <thai-l10n@googlegroups.com>\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "เซิร์ฟเวà¸à¸£à¹Œ samba à¹à¸¥à¸°à¹€à¸„รื่à¸à¸‡à¸¡à¸·à¸" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "จะà¹à¸à¹‰à¹„ข smb.conf ให้ใช้ค่าตั้ง WINS จาภDHCP หรืà¸à¹„ม่?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"ถ้าคà¸à¸¡à¸žà¸´à¸§à¹€à¸•à¸à¸£à¹Œà¸‚à¸à¸‡à¸„ุณใช้ข้à¸à¸¡à¸¹à¸¥à¸«à¸¡à¸²à¸¢à¹€à¸¥à¸‚ IP จาà¸à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸à¸£à¹Œ DHCP ในเครืà¸à¸‚่าย เซิร์ฟเวà¸à¸£à¹Œ DHCP " +"ดังà¸à¸¥à¹ˆà¸²à¸§à¸à¸²à¸ˆà¹ƒà¸«à¹‰à¸‚้à¸à¸¡à¸¹à¸¥à¹€à¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸à¸£à¹Œ WINS (\"name server ขà¸à¸‡ NetBIOS\") " +"ที่มีในเครืà¸à¸‚่ายมาด้วย à¸à¸²à¸£à¸ˆà¸°à¹ƒà¸Šà¹‰à¸‚้à¸à¸¡à¸¹à¸¥à¸”ังà¸à¸¥à¹ˆà¸²à¸§à¹„ด้ จำเป็นต้à¸à¸‡à¹à¸à¹‰à¹„ขà¹à¸Ÿà¹‰à¸¡ smb.conf ขà¸à¸‡à¸„ุณ " +"เพื่à¸à¹ƒà¸«à¹‰à¸¡à¸µà¸à¸²à¸£à¸à¹ˆà¸²à¸™à¸„่าตั้ง WINS ที่ได้จาภDHCP ในà¹à¸Ÿà¹‰à¸¡ /var/lib/samba/dhcp.conf โดยà¸à¸±à¸•à¹‚นมัติ" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "คุณต้à¸à¸‡à¸•à¸´à¸”ตั้งà¹à¸žà¸à¹€à¸à¸ˆ dhcp-client ด้วย เพื่à¸à¸ˆà¸°à¹ƒà¸Šà¹‰à¸„วามสามารถนี้" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "จะตั้งค่า smb.conf à¹à¸šà¸šà¸à¸±à¸•à¹‚นมัติหรืà¸à¹„ม่?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่า Samba ในส่วนที่เหลืภจะเป็นคำถามที่จะมีผลต่à¸à¸„่าต่างๆ ใน /etc/samba/smb.conf " +"ซึ่งเป็นà¹à¸Ÿà¹‰à¸¡à¸—ี่ใช้à¸à¸³à¸«à¸™à¸”ค่าโปรà¹à¸à¸£à¸¡à¸‚à¸à¸‡ Samba (nmbd à¹à¸¥à¸° smbd) à¹à¸Ÿà¹‰à¸¡ smb.conf ปัจจุบันขà¸à¸‡à¸„ุณ " +"มีบรรทัด 'include' หรืà¸à¸¡à¸µà¸•à¸±à¸§à¹€à¸¥à¸·à¸à¸à¸—ี่ยาวหลายบรรทัด ซึ่งจะเป็นปัà¸à¸«à¸²à¸•à¹ˆà¸à¸à¸£à¸°à¸šà¸§à¸™à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าà¹à¸šà¸šà¸à¸±à¸•à¹‚นมัติ " +"à¹à¸¥à¸°à¸„ุณต้à¸à¸‡à¹à¸à¹‰à¹„ขà¹à¸Ÿà¹‰à¸¡ smb.conf ขà¸à¸‡à¸„ุณเà¸à¸‡à¸à¹ˆà¸à¸™ เพื่à¸à¹ƒà¸«à¹‰à¸ªà¸²à¸¡à¸²à¸£à¸–ใช้งานได้" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"ถ้าคุณไม่เลืà¸à¸à¸•à¸±à¸§à¹€à¸¥à¸·à¸à¸à¸™à¸µà¹‰ คุณจะต้à¸à¸‡à¸ˆà¸±à¸”à¸à¸²à¸£à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าต่างๆ เà¸à¸‡ " +"à¹à¸¥à¸°à¸ˆà¸°à¹„ม่สามารถใช้ประโยชน์จาà¸à¸à¸²à¸£à¸•à¹ˆà¸à¹€à¸•à¸´à¸¡à¸„่าตั้งที่มีà¸à¸¢à¸¹à¹ˆà¹€à¸›à¹‡à¸™à¸£à¸°à¸¢à¸°à¹„ด้" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "เวร์à¸à¸à¸£à¸¸à¹Šà¸›/ชื่à¸à¹‚ดเมน:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"à¸à¸£à¸¸à¸“าระบุเวิร์à¸à¸à¸£à¸¸à¹Šà¸›à¸ªà¸³à¸«à¸£à¸±à¸šà¸£à¸°à¸šà¸šà¸™à¸µà¹‰ ค่านี้จะà¸à¸³à¸«à¸™à¸”เวิร์à¸à¸à¸£à¸¸à¹Šà¸›à¸—ี่ระบบนี้จะเข้าร่วมเมื่à¸à¹ƒà¸Šà¹‰à¹€à¸›à¹‡à¸™à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸à¸£à¹Œ, " +"à¸à¸³à¸«à¸™à¸”เวิร์à¸à¸à¸£à¸¸à¹Šà¸›à¸›à¸£à¸´à¸¢à¸²à¸¢à¸—ี่จะใช้เมื่à¸à¸—่à¸à¸‡à¸”ูด้วยโปรà¹à¸à¸£à¸¡à¸•à¹ˆà¸²à¸‡à¹† à¹à¸¥à¸°à¸à¸³à¸«à¸™à¸”ชื่à¸à¹‚ดเมนที่จะใช้ในà¸à¸£à¸“ีที่ตั้งค่า " +"\"security=domain\" ด้วย" + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "จะปรับรุ่นขึ้นจาภSamba 3 หรืà¸à¹„ม่?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "คุณสามารถปรับย้ายà¹à¸Ÿà¹‰à¸¡à¸„่าตั้งจาภSamba 3 มาเป็น Samba 4 ได้ " +#~ "à¸à¸²à¸£à¸›à¸£à¸±à¸šà¸™à¸µà¹‰à¸à¸²à¸ˆà¹ƒà¸Šà¹‰à¸à¸²à¸£à¹„ม่ได้สำหรับค่าตั้งที่ซับซ้à¸à¸™ à¹à¸•à¹ˆà¸à¸²à¸ˆà¹€à¸›à¹‡à¸™à¸ˆà¸¸à¸”เริ่มต้นที่ดีสำหรับà¸à¸²à¸£à¸•à¸´à¸”ตั้งเดิมส่วนใหà¸à¹ˆ" + +#~ msgid "Server role" +#~ msgstr "บทบาทขà¸à¸‡à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸à¸£à¹Œ" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "ตัวควบคุมโดเมนจะจัดà¸à¸²à¸£à¹‚ดเมนà¹à¸šà¸š NT4 หรืภActive Directory à¹à¸¥à¸°à¹ƒà¸«à¹‰à¸šà¸£à¸´à¸à¸²à¸£à¸•à¹ˆà¸²à¸‡à¹† " +#~ "เช่นà¸à¸²à¸£à¸ˆà¸±à¸”à¸à¸²à¸£à¸Šà¸·à¹ˆà¸à¹€à¸à¸à¸¥à¸±à¸à¸©à¸“์à¹à¸¥à¸°à¸à¸²à¸£à¹€à¸‚้าระบบในโดเมน " +#~ "à¹à¸•à¹ˆà¸¥à¸°à¹‚ดเมนจะต้à¸à¸‡à¸¡à¸µà¸•à¸±à¸§à¸„วบคุมโดเมนà¸à¸¢à¹ˆà¸²à¸‡à¸™à¹‰à¸à¸¢à¸«à¸™à¸¶à¹ˆà¸‡à¸•à¸±à¸§à¹€à¸ªà¸¡à¸" + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "เซิร์ฟเวà¸à¸£à¹Œà¸ªà¸¡à¸²à¸Šà¸´à¸à¸ªà¸²à¸¡à¸²à¸£à¸–เข้าเป็นส่วนหนึ่งขà¸à¸‡à¹‚ดเมนà¹à¸šà¸š NT4 หรืภActive Directory ได้ " +#~ "à¹à¸•à¹ˆà¸ˆà¸°à¹„ม่ให้บริà¸à¸²à¸£à¹ƒà¸”ๆ เà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¹‚ดเมนเลย " +#~ "เครื่à¸à¸‡à¸ªà¸–านีงานà¹à¸¥à¸°à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸à¸£à¹Œà¸šà¸£à¸´à¸à¸²à¸£à¹à¸Ÿà¹‰à¸¡à¸«à¸£à¸·à¸à¸šà¸£à¸´à¸à¸²à¸£à¸žà¸´à¸¡à¸žà¹Œà¸¡à¸±à¸à¸ˆà¸°à¹€à¸›à¹‡à¸™à¸ªà¸¡à¸²à¸Šà¸´à¸à¹à¸šà¸šà¸›à¸à¸•à¸´à¸‚à¸à¸‡à¹‚ดเมน" + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "เซิร์ฟเวà¸à¸£à¹Œà¹à¸šà¸š standalone ไม่สามารถใช้งานภายในโดเมนได้ " +#~ "à¹à¸¥à¸°à¸ˆà¸°à¸£à¸à¸‡à¸£à¸±à¸šà¸à¸²à¸£à¹à¸šà¹ˆà¸‡à¸›à¸±à¸™à¹à¸Ÿà¹‰à¸¡à¹à¸¥à¸°à¸à¸²à¸£à¹€à¸‚้าระบบในà¹à¸šà¸š Windows for Workgroups เท่านั้น" + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "ถ้าไม่มีà¸à¸²à¸£à¸£à¸°à¸šà¸¸à¸šà¸—บาทขà¸à¸‡à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸à¸£à¹Œ à¸à¹‡à¸ˆà¸°à¹„ม่มีà¸à¸²à¸£à¸ˆà¸±à¸”เตรียมเซิร์ฟเวà¸à¸£à¹Œ Samba " +#~ "เพื่à¸à¸—ี่ผู้ใช้จะสามารถจัดเตรียมเà¸à¸‡à¹„ด้" + +#~ msgid "Realm name:" +#~ msgstr "ชื่ภrealm:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "à¸à¸£à¸¸à¸“าระบุ realm ขà¸à¸‡ Kerberos ขà¸à¸‡à¹‚ดเมนที่ตัวควบคุมโดเมนนี้ควบคุมà¸à¸¢à¸¹à¹ˆ" + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "โดยปà¸à¸•à¸´à¹à¸¥à¹‰à¸§à¸à¹‡à¸ˆà¸°à¹€à¸›à¹‡à¸™à¸Šà¸·à¹ˆà¸à¹‚ฮสต์ขà¸à¸‡à¸„ุณใน DNS โดยสะà¸à¸”ด้วยตัวพิมพ์ใหà¸à¹ˆà¸—ั้งหมด" + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "ตั้งรหัสผ่านใหม่สำหรับผู้ใช้ \"administrator\" ขà¸à¸‡ Samba:" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "ถ้าปล่à¸à¸¢à¸Šà¹ˆà¸à¸‡à¸™à¸µà¹‰à¸§à¹ˆà¸²à¸‡à¹„ว้ à¸à¹‡à¸ˆà¸°à¸ªà¸£à¹‰à¸²à¸‡à¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¸ªà¸¸à¹ˆà¸¡à¹ƒà¸«à¹‰à¹à¸—น" + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "คุณสามารถเปลี่ยนรหัสผ่านภายหลังได้โดยใช้คำสั่งต่à¸à¹„ปนี้ในà¸à¸²à¸™à¸° root:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "ป้à¸à¸™à¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¸ªà¸³à¸«à¸£à¸±à¸šà¸œà¸¹à¹‰à¹ƒà¸Šà¹‰ \"administrator\" ขà¸à¸‡ Samba ซ้ำà¸à¸µà¸à¸„รั้ง:" + +#~ msgid "Password input error" +#~ msgstr "à¸à¸²à¸£à¸›à¹‰à¸à¸™à¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¸œà¸´à¸”พลาด" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "รหัสผ่านที่คุณป้à¸à¸™à¸—ั้งสà¸à¸‡à¸„รั้งไม่ตรงà¸à¸±à¸™ à¸à¸£à¸¸à¸“าลà¸à¸‡à¹ƒà¸«à¸¡à¹ˆ" + +#~ msgid " $ samba-tool user setpassword administrator" +#~ msgstr " $ samba-tool user setpassword administrator" + +#~ msgid "Use password encryption?" +#~ msgstr "ใช้à¸à¸²à¸£à¹€à¸‚้ารหัสลับà¸à¸±à¸šà¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¸«à¸£à¸·à¸à¹„ม่?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "เครื่à¸à¸‡à¸¥à¸¹à¸à¸‚่ายวินโดวส์รุ่นใหม่ๆ ทั้งหมด จะติดต่à¸à¸à¸±à¸šà¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸à¸£à¹Œ SMB/CIFS " +#~ "โดยใช้รหัสผ่านที่เข้ารหัสลับ ถ้าคุณต้à¸à¸‡à¸à¸²à¸£à¸ˆà¸°à¹ƒà¸Šà¹‰à¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¹à¸šà¸šà¸‚้à¸à¸„วามธรรมดา " +#~ "คุณจะต้à¸à¸‡à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¸„่าค่าหนึ่งในเรจิสตรีขà¸à¸‡à¸§à¸´à¸™à¹‚ดวส์" + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "ขà¸à¹à¸™à¸°à¸™à¸³à¸à¸¢à¹ˆà¸²à¸‡à¸¢à¸´à¹ˆà¸‡à¹ƒà¸«à¹‰à¹€à¸›à¸´à¸”ใช้ตัวเลืà¸à¸à¸™à¸µà¹‰ " +#~ "เนื่à¸à¸‡à¸ˆà¸²à¸à¹„ม่มีà¸à¸²à¸£à¸”ูà¹à¸¥à¸à¸²à¸£à¸£à¸à¸‡à¸£à¸±à¸šà¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¹à¸šà¸šà¸‚้à¸à¸„วามธรรมดาในผลิตภัณฑ์ต่างๆ " +#~ "ขà¸à¸‡à¹„มโครซà¸à¸Ÿà¸—์à¸à¸µà¸à¸•à¹ˆà¸à¹„ปà¹à¸¥à¹‰à¸§ à¹à¸¥à¸°à¸–้าคุณเปิดใช้ à¸à¸£à¸¸à¸“าตรวจสà¸à¸šà¹ƒà¸«à¹‰à¹à¸™à¹ˆà¹ƒà¸ˆà¸§à¹ˆà¸²à¸„ุณมีà¹à¸Ÿà¹‰à¸¡ /etc/samba/" +#~ "smbpasswd ที่ใช้à¸à¸²à¸£à¹„ด้ à¹à¸¥à¸°à¸„ุณได้ตั้งรหัสผ่านในนั้นสำหรับผู้ใช้à¹à¸•à¹ˆà¸¥à¸°à¸„น โดยใช้คำสั่ง smbpasswd" + +#~ msgid "Samba server" +#~ msgstr "เซิร์ฟเวà¸à¸£à¹Œ samba" + +#~ msgid "daemons" +#~ msgstr "ดีมà¸à¸™" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "คุณต้à¸à¸‡à¸à¸²à¸£à¹€à¸£à¸µà¸¢à¸à¹ƒà¸Šà¹‰ Samba à¹à¸šà¸šà¹„หน?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "ดีมà¸à¸™ smbd ขà¸à¸‡ Samba สามารถทำงานà¹à¸šà¸šà¸”ีมà¸à¸™à¸˜à¸£à¸£à¸¡à¸”า หรืà¸à¹€à¸£à¸µà¸¢à¸à¸ˆà¸²à¸ inetd à¸à¹‡à¹„ด้ " +#~ "ทางที่ขà¸à¹à¸™à¸°à¸™à¸³à¸„ืà¸à¹€à¸£à¸µà¸¢à¸à¹à¸šà¸šà¸”ีมà¸à¸™" + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "จะตั้งค่า Samba 4 ให้เป็น PDC หรืà¸à¹„ม่?" + +#~ msgid "" +#~ "Even when using this option, you will need to set up DNS such that it " +#~ "serves the data from the zone file in that directory before you can use " +#~ "the Active Directory domain." +#~ msgstr "" +#~ "à¹à¸¥à¸°à¸–ึงà¹à¸¡à¹‰à¸„ุณจะเลืà¸à¸à¸•à¸±à¸§à¹€à¸¥à¸·à¸à¸à¸™à¸µà¹‰ คุณà¸à¹‡à¸¢à¸±à¸‡à¸•à¹‰à¸à¸‡à¸•à¸±à¹‰à¸‡à¸„่า DNS ให้ใช้ข้à¸à¸¡à¸¹à¸¥à¸ˆà¸²à¸à¹à¸Ÿà¹‰à¸¡à¹‚ซนในไดเรà¸à¸—à¸à¸£à¸µà¸™à¸±à¹‰à¸™ " +#~ "เพื่à¸à¹ƒà¸«à¹‰à¹ƒà¸Šà¹‰à¹‚ดเมนขà¸à¸‡ Active Directory ได้" + +#~ msgid "" +#~ "Please specify the Kerberos realm this server will be in. In many cases, " +#~ "this will be the same as the DNS domain name." +#~ msgstr "" +#~ "à¸à¸£à¸¸à¸“าระบุ realm ขà¸à¸‡ Kerberos ที่เซิร์ฟเวà¸à¸£à¹Œà¸™à¸µà¹‰à¹€à¸›à¹‡à¸™à¸ªà¸¡à¸²à¸Šà¸´à¸à¸à¸¢à¸¹à¹ˆ โดยทั่วไป " +#~ "ค่านี้มัà¸à¹€à¸›à¹‡à¸™à¸„่าเดียวà¸à¸±à¸šà¸Šà¸·à¹ˆà¸à¹‚ดเมนขà¸à¸‡ DNS" + +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "à¸à¸£à¸¸à¸“าระบุโดเมนที่คุณต้à¸à¸‡à¸à¸²à¸£à¹ƒà¸«à¹‰à¹€à¸‹à¸´à¸£à¹Œà¸Ÿà¹€à¸§à¸à¸£à¹Œà¸™à¸µà¹‰à¸›à¸£à¸°à¸à¸²à¸¨à¹€à¸›à¹‡à¸™à¸ªà¸¡à¸²à¸Šà¸´à¸à¹€à¸¡à¸·à¹ˆà¸à¸–ูà¸à¸–ามโดยเครื่à¸à¸‡à¸¥à¸¹à¸à¸‚่าย" + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "จะสร้างà¸à¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥à¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™ samba /var/lib/samba/passdb.tdb หรืà¸à¹„ม่?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "เพื่à¸à¹ƒà¸«à¹‰à¸—ำงานร่วมà¸à¸±à¸šà¸„่าปà¸à¸•à¸´à¹ƒà¸™à¸§à¸´à¸™à¹‚ดวส์รุ่นส่วนใหà¸à¹ˆà¹„ด้ จึงต้à¸à¸‡à¸•à¸±à¹‰à¸‡à¸„่า Samba " +#~ "ให้ใช้รหัสผ่านà¹à¸šà¸šà¹€à¸‚้ารหัสลับ ซึ่งจำเป็นต้à¸à¸‡à¹€à¸à¹‡à¸šà¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¸‚à¸à¸‡à¸œà¸¹à¹‰à¹ƒà¸Šà¹‰à¹„ว้ในà¹à¸Ÿà¹‰à¸¡à¹à¸¢à¸à¸•à¹ˆà¸²à¸‡à¸«à¸²à¸à¸ˆà¸²à¸ /etc/" +#~ "passwd à¹à¸Ÿà¹‰à¸¡à¸”ังà¸à¸¥à¹ˆà¸²à¸§à¸ªà¸²à¸¡à¸²à¸£à¸–สร้างโดยà¸à¸±à¸•à¹‚นมัติได้ à¹à¸•à¹ˆà¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¸ˆà¸°à¸•à¹‰à¸à¸‡à¹€à¸žà¸´à¹ˆà¸¡à¹€à¸à¸‡à¹‚ดยใช้คำสั่ง " +#~ "smbpasswd à¹à¸¥à¸°à¸•à¹‰à¸à¸‡à¸›à¸£à¸±à¸šà¸‚้à¸à¸¡à¸¹à¸¥à¸à¸¢à¸¹à¹ˆà¹€à¸ªà¸¡à¸à¹ƒà¸™à¸à¸™à¸²à¸„ต" + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "หาà¸à¸ˆà¸°à¹„ม่สร้างà¹à¸Ÿà¹‰à¸¡à¸”ังà¸à¸¥à¹ˆà¸²à¸§ คุณจะต้à¸à¸‡à¸•à¸±à¹‰à¸‡à¸„่า Samba (à¹à¸¥à¸°à¸à¸²à¸ˆà¸ˆà¸°à¸•à¹‰à¸à¸‡à¸•à¸±à¹‰à¸‡à¸„่าเครื่à¸à¸‡à¸¥à¸¹à¸à¸•à¹ˆà¸²à¸‡à¹† ด้วย) " +#~ "ให้ใช้รหัสผ่านà¹à¸šà¸šà¸‚้à¸à¸„วามธรรมดา" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "ดูรายละเà¸à¸µà¸¢à¸”เพิ่มเติมได้ที่ /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html " +#~ "จาà¸à¹à¸žà¸à¹€à¸à¸ˆ samba-doc " + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "ไม่สนับสนุนà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸¥à¸¹à¸à¹‚ซ่à¹à¸šà¹‡à¸à¹€à¸à¸™à¸”์ขà¸à¸‡ passdb" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "ตั้งà¹à¸•à¹ˆà¸£à¸¸à¹ˆà¸™ 3.0.23 เป็นต้นไป samba ไม่สนับสนุนà¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸à¸¡à¸¥à¸¹à¸à¹‚ซ่หลายà¹à¸šà¹‡à¸à¹€à¸à¸™à¸”์ในพารามิเตà¸à¸£à¹Œ " +#~ "\"passdb backend\" à¹à¸•à¹ˆà¸”ูเหมืà¸à¸™à¹à¸Ÿà¹‰à¸¡ smb.conf ขà¸à¸‡à¸„ุณจะมีพารามิเตà¸à¸£à¹Œ passdb backend " +#~ "เป็นรายชื่à¸à¹à¸šà¹‡à¸à¹€à¸à¸™à¸”์หลายตัว ซึ่ง samba รุ่นใหม่นี้จะไม่ทำงาน จนà¸à¸§à¹ˆà¸²à¸„ุณจะà¹à¸à¹‰à¹„ขค่านี้" + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "ย้าย /etc/samba/smbpasswd ไปเป็น /var/lib/samba/passdb.tdb หรืà¸à¹„ม่?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 มีà¸à¸´à¸™à¹€à¸—à¸à¸£à¹Œà¹€à¸Ÿà¸‹à¸à¸²à¸™à¸‚้à¸à¸¡à¸¹à¸¥ SAM ที่สมบูรณ์à¸à¸§à¹ˆà¸² ซึ่งมาà¹à¸—นà¹à¸Ÿà¹‰à¸¡ /etc/samba/smbpasswd" + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "à¸à¸£à¸¸à¸“ายืนยันว่าคุณต้à¸à¸‡à¸à¸²à¸£à¸¢à¹‰à¸²à¸¢à¸ˆà¸²à¸à¸à¸²à¸£à¹ƒà¸Šà¹‰à¹à¸Ÿà¹‰à¸¡ smbpasswd ไปใช้ /var/lib/samba/passdb.tdb " +#~ "โดยà¸à¸±à¸•à¹‚นมัติหรืà¸à¹„ม่ à¸à¸¢à¹ˆà¸²à¹€à¸¥à¸·à¸à¸à¸•à¸±à¸§à¹€à¸¥à¸·à¸à¸à¸™à¸µà¹‰à¸–้าคุณมีà¹à¸œà¸™à¸—ี่จะใช้à¹à¸šà¹‡à¸à¹€à¸à¸™à¸”์ pdb à¸à¸·à¹ˆà¸™ (เช่น LDAP) à¹à¸—น" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "ดูรายละเà¸à¸µà¸¢à¸”เพิ่มเติมได้ที่ /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-" +#~ "Guide/pwencrypt.html จาà¸à¹à¸žà¸à¹€à¸à¸ˆ samba-doc " diff --git a/debian/po/tl.po b/debian/po/tl.po new file mode 100644 index 0000000..40760eb --- /dev/null +++ b/debian/po/tl.po @@ -0,0 +1,245 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2007-03-13 06:13+0800\n" +"Last-Translator: eric pareja <xenos@upm.edu.ph>\n" +"Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n" +"Language: tl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Baguhin ang smb.conf upang gumamit ng WINS setting mula sa DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Kung ang computer ninyo ay kumukuha ng IP address mula sa DHCP server sa " +"network, ang DHCP server ay maaaring magbigay ng impormasyon tungkol sa mga " +"WINS server (\"NetBIOS name server\") na nasa network. Kinakailangan nito ng " +"pagbabago sa inyong talaksang smb.conf upang ang bigay-ng-DHCP na WINS " +"setting ay awtomatikong babasahin mula sa /var/lib/samba/dhcp.conf." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Ang paketeng dhcp-client ay dapat nakaluklok upang mapakinabangan ang " +"feature na ito." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Awtomatikong isaayos ang smb.conf?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Ang natitirang pagsasaayos ng Samba ay may mga katanungan tungkol sa mga " +"parameter sa /etc/samba/smb.conf, na siyang talaksan na ginagamit sa " +"pagsaayos ng mga programang Samba (nmbd at smbd). Ang kasalukuyang smb.conf " +"ninyo ay naglalaman ng 'include' na linya o opsiyon na labis sa isang linya, " +"na maaaring makalito sa prosesong pagsaayos na awtomatiko at kakailanganin " +"ninyong i-edit ang inyong smb.conf ng de kamay upang ito'y umandar muli. " + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Kung hindi ninyo pinili ang opsiyon na ito, kakailanganin ninyong ayusin ang " +"anumang pagbabagong pagsasaayos, at hindi ninyo mapapakinabangan ang mga " +"paminsanang pagpapahusay ng pagsasaayos." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Pangalan ng Workgroup/Domain:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#~ msgid "Use password encryption?" +#~ msgstr "Gumamit ng encryption sa kontrasenyas?" + +#, fuzzy +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Lahat ng mga bagong mga Windows client ay nakikipag-usap sa mga SMB " +#~ "server na naka-encrypt ang mga kontrasenyas. Kung nais niyong gumamit ng " +#~ "\"clear text\" na kontrasenyas, kailangan ninyong baguhin ang isang " +#~ "parameter sa inyong Windows registry." + +#, fuzzy +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Ang pag-enable ng opsiyon na ito ay rekomendado. Kung gawin niyo ito, " +#~ "tiyakin na ang inyong talaksang /etc/samba/smbpasswd ay valid at may " +#~ "nakatakda kayong kontrasenyas para sa bawat gumagamit na ginamitan ng " +#~ "smbpasswd na utos." + +#~ msgid "daemons" +#~ msgstr "mga daemon" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Paano ninyo gustong patakbuhin ang Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Ang daemon na smbd ng Samba ay maaaring patakbuhin bilang normal na " +#~ "daemon o mula sa inetd. Pagpapatakbo nito bilang daemon ang rekomendado." + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Pakibigay ang workgroup ng server na ito kapag ito ay tinanong ng mga " +#~ "client. Ang parameter na ito ang siyang nag-co-control ng Domain name na " +#~ "ginagamit sa security=domain na setting." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "Likhain ang talaan ng kontrasenyas ng samba, /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Upang makibagay sa mga default ng karamihan ng bersiyon ng Windows, " +#~ "kailangan na nakasaayos ang Samba na gumamit ng encrypted na " +#~ "kontrasenyas. Kinakailangan na ang mga kontrasenyas ng mga gumagamit ay " +#~ "nakatago sa talaksang hiwalay sa /etc/passwd. Maaaring likhain ang " +#~ "talaksang ito na awtomatiko, ngunit ang mga kontrasenyas dito ay " +#~ "kinakailangang idagdag ng mano-mano sa pagpapatakbo ng smbpasswd at " +#~ "kailangan na sariwain ito sa hinaharap." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Kung hindi ito likhain, kailangan ninyong isaayos muli ang Samba (at " +#~ "malamang ang inyong mga makinang client) na gumamit ng plaintext na " +#~ "kontrasenyas." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Basahin ang /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html mula sa " +#~ "paketeng samba-doc para sa karagdagang detalye." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Ang pagdudugtong ng mga backend ng passdb ay hindi suportado" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Simula sa bersiyon 3.0.23, hindi na suportado ng samba ang pagdudugtong " +#~ "ng multiple backend sa parameter na \"passdb backend\". Mukhang ang " +#~ "talaksang smb.conf ay naglalaman ng passdb backend parameter na " +#~ "naglilista ng mga backend. Ang bagong bersiyon ng samba ay hindi aandar " +#~ "ng wasto hanggang ito ay ayusin." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "Ilipat ang /etc/samba/smbpasswd sa /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Ipinakilala ng Samba 3.0 ang mas-kumpletong SAM database interface na " +#~ "siyang pumalit sa talaksang /etc/samba/smbpasswd." + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Pakitiyak kung inyong nais na mailipat ng awtomatiko ang kasalukuyang " +#~ "talaksang smbpasswd patungong /var/lib/samba/passdb.tdb. Huwag piliin ang " +#~ "opsiyon na ito kung balak ninyong gumamit ng ibang pdb backend (hal., " +#~ "LDAP)." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Basahin ang /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/" +#~ "pwencrypt.html mula sa paketeng samba-doc para sa karagdagang detalye." diff --git a/debian/po/tr.po b/debian/po/tr.po new file mode 100644 index 0000000..28bc8fd --- /dev/null +++ b/debian/po/tr.po @@ -0,0 +1,259 @@ +# Turkish translation of samba. +# This file is distributed under the same license as the samba package. +# Mehmet Türker <mturker@innova.com.tr>, 2004. +# Ä°smail BAYDAN <ibaydan@gmail.com>, 2008. +# Atila KOÇ <koc@artielektronik.com.tr>, 2015. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2015-07-09 14:46+0200\n" +"Last-Translator: Atila KOÇ <koc@artielektronik.com.tr>\n" +"Language-Team: Turkish <debian-l10n-turkish@lists.debian.org>\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "Samba sunucusu ve yardımcı uygulamaları" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "" +"smb.conf dosyası WINS ayarları DHCP'den kullanılacak ÅŸekilde düzenlensin mi?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"EÄŸer bilgisayarınız IP adresini ağınızdaki bir DHCP sunucusundan alıyorsa, " +"bu DHCP sunucusu ağınızda bulunan WINS sunucuları (\"NetBIOS name servers\") " +"hakkında da bilgi veriyor olabilir. Bu, smb.conf dosyanızda DHCP tarafından " +"sunulan WINS ayarlarının özdevimli olarak /var/lib/samba/dhcp.conf dosyasından " +"okunmasını saÄŸlayan bir deÄŸiÅŸikliÄŸi gerektirir." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "" +"Bu özellikten yararlanabilmek için dhcp-client paketinin kurulmuÅŸ olması " +"gerekir." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "smb.conf dosyası özdevimli olarak yapılandırılsın mı?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Geri kalan Samba yapılandırması, Samba uygulamalarını (nmbd ve smbd) " +"yapılandırmak için kullanılan /etc/samba/smb.conf dosyasındaki parametreleri " +"etkileyen sorularla sürecektir. Varolan smb.conf dosyanız, kendiliÄŸinden " +"yapılandırma sürecini ÅŸaşırtabilecek bir \"include\" satırı ya da birden " +"fazla satıra yayılan bir seçenek içerdiÄŸinden Samba'nın yeniden " +"çalışabilmesi için bu dosyanın elle düzenlenmesi gerekebilir." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"EÄŸer bu seçeneÄŸi seçmezseniz, bütün yapılandırma deÄŸiÅŸikliklerini kendiniz " +"yapmak zorunda kalacak ve periyodik yapılandırma iyileÅŸtirmelerinin " +"avantajlarını kullanamayacaksınız." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Çalışma Grubu / Etki Alanı Adı:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Lütfen bu sistem için bir çalışma grubu belirtin. Bu ayar sistemin sunucu " +"olarak kullanıldığı durumda hangi çalışma grubunda gözükeceÄŸini " +"belirleyeceÄŸi gibi, aÄŸda yapılacak göz atmalarda öntanımlı çalışma grubu " +"olacak ve ayrıca \"security=domain\" ayarında etki alanı adı olarak " +"kullanılacaktır." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Samba 3'ten yükseltilsin mi?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "Varolan yapılandırma dosyalarının Samba 3'ten Samba 4'e aktarımı " +#~ "mümkündür. Karmaşık yapılandırmalar için aktarımın baÅŸarısız olma " +#~ "olasılığı yüksek olsa da, kurulumların çoÄŸunluÄŸu için iyi bir baÅŸlangıç " +#~ "noktası saÄŸlayacaktır." + +#~ msgid "Server role" +#~ msgstr "Sunucu görevi" + +#~ msgid "" +#~ "Domain controllers manage NT4-style or Active Directory domains and " +#~ "provide services such as identity management and domain logons. Each " +#~ "domain needs to have a at least one domain controller." +#~ msgstr "" +#~ "Etki alanı denetleyicileri NT4 ya da Active Directory alanlarını yönetir, " +#~ "kimlik yönetimi ve oturum açma gibi hizmetleri sunarlar. Her alanın en az " +#~ "bir etki alanı denetleyicisi olmalıdır." + +#~ msgid "" +#~ "Member servers can be part of a NT4-style or Active Directory domain but " +#~ "do not provide any domain services. Workstations and file or print " +#~ "servers are usually regular domain members." +#~ msgstr "" +#~ "Ãœye sunucular NT4 ya da Active Directory alanının bir parçası " +#~ "olabilirler; fakat herhangi bir etki alanı hizmeti sunmazlar. Ä°ÅŸ " +#~ "istasyonları ve dosya ya da yazıcı sunucuları genellikle sıradan etki " +#~ "alanı üyeleridirler." + +#~ msgid "" +#~ "A standalone server can not be used in a domain and only supports file " +#~ "sharing and Windows for Workgroups-style logins." +#~ msgstr "" +#~ "Tek başına bir sunucu etki alanı içinde genellikle kullanılmaz ve " +#~ "yalnızca dosya paylaşımı ile Windows for Workgroups türü kullanıcı " +#~ "giriÅŸlerini destekler." + +#~ msgid "" +#~ "If no server role is specified, the Samba server will not be provisioned, " +#~ "so this can be done manually by the user." +#~ msgstr "" +#~ "Herhangi bir sunucu görevi tanımlanmazsa, daha sonra kullanıcısı " +#~ "tarafından elle düzenlenmek üzere, Samba sunucusu görev tanımı " +#~ "yapılmayacaktır." + +#~ msgid "Realm name:" +#~ msgstr "Bölge adı:" + +#~ msgid "" +#~ "Please specify the Kerberos realm for the domain that this domain " +#~ "controller controls." +#~ msgstr "" +#~ "Lütfen bu etki alanı denetleyicisinin etkisindeki Kerberos bölgesini " +#~ "belirtiniz." + +#~ msgid "Usually this is the a capitalized version of your DNS hostname." +#~ msgstr "Bu genellikle DNS alan adınızın büyük harflerle yazılmış ÅŸeklidir." + +#~ msgid "New password for the Samba \"administrator\" user:" +#~ msgstr "Samba \"administrator\" kullanıcısı için yeni parola:" + +#~ msgid "If this field is left blank, a random password will be generated." +#~ msgstr "BoÅŸ bırakırsanız, rastgele bir parola oluÅŸturulacaktır." + +#~ msgid "A password can be set later by running, as root:" +#~ msgstr "Parola, root kullanıcı kimliÄŸi ile, daha sonra da oluÅŸturulabilir:" + +#~ msgid "Repeat password for the Samba \"administrator\" user:" +#~ msgstr "Samba \"administrator\" kullanıcısının parolasını yineleyiniz:" + +#~ msgid "Password input error" +#~ msgstr "Parola giriÅŸi hatası" + +#~ msgid "The two passwords you entered were not the same. Please try again." +#~ msgstr "GirdiÄŸiniz parolalar eÅŸleÅŸmiyor. Lütfen yeniden deneyiniz." + +#~ msgid "Use password encryption?" +#~ msgstr "Parola ÅŸifrelenmesi kullanılsın mı?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Yeni Windows istemcileri SMB/CIFS sunucularıyla ÅŸifrelenmiÅŸ parolalar " +#~ "kullanarak iletiÅŸim kurarlar. EÄŸer düz metin parolalar kullanmak " +#~ "istiyorsanız Windows kayıt defterinde bir parametreyi deÄŸiÅŸtirmeniz " +#~ "gerekecektir." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Düz metin parola desteÄŸi artık Microsoft Windows ürünlerinde " +#~ "bulunmadığından bu seçeneÄŸi kullanmanız ÅŸiddetle önerilir. EÄŸer bu " +#~ "seçeneÄŸi kullanacaksanız, geçerli bir /etc/samba/smbpasswd dosyanız " +#~ "olduÄŸundan emin olunuz ve smbpasswd komutunu kullanarak bütün " +#~ "kullanıcılar için parola belirleyiniz." + +#~ msgid "Samba server" +#~ msgstr "Samba sunucusu" + +#~ msgid "daemons" +#~ msgstr "artalan süreçleri" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Samba'nın nasıl çalışmasını istersiniz?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Samba artalan süreci smbd, normal bir artalan süreci olarak veya " +#~ "inetd'den çalışabilir. Tavsiye edilen yaklaşım artalan süreci olarak " +#~ "çalıştırmaktır." + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "Samba 4'ü PDC olarak ayarla?" + +#~ msgid "" +#~ "Even when using this option, you will need to set up DNS such that it " +#~ "serves the data from the zone file in that directory before you can use " +#~ "the Active Directory domain." +#~ msgstr "" +#~ "Bu seçeneÄŸi kullanıyor olsanız bile, Active Directory etki alanı " +#~ "kullanıma girmeden öncebu dizindeki bölge dosyasındaki veriyi sunan bir " +#~ "DNS yapılandırmanız gerekecek." + +#~ msgid "" +#~ "Please specify the Kerberos realm this server will be in. In many cases, " +#~ "this will be the same as the DNS domain name." +#~ msgstr "" +#~ "Lütfen bu sunucunun içinde yer alacağı Kerberos realm'ı belirtin. ÇoÄŸu " +#~ "durumda, bu isim DNS etki alanı ile aynıdır." diff --git a/debian/po/vi.po b/debian/po/vi.po new file mode 100644 index 0000000..7a755e9 --- /dev/null +++ b/debian/po/vi.po @@ -0,0 +1,227 @@ +# Vietnamese translation for Samba. +# Copyright © 2008 Free Software Foundation, Inc. +# Clytie Siddall <clytie@riverland.net.au>, 2005-2008. +# +msgid "" +msgstr "" +"Project-Id-Version: samba4 4.0.0~alpha4~20080617-1\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2008-06-17 18:40+0930\n" +"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n" +"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: LocFactoryEditor 1.7b3\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Sá»a đổi « smb.conf » để dùng thiết láºp WINS từ DHCP ?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Nếu máy tÃnh của bạn lấy thông tin địa chỉ IP từ má»™t trình phục vụ DHCP nằm " +"trên mạng, trình phục vụ DHCP có lẽ cÅ©ng có khả năng cung cấp thông tin vá» " +"trình phục vụ WINS (« NetBIOS name servers ») cÅ©ng nằm trên mạng. Dịch vụ " +"nà y cần thiết bạn sá»a đổi táºp tin « smb.conf » của mình để cho phép thiết " +"láºp WINS do DHCP cung cấp sẽ được Ä‘á»c tá»± Ä‘á»™ng từ táºp tin « /etc/samba/dhcp." +"conf »." + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "Äể nhá»› dịp tÃnh năng nà y, bạn cần phải cà i đặt gói « dhcp-client »." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Tá»± Ä‘á»™ng cấu hình « smb.conf » ?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Phần còn lại của cấu hình Samba Ä‘á» cáºp các câu há»i vá» tham số trong táºp tin " +"« /etc/samba/smb.conf », táºp tin được dùng để cấu hình các chÆ°Æ¡ng trình " +"Samba (nmbd và smbd). Táºp tin « smb.conf » hiện thá»i chứa má»™t dòng « include " +"» (gồm) hay má»™t tùy chá»n chiếm nhiá»u dòng, mà có thể gây ra lá»—i trong tiến " +"trình cấu hình tá»± Ä‘á»™ng thì cần thiết bạn tá»± sá»a đổi táºp tin « smb.conf » " +"mình để kÃch hoạt lại nó." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Không báºt tùy chá»n nà y thì bạn cần phải tá»± quản lý thay đổi cấu hình nà o, và " +"không thể nhá»› dịp sá»± tăng cÆ°á»ng cấu hình định kỳ." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Tên Nhóm là m việc/Miá»n:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"Hãy xác định nhóm là m việc cho hệ thống nà y. Thiết láºp nà y Ä‘iá»u khiển nhóm " +"là m việc trong đó hệ thống sẽ xuất hiện khi dùng là m trình phục vụ (nhóm là m " +"việc mặc định được dùng khi duyệt qua giao diện) và tên miá»n được dùng vá»›i " +"thiết láºp « security=domain » (bảo máºt=miá»n)." + +#~ msgid "Upgrade from Samba 3?" +#~ msgstr "Nâng cấp từ Samba 3 không?" + +#~ msgid "" +#~ "It is possible to migrate the existing configuration files from Samba 3 " +#~ "to Samba 4. This is likely to fail for complex setups, but should provide " +#~ "a good starting point for most existing installations." +#~ msgstr "" +#~ "Có thể nâng cấp các táºp tin cấu hình đã tồn tại từ Samba phiên bản 3 lên " +#~ "Samba phiên bản 4. Rất có thể không thà nh công đối vá»›i thiết láºp phức " +#~ "tạp, nhÆ°ng nên cung cấp má»™t Ä‘iểm bắt đầu hữu Ãch cho phần lá»›n bản cà i đặt " +#~ "đã có." + +#, fuzzy +#~ msgid "Realm name:" +#~ msgstr "Äịa hạt:" + +#~ msgid "Use password encryption?" +#~ msgstr "Gá»i máºt khẩu máºt mã ?" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Má»i ứng dụng khách Windows gần đây Ä‘á»u liên lạc vá»›i trình phục vụ SMB/" +#~ "CIFS dùng máºt khẩu đã máºt mã. Vẫn muốn sá» dụng máºt khẩu « nháºp thô " +#~ "» (không có máºt mã) thì bạn cần phải thay đổi má»™t tham số trong sổ đăng " +#~ "ký (registry) Windows của mình." + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Rất khuyên bạn báºt tùy chá»n nà y, vì há»— trợ máºt khẩu nháºp thô không còn " +#~ "được duy trì lại trong sản phẩm MS Windows. CÅ©ng hãy kiểm tra lại có má»™t " +#~ "táºp tin « /etc/samba/smbpasswd » đúng, và đặt trong nó má»™t máºt khẩu cho " +#~ "má»—i ngÆ°á»i dùng sẽ sá» dụng lệnh smbpasswd." + +#~ msgid "daemons" +#~ msgstr "trình ná»n" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Muốn chạy Samba nhÆ° thế nà o?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Trình ná»n Samba smbd có khả năng chạy là m má»™t trình ná»n tiêu chuẩn, hoặc " +#~ "từ inetd. PhÆ°Æ¡ng pháp khuyến khÃch là chạy là m trình ná»n." + +#~ msgid "Set up Samba 4 as a PDC?" +#~ msgstr "Thiết láºp Samba 4 nhÆ° là má»™t PDC không?" + +#~ msgid "" +#~ "Even when using this option, you will need to set up DNS such that it " +#~ "serves the data from the zone file in that directory before you can use " +#~ "the Active Directory domain." +#~ msgstr "" +#~ "Ngay cả khi báºt tùy chá»n nà y, bạn cần phải thiết láºp dịch vụ DNS để phục " +#~ "vụ dữ liệu từ táºp tin khu vá»±c trong thÆ° mục đó, trÆ°á»›c khi bạn có khả năng " +#~ "sá» dụng miá»n ThÆ° mục Hoạt Ä‘á»™ng." + +#~ msgid "" +#~ "Please specify the Kerberos realm this server will be in. In many cases, " +#~ "this will be the same as the DNS domain name." +#~ msgstr "" +#~ "Hãy xác định địa hạt Kerberos sẽ chứa máy phục vụ nà y. Trong nhiá»u trÆ°á»ng " +#~ "hợp Ä‘á»u, địa hạt trùng vá»›i tên miá»n DNS." + +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Hãy xác định miá»n trong đó bạn muốn máy phục vụ có vẻ nằm khi ứng dụng " +#~ "khách há»i." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "Tạo cÆ¡ sở dữ liệu máºt khẩu samba « /var/lib/samba/passdb.tdb » ?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Äể tÆ°Æ¡ng thÃch vá»›i các giá trị mặc định trong háºu hết các phiên bản " +#~ "Windows, phần má»m Samba phải được cấu hình để sá» dụng máºt khẩu đã máºt mã. " +#~ "Cấu hình nà y cần thiết các máºt khẩu ngÆ°á»i dùng được cất giữ trong má»™t táºp " +#~ "tin khác vá»›i « /etc/passwd ». Táºp tin nà y có thể được tá»± Ä‘á»™ng tạo, còn " +#~ "những máºt khẩu phải được thêm thủ công bằng cách chạy smbpaswd; cÅ©ng cần " +#~ "phải cứ cáºp nháºt chúng trong tÆ°Æ¡ng lai." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Không tạo táºp tin đó thì bạn cần phải cấu hình lại Samba (rất có thể là " +#~ "cÅ©ng cần cấu hình lại má»i máy khách) để sá» dụng máºt khẩu nháºp thô." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Äể tìm chi tiết, xem tà i liệu « /usr/share/doc/samba-doc/htmldocs/Samba3-" +#~ "Developers-Guide/pwencrypt.html » từ gói tà i liệu samba-doc." diff --git a/debian/po/wo.po b/debian/po/wo.po new file mode 100644 index 0000000..5078889 --- /dev/null +++ b/debian/po/wo.po @@ -0,0 +1,240 @@ +# translation of wo.po to Wolof +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Mouhamadou Mamoune Mbacke <mouhamadoumamoune@gmail.com>, 2006, 2007. +msgid "" +msgstr "" +"Project-Id-Version: wo\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2007-04-30 18:13+0000\n" +"Last-Translator: Mouhamadou Mamoune Mbacke <mouhamadoumamoune@gmail.com>\n" +"Language-Team: Wolof\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "Ndax nu soppi smb.con ba muy jëfandikoo komfiguraasioÅ‹ bu DHCP?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"Bu fekkee sa kompiyutar mi ngi ame adrees IP ci ab serwóor DHCP bu ne ci " +"resóo bi, kon serwóor DHCP bi man na yitam di joxe ay xamle yu aju ci " +"serwóor WINS yi (\"NetBIOS name servers\") yi nekk ci resóo bi. Loolu nak " +"dana laaj ak coppat ci sa fiise smb.conf, ngir ba komfiguraasioÅ‹ yi DHCP bi " +"di joxe ñukoy jaÅ‹gale sune boppu ci fiise /var/lib/samba/dhcp.conf" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "Paket bu dhcp-client nak wareesna koo istale ngir jariñoo defiin wii." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "Ndax ñu komfigureel smb.conf sunu boppu?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"Li des ci komfiguraasioÅ‹ bu samba ay laaj la yu aju ci parameetar yu /etc/" +"samba/smb.conf, nga xam ne mooy fiise biñuy jëfandikoo ngir komfigure " +"prograam yu samba (nmbd ak smbd). Sa fiise smb.conf bii nga yore fii mune, " +"amna aw bind wu 'include' walla ab tann bu tallalu ci ay bind yu bare, ta " +"loolu man naa jaxase komfiguraasioÅ‹ otomatik bi, ba taxna danga koy wara " +"soppi ak sa loxo, ngir léppu awaat yoon." + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"Bu fekkee tannoo lii, kon bépp coppat booy def ci komfiguraasioÅ‹ bi danga " +"koy defal sa boppu, ta kon doo mana jariñu ci rafetal ak jekkal yiñuy farala " +"def ci komfiguraasioÅ‹ bi." + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "Grup bu liggéey/Turu domen:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#~ msgid "Use password encryption?" +#~ msgstr "Ndax ñu kiripte baatujall yi?" + +#, fuzzy +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "Mbooleem kiliyaÅ‹ yu Windows yu yees yi buñuy jokkoo ak SMB dañuy " +#~ "jëfandikoo baatijall yuñu kiripte. Boo bëggée jëfandikoo baatijall yu " +#~ "tekst yu leer, kon dangay wara soppi ab parameetar ci register bu Windows." + +#, fuzzy +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "Ñoongi deÅ‹kaane bubaax nga tann lii. Boo ko defee, na nga wóorlu ne amnga " +#~ "ab fiise /etc/samba/smbpasswd bu baax, ta nga def foofa baatujall bu " +#~ "jëfandikukat yéppu. Dangay jëfandikoo komaand bu smbpasswd." + +#~ msgid "daemons" +#~ msgstr "daemon yi" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "Nan nga bëgga doxale samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Daemon bu Samba smbd maneesna koo doxal ne ab deamon normaal, maneesna " +#~ "koo doxale yit ak inetd. Liñuy deÅ‹kaane nak mooy doxalko muy ab daemon." + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "Joxeel grup bu liggéey binga bëgg serwóor bii di mel ne ci bokk buko ay " +#~ "kiliyaÅ‹ di laaj. Nga bayyi xel ne parameetar bii mooy konturle yitam turu " +#~ "domen biñuy jëfandikoo ci komfiguraasioÅ‹ bu security=domain." + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "Ndax ñu sos baasu done bu baatujall yu samba, /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "Ngir mana dëppóo ak defóo bu li ëppu ci wersioÅ‹ yu Windows yi, samba " +#~ "deeskoo wara komfigure muy jëfandikoo baatijall yuñu kiripte. Loolu dafay " +#~ "laaj ñu deñc baatijall yi ci ab fiise bu bokkul ak /etc/passwd. Fiise " +#~ "boobu manessna koo sos sosuk otomatik, waaye kon baatijall yi deesleen " +#~ "ciy wara dugël ak loxo, doxal smbpasswd, ta buko defee ñu leen di yeesal " +#~ "saa yuñu ko soxlawaatee." + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "Boo ko sosul, kon fawwu nga komfigure Samba (amaana yit sa masin yu " +#~ "kiliyaÅ‹ yi) def leen ñuy jëfandikoo baatijall yu text normaal (plain " +#~ "text)." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "Xoolal /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html bi nekk ci paket " +#~ "bu samba-doc, ngir am yaneen leeral." + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Ceene passdb backends manula nekk" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "Liko dale ci version 3.0.23 ba leegi, samba naÅ‹gootul ceene ay backends " +#~ "yu bare ci parameetaru \"passdb backend\". Dafa mel ne nak sa fiise " +#~ "smb.conf dafa am parameetaru passdb backend budoon ab list bu ay backend. " +#~ "version bu samba bu beesbi du naÅ‹goo dox fii ak ngay defaraat loolu." + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "" +#~ "Ndax nu toxal /etc/samba/smbpasswd yobbuko ci /var/lib/samba/passdb.tdb?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 dafa indaale ab interfaas bu baasu done SAM bu gëna mat, buy " +#~ "wuutu fiise bu /etc/samba/smbpasswd" + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "Feddlin baxam bëggnga fiise smbpasswd bifi nekk ñu toxalalko suñu boppy " +#~ "yobbuko ca /var/lib/samba/passdb.tdb. Bul tann lii bu fekkee yaangi jappa " +#~ "jëfandikoo baneen paket bu pdb (ci misaal LDAP)." + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "Xoolal /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/" +#~ "pwencrypt.html bi nekk ci paket bu samba-doc, ngir am yaneen leeral." diff --git a/debian/po/zh_CN.po b/debian/po/zh_CN.po new file mode 100644 index 0000000..69210e5 --- /dev/null +++ b/debian/po/zh_CN.po @@ -0,0 +1,230 @@ +# Simplified Chinese translation for samba package's debconf msg +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Haifeng Chen <optical.dlz@gmail.com>, 2006 +# Carlos Z.F. Liu <carlosliu@users.sourceforge.net>, 2006 +# +msgid "" +msgstr "" +"Project-Id-Version: 3.0.22-1\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2006-10-03 19:36-0500\n" +"Last-Translator: Carlos Z.F. Liu <carlosliu@users.sourceforge.ent>\n" +"Language-Team: Debian Chinese [GB] <debian-chinese-gb@lists.debian.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "è¦ä¿®æ”¹ smb.conf 以使用从 DHCP 获得的 WINS 设定å—?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"如果您的计算机是从网络上的 DHCP æœåŠ¡å™¨èŽ·å– IP 地å€ä¿¡æ¯ï¼Œè¯¥ DHCP æœåŠ¡ä¹Ÿå¯èƒ½ä¼š" +"æ供网络上的 WINS æœåŠ¡å™¨ (“NetBIOS 域åæœåŠ¡â€) ä¿¡æ¯ã€‚这需è¦å¯¹æ‚¨çš„ smb.conf è¿›" +"行修改,以自动从 /var/lib/samba/dhcp.conf è¯»å– DHCP 所æ供的 WINS 设置。" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "必须安装 dhcp-client 软件包,æ‰èƒ½ä½¿ç”¨æ¤é¡¹ç‰¹æ€§ã€‚" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "自动é…ç½® smb.conf å—?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"余下的 Samba é…置涉åŠé‚£äº›å½±å“ /etc/samba/smb.conf ä¸å‚数的问题。æ¤æ–‡ä»¶æ˜¯ç”¨æ¥" +"é…ç½® Samba ç¨‹åº (nmbd å’Œ smbd)。您目å‰çš„ smb.conf 包括一个“includeâ€è¡Œæˆ–者一个" +"跨越多行的选项,这将æ…乱自动é…置程åºå¹¶éœ€è¦æ‚¨æ‰‹åŠ¨ä¿®æ”¹ smb.conf 以使其æ£å¸¸å·¥" +"作。" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"如果您ä¸é€‰ä¸æ¤é¡¹ï¼Œæ‚¨å°±å¿…须自己处ç†æ‰€æœ‰çš„é…置改å˜ï¼Œä¹Ÿæ— 法享å—到定期的é…置改进" +"特性。" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "工作组/域å:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" + +#~ msgid "Use password encryption?" +#~ msgstr "使用å£ä»¤åŠ 密å—?" + +#, fuzzy +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "较新的 Windows å®¢æˆ·ç«¯éƒ½ä½¿ç”¨åŠ å¯†çš„å£ä»¤ä¸Ž SMB æœåŠ¡å™¨é€šè®¯ã€‚如果您想使用明文密" +#~ "ç ,您将需è¦ä¿®æ”¹æ‚¨çš„ Windows 注册表ä¸çš„一个å‚数。" + +#, fuzzy +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "强烈推èå¼€å¯æ¤é€‰é¡¹ã€‚如果选ä¸ï¼Œè¯·ç¡®ä¿æ‚¨æ‹¥æœ‰ä¸€ä¸ªæœ‰æ•ˆçš„ /etc/samba/smbpasswd " +#~ "文件,并且æ¤æ–‡ä»¶åŒ…å«ç”¨ smbpasswd 命令为æ¯ä¸ªç”¨æˆ·è®¾å®šçš„密ç 。" + +#~ msgid "daemons" +#~ msgstr "守护进程" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "您想如何è¿è¡Œ Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Samba 守护进程 smbd å¯ä»¥ä½œä¸ºæ™®é€šå®ˆæŠ¤è¿›ç¨‹æˆ–者从 inetd å¯åŠ¨ã€‚以守护进程的方" +#~ "å¼è¿è¡Œæ˜¯æŽ¨èçš„æ–¹å¼ã€‚" + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "请指定本æœåŠ¡å™¨åœ¨æ”¶åˆ°å®¢æˆ·ç«¯æŸ¥è¯¢æ—¶å°†è¦æ˜¾ç¤ºçš„工作组。请注æ„,æ¤å‚æ•°åŒæ ·ä¹ŸæŽ§åˆ¶" +#~ "了 security=demain 设置所用的域å。" + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "è¦åˆ›å»º samba 密ç æ•°æ®åº“ /var/lib/samba/passdb.tdb å—?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "è¦ä¸Žå¤§å¤šæ•° Windows 的默认设置兼容,Samba å¿…é¡»è¢«è®¾ç½®ä¸ºä½¿ç”¨åŠ å¯†å£ä»¤ã€‚这需è¦" +#~ "将用户å£ä»¤ä¿å˜ç‹¬ç«‹äºŽ /etc/passwd 之外的一个文件ä¸ã€‚æ¤æ–‡ä»¶å¯ä»¥è‡ªåŠ¨åˆ›å»ºï¼Œä½†" +#~ "å£ä»¤å¿…须通过è¿è¡Œ smbpasswd æ¥æ‰‹åŠ¨æ·»åŠ 并ä¿æŒæ›´æ–°ã€‚" + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "å¦‚æžœæ‚¨æ— æ³•åˆ›å»ºå®ƒï¼Œæ‚¨å°±å¿…é¡»é‡æ–°é…ç½® samba (å¯èƒ½è¿˜åŒ…括您的客户端机器) 以使用" +#~ "明文å£ä»¤ã€‚" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "更多详情,请å‚阅 smaba-doc 软件包ä¸çš„ /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html。" + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "ä¸æ”¯æŒä¸²è” passdb åŽç«¯" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "从版本 3.0.23 开始,samba çš„ \"passdb backend\" å‚æ•°ä¸å†æ”¯æŒå¤šä¸ªåŽç«¯çš„串" +#~ "è”ã€‚è€Œåœ¨ä½ çš„ smb.conf 文件ä¸çš„ passdb backend å‚数包å«äº†ä¸€ä¸ªåŽç«¯åˆ—表。如果" +#~ "ä¸ä¿®æ”¹è¿™ä¸ªé—®é¢˜çš„è¯ï¼Œæ–°ç‰ˆæœ¬çš„ samba å°†ä¸èƒ½å·¥ä½œã€‚" + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "è¦ç§»åŠ¨ /etc/samba/smbpasswd 到 /var/lib/samba/passdb.tdb å—?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 引入了一ç§æ›´å®Œæ•´çš„ SAM æ•°æ®åº“接å£ï¼Œå¹¶ç”¨å…¶å–代了 /etc/samba/" +#~ "smbpasswd 文件。" + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "请确定您是å¦æƒ³å°†çŽ°æœ‰çš„ smbpasswd 文件自动移æ¤ä¸º /var/lib/samba/passdb." +#~ "tdb。如果您计划使用其它的 pdb åŽç«¯ (如 LDAP) çš„è¯ï¼Œè¯·ä¸è¦é€‰ä¸æ¤é€‰é¡¹ã€‚" + +#~ msgid "daemons, inetd" +#~ msgstr "守护进程, inetd" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "更多详情,请å‚阅 smaba-doc 软件包ä¸çš„ /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html。" diff --git a/debian/po/zh_TW.po b/debian/po/zh_TW.po new file mode 100644 index 0000000..8edbfda --- /dev/null +++ b/debian/po/zh_TW.po @@ -0,0 +1,226 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: samba\n" +"Report-Msgid-Bugs-To: samba@packages.debian.org\n" +"POT-Creation-Date: 2017-07-17 16:42+0200\n" +"PO-Revision-Date: 2007-03-13 23:18+0800\n" +"Last-Translator: Asho Yeh <asho@debian.org.tw>\n" +"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Country: TAIWAN\n" + +#. Type: title +#. Description +#: ../samba-common.templates:1001 +msgid "Samba server and utilities" +msgstr "" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "Modify smb.conf to use WINS settings from DHCP?" +msgstr "è¦ä¿®æ”¹ smb.conf 以使用 DHCP å–å¾— WINS è¨å®šå—Žï¼Ÿ" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"If your computer gets IP address information from a DHCP server on the " +"network, the DHCP server may also provide information about WINS servers " +"(\"NetBIOS name servers\") present on the network. This requires a change " +"to your smb.conf file so that DHCP-provided WINS settings will automatically " +"be read from /var/lib/samba/dhcp.conf." +msgstr "" +"如果您的電腦是從網絡上的 DHCP 伺æœå™¨å–å¾— IP 地å€è³‡è¨Šï¼Œè©² DHCP æœå‹™ä¹Ÿå¯èƒ½æœƒæ" +"供網路上的 WINS 伺æœå™¨ (“NetBIOS å稱æœå‹™â€) 資訊。這需è¦å°æ‚¨çš„ smb.conf 進行" +"修改,以自動從 /var/lib/samba/dhcp.conf è®€å– DHCP 所æ供的 WINS è¨å®šã€‚" + +#. Type: boolean +#. Description +#: ../samba-common.templates:2001 +msgid "" +"The dhcp-client package must be installed to take advantage of this feature." +msgstr "å¿…é ˆå®‰è£ dhcp-client 套件,æ‰èƒ½ä½¿ç”¨æ¤é …特性。" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "Configure smb.conf automatically?" +msgstr "自動è¨å®š smb.conf 嗎?" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"The rest of the configuration of Samba deals with questions that affect " +"parameters in /etc/samba/smb.conf, which is the file used to configure the " +"Samba programs (nmbd and smbd). Your current smb.conf contains an \"include" +"\" line or an option that spans multiple lines, which could confuse the " +"automated configuration process and require you to edit your smb.conf by " +"hand to get it working again." +msgstr "" +"剩下的 Sabma è¨å®šå°‡è™•ç†é‚£äº›æœƒå½±éŸ¿åˆ° /etc/samba/smb.conf ä¸çš„åƒæ•¸çš„å•é¡Œã€‚這個" +"檔案是用來è¨å®š Sabma 程å¼ï¼ˆnmbd å’Œ smbd)。但您目å‰çš„ smb.conf 裡ä¸åŒ…å«äº†ä¸€" +"è¡Œ \"include\",或是有æŸå€‹é¸é …跨越多行,這將會攪亂自動è¨å®šç¨‹åºï¼Œä½¿å¾—æ‚¨å¿…é ˆæ‰‹" +"動修復 smb.conf æ‰èƒ½è®“它æ£å¸¸é‹ä½œã€‚" + +#. Type: boolean +#. Description +#: ../samba-common.templates:3001 +msgid "" +"If you do not choose this option, you will have to handle any configuration " +"changes yourself, and will not be able to take advantage of periodic " +"configuration enhancements." +msgstr "" +"如果您ä¸é¸å–這個é¸é …ï¼Œæ‚¨å°±å¿…é ˆè‡ªè¡Œè™•ç†æ‰€æœ‰çš„è¨å®šä¸Šçš„改變,åŒæ™‚也將無法å—益於" +"定期的è¨å®šæ”¹é€²æ‰€å¸¶ä¾†çš„好處。" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "Workgroup/Domain Name:" +msgstr "群組/網域:" + +#. Type: string +#. Description +#: ../samba-common.templates:4001 +msgid "" +"Please specify the workgroup for this system. This setting controls which " +"workgroup the system will appear in when used as a server, the default " +"workgroup to be used when browsing with various frontends, and the domain " +"name used with the \"security=domain\" setting." +msgstr "" +"請指定這個系統的群組。這個é¸é …控制了當它åšç‚ºä¼ºæœå™¨æ™‚,這個系統會出ç¾åœ¨å“ªå€‹ç¾¤" +"組裡ã€ä»¥åŠå¾ˆå¤šå‰ç«¯ç¨‹å¼åœ¨ç€è¦½æ™‚所會使用的é è¨ç¾¤çµ„ï¼Œä»¥åŠ \"security=domain\" 這" +"個è¨å®šæ‰€æœƒç”¨åˆ°çš„網域å稱。" + +#~ msgid "Use password encryption?" +#~ msgstr "ä½¿ç”¨å¯†ç¢¼åŠ å¯†å—Žï¼Ÿ" + +#~ msgid "" +#~ "All recent Windows clients communicate with SMB/CIFS servers using " +#~ "encrypted passwords. If you want to use clear text passwords you will " +#~ "need to change a parameter in your Windows registry." +#~ msgstr "" +#~ "所有較新的 Windows 用戶端在和 SMB/CIFS 伺æœå™¨é€šè¨Šæ™‚éƒ½æœƒä½¿ç”¨åŠ å¯†å¯†ç¢¼ã€‚å¦‚æžœ" +#~ "您想使用明文密碼,您將需è¦ä¿®æ”¹æ‚¨çš„ Windows 登錄表ä¸çš„一個åƒæ•¸ã€‚" + +#~ msgid "" +#~ "Enabling this option is highly recommended as support for plain text " +#~ "passwords is no longer maintained in Microsoft Windows products. If you " +#~ "do, make sure you have a valid /etc/samba/smbpasswd file and that you set " +#~ "passwords in there for each user using the smbpasswd command." +#~ msgstr "" +#~ "強烈建è°èƒ½å•Ÿç”¨é€™å€‹é¸é …ï¼Œå› ç‚º Microsoft Windows 系列產å“å°æ˜Žæ–‡å¯†ç¢¼çš„支æ´å·²" +#~ "沒有在ç¶è·äº†ã€‚如果您è¦å•Ÿç”¨çš„話,請確èªæ‚¨æœ‰å€‹æœ‰æ•ˆçš„ /etc/samba/smbpasswd " +#~ "檔,且其ä¸åŒ…å«äº†ä½¿ç”¨ smbpasswd 指令替æ¯å€‹ä½¿ç”¨è€…所è¨å®šçš„密碼。" + +#~ msgid "daemons" +#~ msgstr "背景æœå‹™" + +#~ msgid "inetd" +#~ msgstr "inetd" + +#~ msgid "How do you want to run Samba?" +#~ msgstr "您想如何執行 Samba?" + +#~ msgid "" +#~ "The Samba daemon smbd can run as a normal daemon or from inetd. Running " +#~ "as a daemon is the recommended approach." +#~ msgstr "" +#~ "Samba 背景æœå‹™ç¨‹å¼ smbd å¯ä»¥ä½œç‚ºæ™®é€šçš„背景æœå‹™æˆ–者從 inetd 啟動。以背景æœ" +#~ "務的方å¼åŸ·è¡Œæ˜¯æŽ¨è–¦çš„æ–¹å¼ã€‚" + +#, fuzzy +#~| msgid "" +#~| "Please specify the workgroup you want this server to appear to be in " +#~| "when queried by clients. Note that this parameter also controls the " +#~| "domain name used with the security=domain setting." +#~ msgid "" +#~ "Please specify the domain you want this server to appear to be in when " +#~ "queried by clients." +#~ msgstr "" +#~ "請指定本伺æœå™¨åœ¨æ”¶åˆ°å®¢æˆ¶ç«¯æŸ¥è©¢æ™‚å°‡è¦é¡¯ç¤ºçš„群組。請注æ„,æ¤åƒæ•¸åŒæ¨£ä¹ŸæŽ§åˆ¶" +#~ "了 security=demain è¨ç½®æ‰€ç”¨çš„網域å。" + +#~ msgid "Create samba password database, /var/lib/samba/passdb.tdb?" +#~ msgstr "è¦å»ºç«‹ samba 密碼資料庫 /var/lib/samba/passdb.tdb 嗎?" + +#~ msgid "" +#~ "To be compatible with the defaults in most versions of Windows, Samba " +#~ "must be configured to use encrypted passwords. This requires user " +#~ "passwords to be stored in a file separate from /etc/passwd. This file " +#~ "can be created automatically, but the passwords must be added manually by " +#~ "running smbpasswd and be kept up-to-date in the future." +#~ msgstr "" +#~ "è¦èˆ‡å¤§å¤šæ•¸ Windows çš„é è¨è¨å®šç›¸å®¹ï¼ŒSamba å¿…é ˆè¢«è¨å®šç‚ºä½¿ç”¨åŠ 密密碼。這需è¦" +#~ "將使用者密碼ä¿å˜ç¨ç«‹æ–¼ /etc/passwd 之外的一個檔案ä¸ã€‚æ¤æª”案å¯ä»¥è‡ªå‹•å»ºç«‹ï¼Œ" +#~ "ä½†å¯†ç¢¼å¿…é ˆé€šéŽåŸ·è¡Œ smbpasswd ä¾†æ‰‹å‹•æ·»åŠ ä¸¦ä¿æŒæ›´æ–°ã€‚" + +#~ msgid "" +#~ "If you do not create it, you will have to reconfigure Samba (and probably " +#~ "your client machines) to use plaintext passwords." +#~ msgstr "" +#~ "å¦‚æžœæ‚¨ç„¡æ³•å»ºç«‹å®ƒï¼Œæ‚¨å°±å¿…é ˆé‡æ–°è¨å®š samba (å¯èƒ½é‚„包括您的客戶端機器) 以使用" +#~ "明文密碼。" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/ENCRYPTION.html from the samba-doc " +#~ "package for more details." +#~ msgstr "" +#~ "更多詳情,請åƒé–± smaba-doc 套件ä¸çš„ /usr/share/doc/samba-doc/htmldocs/" +#~ "ENCRYPTION.html。" + +#~ msgid "Chaining passdb backends is not supported" +#~ msgstr "Chaining passdb backendså°‡ä¸å†æ”¯æ´ã€‚" + +#~ msgid "" +#~ "Beginning with version 3.0.23, samba no longer supports chaining multiple " +#~ "backends in the \"passdb backend\" parameter. It appears that your smb." +#~ "conf file contains a passdb backend parameter consisting of a list of " +#~ "backends. The new version of samba will not work until you correct this." +#~ msgstr "" +#~ "從版本3.0.23開始,在\"passdb backed\"é¸é …ä¸ï¼Œä¸å†æ”¯æ´å¤šé‡å¾Œç«¯èªè‰æ©Ÿåˆ¶ã€‚您" +#~ "çš„smb.conf檔夾帶著ä¸æ”¯æ´çš„後端èªè‰æ©Ÿåˆ¶ã€‚除éžæ‚¨ä¿®æ£é€™å€‹éŒ¯èª¤ï¼Œå¦å‰‡æ–°ç‰ˆçš„" +#~ "samba將無法使用。" + +#~ msgid "Move /etc/samba/smbpasswd to /var/lib/samba/passdb.tdb?" +#~ msgstr "è¦ç§»å‹• /etc/samba/smbpasswd 到 /var/lib/samba/passdb.tdb 嗎?" + +#~ msgid "" +#~ "Samba 3.0 introduced a more complete SAM database interface which " +#~ "supersedes the /etc/samba/smbpasswd file." +#~ msgstr "" +#~ "Samba 3.0 引入了一種更完整的 SAM 資料庫介é¢ï¼Œä¸¦ç”¨å…¶å–代了 /etc/samba/" +#~ "smbpasswd 檔案。" + +#~ msgid "" +#~ "Please confirm whether you would like the existing smbpasswd file to be " +#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this " +#~ "option if you plan to use another pdb backend (e.g., LDAP) instead." +#~ msgstr "" +#~ "請確定您是å¦æƒ³å°‡ç¾æœ‰çš„ smbpasswd 檔案自動移æ¤ç‚º /var/lib/samba/passdb." +#~ "tdb。如果您計劃使用其它的 pdb 後端 (如 LDAP) 的話,請ä¸è¦é¸ä¸æ¤é¸é …。" + +#~ msgid "" +#~ "See /usr/share/doc/samba-doc/htmldocs/Samba3-Developers-Guide/pwencrypt." +#~ "html from the samba-doc package for more details." +#~ msgstr "" +#~ "è«‹åƒé–± samba-doc 套件的 /usr/share/doc/samba-doc/htmldocs/Samba3-" +#~ "Developers-Guide/pwencrypt.html 以å–得更多詳盡資訊。" diff --git a/debian/python3-ldb-dev.install b/debian/python3-ldb-dev.install new file mode 100644 index 0000000..188b78e --- /dev/null +++ b/debian/python3-ldb-dev.install @@ -0,0 +1,3 @@ +usr/include/samba-4.0/pyldb.h +usr/lib/*/libpyldb-util.cpython-*.so +usr/lib/*/pkgconfig/pyldb-util.cpython-*.pc diff --git a/debian/python3-ldb-dev.lintian-overrides b/debian/python3-ldb-dev.lintian-overrides new file mode 100644 index 0000000..e790d3f --- /dev/null +++ b/debian/python3-ldb-dev.lintian-overrides @@ -0,0 +1,2 @@ +# This is actually a -dev package +python3-ldb-dev: wrong-section-according-to-package-name * => python diff --git a/debian/python3-ldb.install b/debian/python3-ldb.install new file mode 100644 index 0000000..43bf0d6 --- /dev/null +++ b/debian/python3-ldb.install @@ -0,0 +1,3 @@ +usr/lib/*/libpyldb-util.cpython-*.so.* +usr/lib/python3/dist-packages/_ldb_text.py +usr/lib/python3/dist-packages/ldb.cpython-*.so diff --git a/debian/python3-ldb.lintian-overrides b/debian/python3-ldb.lintian-overrides new file mode 100644 index 0000000..7a98c45 --- /dev/null +++ b/debian/python3-ldb.lintian-overrides @@ -0,0 +1,2 @@ +python3-ldb: package-name-doesnt-match-sonames libpyldb-util.cpython-* +python3-ldb: library-not-linked-against-libc */libpyldb-util.*.so.* diff --git a/debian/python3-ldb.symbols.in b/debian/python3-ldb.symbols.in new file mode 100755 index 0000000..da17a51 --- /dev/null +++ b/debian/python3-ldb.symbols.in @@ -0,0 +1,67 @@ +#libpyldb-util${DEB_PY3_EXTENSION_SUFFIX}.2 python3-ldb #MINVER# +# PYLDB_UTIL${DEB_PY3_EXTENSION_UPCASE}_2.5.0@PYLDB_UTIL${DEB_PY3_EXTENSION_UPCASE}_2.5.0 2:2.5.0 + PYLDB_UTIL_1.1.2@PYLDB_UTIL_1.1.2 2:2.2.0 + PYLDB_UTIL_1.1.3@PYLDB_UTIL_1.1.3 2:2.0.7 + PYLDB_UTIL_1.1.4@PYLDB_UTIL_1.1.4 2:2.0.7 + PYLDB_UTIL_1.1.5@PYLDB_UTIL_1.1.5 2:2.0.7 + PYLDB_UTIL_1.1.6@PYLDB_UTIL_1.1.6 2:2.0.7 + PYLDB_UTIL_1.1.7@PYLDB_UTIL_1.1.7 2:2.0.7 + PYLDB_UTIL_1.1.8@PYLDB_UTIL_1.1.8 2:2.0.7 + PYLDB_UTIL_1.1.9@PYLDB_UTIL_1.1.9 2:2.0.7 + PYLDB_UTIL_1.1.10@PYLDB_UTIL_1.1.10 2:2.0.7 + PYLDB_UTIL_1.1.11@PYLDB_UTIL_1.1.11 2:2.0.7 + PYLDB_UTIL_1.1.12@PYLDB_UTIL_1.1.12 2:2.0.7 + PYLDB_UTIL_1.1.13@PYLDB_UTIL_1.1.13 2:2.0.7 + PYLDB_UTIL_1.1.14@PYLDB_UTIL_1.1.14 2:2.0.7 + PYLDB_UTIL_1.1.15@PYLDB_UTIL_1.1.15 2:2.0.7 + PYLDB_UTIL_1.1.16@PYLDB_UTIL_1.1.16 2:2.0.7 + PYLDB_UTIL_1.1.17@PYLDB_UTIL_1.1.17 2:2.0.7 + PYLDB_UTIL_1.1.18@PYLDB_UTIL_1.1.18 2:2.0.7 + PYLDB_UTIL_1.1.19@PYLDB_UTIL_1.1.19 2:2.0.7 + PYLDB_UTIL_1.1.20@PYLDB_UTIL_1.1.20 2:2.0.7 + PYLDB_UTIL_1.1.21@PYLDB_UTIL_1.1.21 2:2.0.7 + PYLDB_UTIL_1.1.22@PYLDB_UTIL_1.1.22 2:2.0.7 + PYLDB_UTIL_1.1.23@PYLDB_UTIL_1.1.23 1.5.4 + PYLDB_UTIL_1.1.24@PYLDB_UTIL_1.1.24 1.5.4 + PYLDB_UTIL_1.1.25@PYLDB_UTIL_1.1.25 1.5.4 + PYLDB_UTIL_1.1.26@PYLDB_UTIL_1.1.26 1.5.4 + PYLDB_UTIL_1.1.27@PYLDB_UTIL_1.1.27 1.5.4 + PYLDB_UTIL_1.1.28@PYLDB_UTIL_1.1.28 1.5.4 + PYLDB_UTIL_1.1.29@PYLDB_UTIL_1.1.29 1.5.4 + PYLDB_UTIL_1.1.30@PYLDB_UTIL_1.1.30 1.5.4 + PYLDB_UTIL_1.1.31@PYLDB_UTIL_1.1.31 1.5.4 + PYLDB_UTIL_1.2.0@PYLDB_UTIL_1.2.0 1.5.4 + PYLDB_UTIL_1.2.1@PYLDB_UTIL_1.2.1 1.5.4 + PYLDB_UTIL_1.2.2@PYLDB_UTIL_1.2.2 1.5.4 + PYLDB_UTIL_1.2.3@PYLDB_UTIL_1.2.3 1.5.4 + PYLDB_UTIL_1.3.0@PYLDB_UTIL_1.3.0 1.5.4 + PYLDB_UTIL_1.3.1@PYLDB_UTIL_1.3.1 1.5.4 + PYLDB_UTIL_1.3.2@PYLDB_UTIL_1.3.2 1.5.4 + PYLDB_UTIL_1.4.0@PYLDB_UTIL_1.4.0 1.5.4 + PYLDB_UTIL_1.4.1@PYLDB_UTIL_1.4.1 1.5.4 + PYLDB_UTIL_1.5.0@PYLDB_UTIL_1.5.0 1.5.4 + PYLDB_UTIL_1.5.1@PYLDB_UTIL_1.5.1 1.5.4 + PYLDB_UTIL_1.5.2@PYLDB_UTIL_1.5.2 1.5.4 + PYLDB_UTIL_1.5.3@PYLDB_UTIL_1.5.3 1.5.4 + PYLDB_UTIL_1.6.0@PYLDB_UTIL_1.6.0 2:2.0.7 + PYLDB_UTIL_1.6.1@PYLDB_UTIL_1.6.1 2:2.0.7 + PYLDB_UTIL_1.6.2@PYLDB_UTIL_1.6.2 2:2.0.7 + PYLDB_UTIL_1.6.3@PYLDB_UTIL_1.6.3 2:2.0.7 + PYLDB_UTIL_2.0.0@PYLDB_UTIL_2.0.0 2:2.0.7 + PYLDB_UTIL_2.0.1@PYLDB_UTIL_2.0.1 2:2.0.7 + PYLDB_UTIL_2.0.2@PYLDB_UTIL_2.0.2 2:2.0.7 + PYLDB_UTIL_2.0.3@PYLDB_UTIL_2.0.3 2:2.0.7 + PYLDB_UTIL_2.0.4@PYLDB_UTIL_2.0.4 2:2.0.7 + PYLDB_UTIL_2.0.5@PYLDB_UTIL_2.0.5 2:2.0.7 + PYLDB_UTIL_2.1.0@PYLDB_UTIL_2.1.0 2:2.1.0 + PYLDB_UTIL_2.1.1@PYLDB_UTIL_2.1.1 2:2.1.1 + PYLDB_UTIL_2.2.0@PYLDB_UTIL_2.2.0 2:2.2.0 + PYLDB_UTIL_2.4.0@PYLDB_UTIL_2.4.0 2:2.5.0 + PYLDB_UTIL_2.4.1@PYLDB_UTIL_2.4.1 2:2.5.0 + PYLDB_UTIL_2.5.0@PYLDB_UTIL_2.5.0 2:2.5.0 + PYLDB_UTIL_2.6.0@PYLDB_UTIL_2.6.0 2:2.6.0 + PYLDB_UTIL_2.6.1@PYLDB_UTIL_2.6.1 2:2.6.1 + PYLDB_UTIL_2.6.2@PYLDB_UTIL_2.6.2 2:2.6.2 + pyldb_Dn_FromDn@PYLDB_UTIL_1.1.2 2:2.0.7 + pyldb_Object_AsDn@PYLDB_UTIL_1.1.2 2:2.0.7 + pyldb_check_type@PYLDB_UTIL_2.1.0 2:2.1.0 diff --git a/debian/python3-samba.install b/debian/python3-samba.install new file mode 100644 index 0000000..2a0e9a6 --- /dev/null +++ b/debian/python3-samba.install @@ -0,0 +1,4 @@ +usr/lib/python3*/*-packages/samba +usr/lib/*/libsamba-policy.cpython-*.so.* +usr/lib/*/samba/libsamba-net.cpython-*.so.* +usr/lib/*/samba/libsamba-python.cpython-*.so.0 diff --git a/debian/python3-samba.lintian-overrides b/debian/python3-samba.lintian-overrides new file mode 100644 index 0000000..0fe666a --- /dev/null +++ b/debian/python3-samba.lintian-overrides @@ -0,0 +1,6 @@ +# False positives, see #896012 +python3-samba: library-not-linked-against-libc * +python3-samba: package-name-doesnt-match-sonames libsamba-policy.cpython-*0 +python3-samba: shared-library-lacks-prerequisites */samba/*.cpython*.so* +python3-samba: no-symbols-control-file usr/lib/*/libsamba-policy.*.so.* +python3-samba: hardening-no-fortify-functions */libsamba-policy.cpython*.so.* diff --git a/debian/registry-tools.install b/debian/registry-tools.install new file mode 100644 index 0000000..d9b7bfe --- /dev/null +++ b/debian/registry-tools.install @@ -0,0 +1,8 @@ +usr/bin/regdiff +usr/bin/regpatch +usr/bin/regshell +usr/bin/regtree +usr/share/man/man1/regdiff.1 +usr/share/man/man1/regpatch.1 +usr/share/man/man1/regshell.1 +usr/share/man/man1/regtree.1 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..412ff76 --- /dev/null +++ b/debian/rules @@ -0,0 +1,415 @@ +#!/usr/bin/make -f +SHELL = /bin/sh -e + +export DEB_BUILD_MAINT_OPTIONS = hardening=+all +# Fast version of dpkg/architecture.mk defining all vars in one go +ifeq (${DEB_HOST_MULTIARCH},) + $(foreach d, $(shell dpkg-architecture | sed 's/=/?=/'), $(eval export $d)) +endif +include /usr/share/dpkg/buildtools.mk +include /usr/share/dpkg/buildflags.mk +include /usr/share/dpkg/pkg-info.mk +include /usr/share/dpkg/vendor.mk +V := $(if $(filter terse, ${DEB_BUILD_OPTIONS}),,1) +WAF := PYTHONHASHSEED=1 ./buildtools/bin/waf \ + $(patsubst parallel=%,-j%,$(filter parallel=%,${DEB_BUILD_OPTIONS})) + +ifeq (linux,${DEB_HOST_ARCH_OS}) +# for cross-build or build with foreign python binary (it is _gnu0_i386-gnu on hurd) +export _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata__${DEB_HOST_ARCH_OS}_${DEB_HOST_MULTIARCH} +endif + +DESTDIR = ${CURDIR}/debian/tmp + +LDB_EPOCH = 2: +LDB_VERSION = $(call dpkg_late_eval,LDB_VERSION,grep ^VERSION lib/ldb/wscript | cut -d\' -f2) +LDB_DEB_VERSION = ${LDB_EPOCH}${LDB_VERSION}+samba${DEB_VERSION_UPSTREAM_REVISION} +LDB_DEPENDS = libldb2 (= ${LDB_DEB_VERSION}) +LDB_PACKAGES = libldb2 libldb-dev ldb-tools python3-ldb python3-ldb-dev + +# #1021371: we only need the single "version" symbol LDB_2.4.4 in the library +# should be removed for bookworm+. Also LDB_2.4.4 in d/libldb2.symbols +EXTRA_ABI_VERSION_FILES = lib/ldb/ABI/ldb-2.4.4.sigs + +omit-pkgs = +with-glusterfs = +with-ceph = +with-snapper = + +config-args = \ + --prefix=/usr \ + --enable-fhs \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --libexecdir=/usr/libexec \ + --libdir=/usr/lib/${DEB_HOST_MULTIARCH} \ + --datadir=/usr/share \ + --with-modulesdir=/usr/lib/${DEB_HOST_MULTIARCH}/samba \ + --with-pammodulesdir=/lib/${DEB_HOST_MULTIARCH}/security \ + --with-privatedir=/var/lib/samba/private \ + --with-smbpasswd-file=/etc/samba/smbpasswd \ + --with-piddir=/run/samba \ + --with-lockdir=/run/samba \ + --with-sockets-dir=/run/samba \ + --with-statedir=/var/lib/samba \ + --with-cachedir=/var/cache/samba \ + --with-pam \ + --with-syslog \ + --with-utmp \ + --with-winbind \ + --with-automount \ + --with-ldap \ + --with-ads \ + --with-gpgme \ + --enable-avahi \ + --enable-spotlight \ + --with-profiling-data \ + --disable-rpath --disable-rpath-install \ + --with-shared-modules=idmap_rid,idmap_ad,idmap_adex,idmap_hash,idmap_ldap,idmap_tdb2,vfs_dfs_samba4,auth_samba4,vfs_nfs4acl_xattr \ + --bundled-libraries=NONE,pytevent,ldb \ + \ + --with-cluster-support \ + --enable-etcd-reclock \ + --with-socketpath=/run/ctdb/ctdbd.socket \ + --with-logdir=/var/log/ctdb \ + +ifeq (${DEB_HOST_ARCH_OS}, linux) # extra linux-specific features +with-glusterfs = yes +with-ceph = yes +with-snapper = yes + +# Ceph is not available on all platforms +ifeq (,$(filter amd64 arm64 armel armhf i386 mips64el mipsel ppc64el s390x, ${DEB_HOST_ARCH})) +with-ceph = +endif + +config-args += \ + --with-quota \ + \ + --with-systemd \ + --systemd-install-services \ + --with-systemddir=/lib/systemd/system \ + --systemd-smb-extra='ExecCondition=/usr/share/samba/is-configured smb' \ + --systemd-nmb-extra='ExecCondition=/usr/share/samba/is-configured nmb' \ + --systemd-winbind-extra='ExecCondition=/usr/share/samba/is-configured winbind' \ + --systemd-samba-extra='ExecCondition=/usr/share/samba/is-configured samba' \ + +endif + +# Ubuntu i386 binary compatibility only effort: Disable some i386 packages and modules +ifeq (${DEB_VENDOR}-${DEB_HOST_ARCH}, Ubuntu-i386) +omit-pkgs += ctdb libpam-winbind samba samba-testsuite samba-vfs-modules +with-ceph = +with-glusterfs = +endif + +ifneq (,$(filter armel mipsel m68k powerpc sh4,${DEB_HOST_ARCH})) +# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81358 +# on these platforms gcc does not link with -latomic, resulting in +# third_party/heimdal/lib/krb5/krcache.c.55.o: in function `krcc_get_principal': +# third_party/heimdal/lib/krb5/krcache.c:1395: undefined reference to `__atomic_load_8' +# ids.krcu_cache_and_princ_id = heim_base_atomic_load(&data->krc_cache_and_principal_id); +# third_party/heimdal/lib/base/heimbase-atomics.h: +# #include <stdatomic.h> +# #define heim_base_atomic_load(x) atomic_load((x)) +# include a workaround for now +# (-latomic and <stdatomic.h> comes from gcc, --as-needed is already in use) +LDFLAGS := ${LDFLAGS} -latomic +endif + +config-args += $(if ${with-ceph},\ + --enable-cephfs --enable-ceph-reclock,\ + --disable-cephfs) + +with_mitkrb5 = $(filter pkg.samba.mitkrb5, ${DEB_BUILD_PROFILES}) +ifneq (,${with_mitkrb5}) +config-args += \ + --with-system-mitkrb5 \ + --with-experimental-mit-ad-dc \ + --with-system-mitkdc=/usr/sbin/krb5kdc +# samba packages will have its own version suffix +mitkrb5-samba-ver = ${DEB_VERSION}mitkrb5 +mitkrb5-dep-pkgs = samba-libs samba-dev +mitkrb5-dep-pkgs += samba samba-common-bin python3-samba +mitkrb5-dep-pkgs += samba-dsdb-modules samba-vfs-modules +mitkrb5-dep-pkgs += libsmbclient smbclient +mitkrb5-dep-pkgs += libnss-winbind libpam-winbind +mitkrb5-dep-pkgs += winbind +mitkrb5-dep-pkgs += samba-testsuite +mitkrb5-dep-pkgs += ctdb +else +mitkrb5-dep-pkgs = +endif + +ifneq (,${omit-pkgs}) +export DH_OPTIONS += $(addprefix -N, ${omit-pkgs}) +endif +# ${build-pkgs} will honour arch/indep and the above list in ${DH_OPTIONS} +build-pkgs := $(shell dh_listpackages) + +binary binary-arch binary-indep \ +install install-arch install-indep: %: + dh $* + +configure: bin/configured.stamp +.PHONY: configure +bin/configured.stamp: +# branding + if [ ! -f VERSION.orig ]; then \ + mv VERSION VERSION.orig; \ + sed -r -e 's/^(SAMBA_VERSION_VENDOR_SUFFIX).*/\1=${DEB_VENDOR}/' \ + VERSION.orig > VERSION; \ + fi + CC="${CC}" CPP="${CPP}" LD="${LD}" PKGCONFIG="${PKG_CONFIG}" \ + CPPFLAGS="${CPPFLAGS}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ + PYTHON=python3 PYTHON_CONFIG=${DEB_HOST_MULTIARCH}-python3-config \ + ${WAF} -j1 -C configure ${config-args} || \ + { $(if ${V},echo "==== contents of config.log:"; cat bin/config.log;) false; } +# #1021371: we only need the single "version" symbol LDB_2.4.4 in the library + touch ${EXTRA_ABI_VERSION_FILES} +# #1013205: https://lists.samba.org/archive/samba-technical/2022-November/137788.html + rm -f third_party/heimdal/lib/gssapi/gssapi.h +ifneq (,${with_mitkrb5}) # ensure we do not use embedded heimdal in any way + [ -d third_party/heimdal-build-with-mitkrb5 ] || \ + mv third_party/heimdal third_party/heimdal-build-with-mitkrb5 +endif + touch $@ + +build-arch: bin/built.stamp +bin/built.stamp: bin/configured.stamp +# samba build system is designed so that default build (what is produced +# by waf build) supposed to be run directly from the build directory, +# with all the paths pointing there. At the install stage, quite some +# recompilation/relinking is done again, to adopt to the actual install +# paths. There's no need (for now) to build samba to be run from the build +# directory, so we use `waf install' here instead of `waf build'. +# Build these two executables first, and build the install stage. +# This will pefrorm unnecessary/extra install step (into d/tmp), which +# we'll repeat during actual install stage, but this is definitely +# better/faster than building whole thing for _not_ running from the build dir. + ${WAF} $(if $V,-v) install --destdir="${DESTDIR}" + touch $@ +build-indep: +build: build-arch build-indep + +############## Tests ############## +# We should use separate build for tests since it requires configuration +# with --enable-selftest which is not compatible with production build. +# Since samba build system always builds in bin/, we save whole source +# into a subdir (testbuild/) and run everything from there. + +testbuild/copied.stamp: + rm -rf testbuild; mkdir testbuild + cp -a -l $$(ls -1 | egrep -v '^(bin|testbuild|debian)$$') testbuild/ +# cleanup some files just in case, do not interfere with production build + find testbuild -name __pycache__ -exec rm -rf {} + + rm -f testbuild/compile_commands.json + touch $@ +testbuild/configured.stamp: testbuild/copied.stamp + @echo "############## selftest configure ##############" +# allow some bundled "lib" for now just for the test build. Debian has them +# (libsocket-wrapper &Co), but let's just build the bundled ones. There's no +# good reason to use externally-packaged wrappers, they're small to build and +# we don't use them for production build, and extra versioned build-dep hurts. + cd testbuild && \ + CPPFLAGS="${CPPFLAGS}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ + ${WAF} -j1 -C configure --enable-selftest \ + $$(echo '${config-args}' | \ + sed 's|--bundled-libraries=NONE|&,nss_wrapper,pam_wrapper,resolv_wrapper,socket_wrapper,uid_wrapper|') +# FIXME: some tests fail for now, handle them later (last check: 4.17.2, heimdal build) + rm -f testbuild/selftest/knownfail.d/debian + echo '^samba3.smb2.session\ enc.(reauth.|bind.|bind_negative.*|bind_invalid_auth|encryption-aes-.*)\(nt4_dc\)' \ + >>testbuild/selftest/knownfail.d/debian +# echo '^samba3.rpc.schannel_anon_setpw\ anonymous\ password\ set\ \(schannel\ enforced\ server-side\)\(nt4_dc_schannel\)' \ +# >>testbuild/selftest/knownfail.d/debian + echo '^samba4.ntvfs.cifs.ntlm.base.unlink.unlink\(rpc_proxy\)' \ + >>testbuild/selftest/knownfail.d/debian + echo '^samba4.rpc.echo\ against\ rpc\ proxy\ with\ domain\ creds\(rpc_proxy\)' \ + >>testbuild/selftest/knownfail.d/debian + touch $@ +selftest-quick: testbuild/configured.stamp + @echo "############## selftest run ##############" + cd testbuild && ${WAF} test --quick + +override_dh_auto_test: # $(if $(findstring nocheck, ${DEB_BUILD_OPTIONS}),, selftest-quick) + +override_dh_auto_install-arch: +# the same "waf install" as in the build target + ${WAF} install --destdir="${DESTDIR}" + # get list of files in build log + find debian/tmp + # Included in python-tevent? + rm debian/tmp/usr/lib/python*/*-packages/_tevent.* + rm debian/tmp/usr/lib/python*/*-packages/tevent.py + # pam stuff + install -Dp -m0644 debian/winbind.pam-config debian/tmp/usr/share/pam-configs/winbind + mv debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/libnss_* debian/tmp/lib/$(DEB_HOST_MULTIARCH)/ + # Debian goodies to set global option in smb.conf and add a share + install -p -m0755 debian/setoption.py -t debian/tmp/usr/share/samba/ + install -p -m0755 debian/addshare.py -t debian/tmp/usr/share/samba/ + install -p -m755 debian/update-apparmor-samba-profile -t debian/tmp/usr/share/samba/ + install -Dp -m0644 debian/samba.ufw.profile debian/tmp/etc/ufw/applications.d/samba + install -Dp -m0644 debian/source_samba.py -t debian/tmp/usr/share/apport/package-hooks/ +ifeq ($(DEB_HOST_ARCH_OS), linux) +# Services fixups. Historically, debian used smbd, nmbd and samba-ad-dc service names. +# Upstream samba used names smb, nmb and samba. +# We can not easily rename them now (need to rename possible overrides and drop-ins), +# but we can provide synonyms + mv debian/tmp/lib/systemd/system/nmb.service debian/tmp/lib/systemd/system/nmbd.service + ln -s nmbd.service debian/tmp/lib/systemd/system/nmb.service + mv debian/tmp/lib/systemd/system/smb.service debian/tmp/lib/systemd/system/smbd.service + ln -s smbd.service debian/tmp/lib/systemd/system/smb.service + mv debian/tmp/lib/systemd/system/samba.service debian/tmp/lib/systemd/system/samba-ad-dc.service + ln -s samba-ad-dc.service debian/tmp/lib/systemd/system/samba.service + sed -i \ + -e 's|/etc/sysconfig/|/etc/default/|' \ + -e 's|nmb\.service|nmbd.service|' \ + -e 's|smb\.service|smbd.service|' \ + -e 's|samba\.service|samba-ad-dc.service|' \ + debian/tmp/lib/systemd/system/nmbd.service \ + debian/tmp/lib/systemd/system/samba-ad-dc.service \ + debian/tmp/lib/systemd/system/smbd.service \ + debian/tmp/lib/systemd/system/winbind.service +endif + # install-and-rename docs for ctdb (also arch-specific) + mkdir -p debian/tmp/ctdb + install -p ctdb/config/events/README debian/tmp/ctdb/README.notification + install -p ctdb/config/notification.README debian/tmp/ctdb/README.notification +ifeq ($(DEB_HOST_ARCH_OS), hurd) + install -p debian/ctdb.README.hurd debian/tmp/ctdb/README.hurd +endif +ifeq ($(DEB_HOST_ARCH_OS), kfreebsd) + install -p debian/ctdb.README.kfreebsd debian/tmp/ctdb/README.kfreebsd +endif + +# compatibility link. When ldb was built by its own it stored modules in +# /usr/lib/<triple>/ldb/modules/ldb/. Now as part of samba it stores modules in +# /usr/lib/<triple>/samba/ldb/. Keep them together instead of d/*.{links,dirs}. +# (sssd 2.6.3-3 moved their module to the new location; +# samba-dsdb-modules always had their modules in ..../samba/ldb/) +# This compat symlink should go away after bookworm +# (needed mostly for bullseye sssd) + dh_installdirs -plibldb2 /usr/lib/${DEB_HOST_MULTIARCH}/ldb/modules/ldb + dh_link -plibldb2 /usr/lib/${DEB_HOST_MULTIARCH}/ldb/modules/ldb \ + /usr/lib/${DEB_HOST_MULTIARCH}/samba/ldb/compat + +provision-dest := debian/samba-ad-provision/usr/share/samba/setup + +override_dh_auto_install-indep: +# only arch-all package is samba-common containing a few debian-specific files +# Most of files needs are renamed during install so lets put them +# directly into the right place without d/samba-common.install indirection + # Debian goodies + install -Dp -m0644 debian/smb.conf -t debian/samba-common/usr/share/samba/ +ifeq (${DEB_VENDOR}, Ubuntu) + patch debian/samba-common/usr/share/samba/smb.conf debian/smb.conf.ubuntu.diff +endif + install -Dp -m0755 debian/panic-action -t debian/samba-common/usr/share/samba/ + install -Dp -m0755 debian/is-configured -t debian/samba-common/usr/share/samba/ + install -Dp -m0644 debian/gdbcommands -t debian/samba-common/etc/samba/ + install -Dp -m0755 debian/samba-common.dhcp debian/samba-common/etc/dhcp/dhclient-enter-hooks.d/samba + # we wrongly have pam file in samba-common instead of samba + install -Dp -m0644 debian/samba.pam debian/samba-common/etc/pam.d/samba + +# install provision files (samba-ad-provision, source4/setup/) + mkdir -p -m0755 ${provision-dest} + cp -r --preserve=timestamps source4/setup/. ${provision-dest} + rm -rf ${provision-dest}/tests + rm -f ${provision-dest}/wscript* \ + ${provision-dest}/adprep/samba-4.7-missing-for-schema45.ldif + +override_dh_installpam: + +# include a command only if the given package is being built +ifpkg = $(if $(filter ${1},${build-pkgs}),${2}) + +override_dh_installinit: +ifneq (,$(filter samba, ${build-pkgs})) + dh_installinit -psamba --name smbd + dh_installinit -psamba --name nmbd --error-handler nmbd_error_handler + dh_installinit -psamba --name samba-ad-dc +endif + $(call ifpkg, winbind, dh_installinit -pwinbind) +ifneq (,$(filter ctdb, ${build-pkgs})) + install -Dp -m755 ctdb/config/ctdb.init debian/ctdb/etc/init.d/ctdb + # Install dh scripts + dh_installinit -pctdb --no-start --no-stop-on-upgrade --onlyscripts +endif + +override_dh_installsystemd: + $(call ifpkg, samba, dh_installsystemd -psamba) + $(call ifpkg, winbind, dh_installsystemd -pwinbind) + $(call ifpkg, ctdb, dh_installsystemd -pctdb --no-start --no-stop-on-upgrade) + +execute_after_dh_fixperms-arch: + $(call ifpkg, smbclient, chmod 0700 debian/smbclient/usr/libexec/samba/smbspool_krb5_wrapper) + +override_dh_makeshlibs: + # generate symbols file with correct cpython suffix in there + { \ + suff=$$(${DEB_HOST_MULTIARCH}-python3-config --extension-suffix | tr _ -); \ + SUFF=$$(echo "$${suff%.so}" | tr a-z- A-Z_); \ + echo "libpyldb-util$${suff}.2 python3-ldb #MINVER#"; \ + echo "* Build-Depends-Package: python3-ldb-dev" ; \ + echo " PYLDB_UTIL$${SUFF}_${LDB_VERSION}@PYLDB_UTIL$${SUFF}_${LDB_VERSION} ${LDB_EPOCH}${LDB_VERSION}"; \ + cat debian/python3-ldb.symbols.in; \ + } > debian/python3-ldb.symbols + + # create symbols and shlibs files in separate wrapper script + # to deal with private libraries + debian/genshlibs \ + $(addsuffix =${LDB_DEB_VERSION},${LDB_PACKAGES}) \ + $(addsuffix =${mitkrb5-samba-ver}, ${mitkrb5-dep-pkgs}) + + rm -f debian/python3-ldb.symbols + +# depcheck package, dep1|dep2... -- dependencies which should NOT be there +depcheck = if egrep '^shlibs.Depends=.* ($(strip $2)) ' debian/$(strip $1).substvars; \ + then echo 'E: $(strip $1) should not depend on $(strip $2)' >&2; exit 1; fi + +override_dh_shlibdeps: +# for specific executables/modules, put dependencies in separate variables +# to change Depends to Recommends for them in d/control + dh_shlibdeps -l/usr/lib/${DEB_HOST_MULTIARCH}/samba \ + -Xceph.so -Xglusterfs.so -Xsnapper.so -Xctdb_mutex_ceph_rados_helper +ifneq (,$(filter ctdb, ${build-pkgs})) + echo "rados:Depends=" >> debian/ctdb.substvars +ifneq (${with-ceph},) + dpkg-shlibdeps -Tdebian/ctdb.substvars -prados \ + debian/ctdb/usr/libexec/ctdb/ctdb_mutex_ceph_rados_helper +endif +endif +ifneq (,$(filter samba-vfs-modules,${build-pkgs})) + echo "vfsmods:Depends=" >> debian/samba-vfs-modules.substvars +ifneq (${with-snapper}${with-ceph}${with-glusterfs},) + dpkg-shlibdeps -Tdebian/samba-vfs-modules.substvars -pvfsmods \ + $(if ${with-snapper}, debian/samba-vfs-modules/usr/lib/*/samba/vfs/snapper.so) \ + $(if ${with-ceph}, debian/samba-vfs-modules/usr/lib/*/samba/vfs/ceph.so) \ + $(if ${with-glusterfs}, debian/samba-vfs-modules/usr/lib/*/samba/vfs/glusterfs.so) +endif +endif +# after shlibdeps run, check that we don't have wrong depdendencies + $(call depcheck, samba-libs, samba|winbind|smbclient|ctdb) + $(call depcheck, smbclient, samba|winbind|ctdb) + $(call depcheck, ctdb, samba|winbind|smbclient) + $(call depcheck, libldb2, samba|samba-libs|winbind|libwbclient0) # use-bzero-instead-of-memset_s.diff + $(call depcheck, python3-samba, samba|winbind|ctdb) + $(call depcheck, libwbclient0, samba|samba-libs|winbind|smbclient|ctdb) + $(call depcheck, libsmbclient, samba|winbind|smbclient|ctdb) + +override_dh_gencontrol: + dh_gencontrol $(addprefix -p, ${LDB_PACKAGES}) -- -v${LDB_DEB_VERSION} +ifneq (,$(filter ${build-pkgs}, ${mitkrb5-dep-pkgs})) + dh_gencontrol $(addprefix -p, $(filter ${build-pkgs}, ${mitkrb5-dep-pkgs})) -- -v${mitkrb5-samba-ver} -Vldb:Depends="${LDB_DEPENDS}" +endif + dh_gencontrol --remaining-packages -- -Vldb:Depends="${LDB_DEPENDS}" + +clean: + # see also debian/clean + dh_clean bin/ testbuild/ + rm -f ${EXTRA_ABI_VERSION_FILES} + [ ! -f VERSION.orig ] || mv -f VERSION.orig VERSION +ifneq (,${with_mitkrb5}) + [ ! -d third_party/heimdal-build-with-mitkrb5 ] || \ + mv third_party/heimdal-build-with-mitkrb5 third_party/heimdal +endif diff --git a/debian/salsa-ci.yml b/debian/salsa-ci.yml new file mode 100644 index 0000000..8a5ded8 --- /dev/null +++ b/debian/salsa-ci.yml @@ -0,0 +1,11 @@ +--- +include: + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml + +variables: + RELEASE: 'bookworm' + # Until https://bugs.debian.org/976175 is fixed in blhc + SALSA_CI_DISABLE_BLHC: 1 + # cross-building never worked + SALSA_CI_DISABLE_CROSSBUILD_ARM64: 1 diff --git a/debian/samba-ad-provision.lintian-overrides b/debian/samba-ad-provision.lintian-overrides new file mode 100644 index 0000000..4ad5f71 --- /dev/null +++ b/debian/samba-ad-provision.lintian-overrides @@ -0,0 +1,4 @@ +# documentation and specifications for the schemas, keep them in the same place +samba-ad-provision: package-contains-documentation-outside-usr-share-doc *usr/share/samba/setup/* +samba-ad-provision: extra-license-file */setup/ad-schema/licence.txt* +samba-ad-provision: extra-license-file */setup/adprep/WindowsServerDocs/LICENSE* diff --git a/debian/samba-common-bin.dirs b/debian/samba-common-bin.dirs new file mode 100644 index 0000000..bbd723d --- /dev/null +++ b/debian/samba-common-bin.dirs @@ -0,0 +1,2 @@ +etc/samba/tls +var/cache/samba diff --git a/debian/samba-common-bin.install b/debian/samba-common-bin.install new file mode 100644 index 0000000..6270fcb --- /dev/null +++ b/debian/samba-common-bin.install @@ -0,0 +1,27 @@ +usr/bin/dbwrap_tool +usr/bin/net +usr/bin/nmblookup +usr/bin/samba-regedit +usr/bin/samba-tool +usr/bin/smbpasswd +usr/bin/testparm +usr/sbin/samba_kcc +usr/share/apport/package-hooks/source_samba.py +usr/share/man/man1/dbwrap_tool.1 +usr/share/man/man1/nmblookup.1 +usr/share/man/man1/testparm.1 +usr/share/man/man5/lmhosts.5 +usr/share/man/man5/smb.conf.5 +usr/share/man/man5/smbpasswd.5 +usr/share/man/man7/samba.7 +usr/share/man/man8/net.8 +usr/share/man/man8/samba-regedit.8 +usr/share/man/man8/samba-tool.8 +usr/share/man/man8/smbpasswd.8 +usr/share/samba/addshare.py +usr/share/samba/setoption.py +# samba-dcerpcd: used by smbd & winbind. might go to its own separate package, +# maybe with a startup script +usr/libexec/samba/samba-dcerpcd +usr/share/man/man8/samba-dcerpcd.8 +usr/libexec/samba/rpcd_* diff --git a/debian/samba-common-bin.lintian-override b/debian/samba-common-bin.lintian-override new file mode 100644 index 0000000..b8e510a --- /dev/null +++ b/debian/samba-common-bin.lintian-override @@ -0,0 +1,2 @@ +# deliberate, a synonym for misspelled parameter +samba-common-bin: typo-in-manual-page prefered preferred */man/man5/smb.conf.5* diff --git a/debian/samba-common.bug-presubj b/debian/samba-common.bug-presubj new file mode 100644 index 0000000..6846acc --- /dev/null +++ b/debian/samba-common.bug-presubj @@ -0,0 +1,11 @@ +*** Please submit non packaging issue bugs to the Debian BTS and the upstream +bugzilla (https://bugzilla.samba.org/) and put a reference to the bugzilla bug +in the Debian bug report to ease bug triage for the maintainers. Thank you. *** + +When applicable: + * mention client type/OS + version + * does the problem occur with other clients? + * include a level 10 samba log + * steps to reproduce the problem + * does the problem occur with other versions of samba (oldstable, stable, + backports, testing, ...) diff --git a/debian/samba-common.bug-script b/debian/samba-common.bug-script new file mode 100755 index 0000000..05a95ef --- /dev/null +++ b/debian/samba-common.bug-script @@ -0,0 +1,24 @@ +#!/bin/bash -e + +cat <<EOF + +I can automatically include various information about your samba configuration +in your bug report. This information may help to diagnose your problem. + +EOF + +for config in /etc/samba/smb.conf /var/lib/samba/dhcp.conf ; do + if [ -f $config ]; then + yesno "May I include your $config configuration file? [Y/n] " yep + if [ "$REPLY" = "yep" ]; then + echo "* $config present, and attached" >&3 + echo "-- BEGIN ATTACHMENTS --" >&3 + echo "$config" >&3 + echo "-- END ATTACHMENTS --" >&3 + else + echo "* $config present, but not attached" >&3 + fi + else + echo "* $config not present" >&3 + fi +done diff --git a/debian/samba-common.config b/debian/samba-common.config new file mode 100644 index 0000000..53d9caf --- /dev/null +++ b/debian/samba-common.config @@ -0,0 +1,85 @@ +#!/bin/sh + +set -e +# Source debconf library. +. /usr/share/debconf/confmodule + +# Function for grabbing a parameter from an smb.conf file +smbconf_retr() { + if [ -z "$1" ]; then + return + fi + + if [ -n "$2" ]; then + local FILE="$2" + fi + + if [ -z "$FILE" ]; then + return + fi + + sed -n -e" + s/^[[:space:]]*\[global\]/\[global\]/i + /^\[global\]/,/^[[:space:]]*\[/ { + s/^[[:space:]]*$1[[:space:]]*=[[:space:]]*//pi + }" $FILE \ + | tail -n 1 +} + +FILE=/etc/samba/smb.conf + +db_settitle samba-common/title + +# We ask the question IFF the config contains complex options that could +# cause us to break the config. +if [ -f "$FILE" ] && grep -v dhcp.conf $FILE \ + | grep -qEi '\\$|^[[:space:]]*include[[:space:]]*=' +then + db_input high samba-common/do_debconf || true + db_go +else + db_set samba-common/do_debconf true +fi + +# If user doesn't want to use debconf to configure Samba the leave... +db_get samba-common/do_debconf || true +if [ "${RET}" = "false" ]; then + exit 0 +fi + +# User wants to use debconf, let's continue... + +# Preload any values from the existing smb.conf file +if [ -f $FILE ]; then + WORKGROUP=`smbconf_retr workgroup` + if [ "$WORKGROUP" ]; then + db_set samba-common/workgroup "$WORKGROUP" + fi + +fi + +# Get workgroup name +db_input medium samba-common/workgroup || true +db_go + +FOUND=false +if [ -f $FILE ]; then + if grep -q 'include[[:space:]]*=[[:space:]]*/etc/samba/dhcp.conf' $FILE + then + FOUND=true + fi + if grep -q 'include[[:space:]]*=[[:space:]]*/var/lib/samba/dhcp.conf' $FILE + then + FOUND=true + fi + db_set samba-common/dhcp $FOUND +fi + +# we only prompt in one of three cases: the file doesn't exist yet, it +# has the context we need to add our include line, or the include line +# is already present. +if [ ! -f $FILE ] || grep -q -i 'wins server' $FILE || [ "$FOUND" = "true" ]; +then + db_input medium samba-common/dhcp || true + db_go +fi diff --git a/debian/samba-common.dhcp b/debian/samba-common.dhcp new file mode 100644 index 0000000..81ab791 --- /dev/null +++ b/debian/samba-common.dhcp @@ -0,0 +1,85 @@ +#!/bin/sh + +SAMBA_DHCP_CONF=/var/lib/samba/dhcp.conf + +netbios_setup() { + # No need to continue if we're called with an unsupported option + + case $reason in + BOUND|RENEW|REBIND|REBOOT|EXPIRE|FAIL|RELEASE|STOP) + ;; + *) + return + ;; + esac + + umask 022 + + local other_servers="" + local serverlist="" + + # the destination file won't exist yet on the first run after + # installing samba + if [ -e $SAMBA_DHCP_CONF ] && [ -s $SAMBA_DHCP_CONF ] + then + # don't continue if no settings have changed + if [ "$new_netbios_name_servers" = "$old_netbios_name_servers" ] \ + && [ "$new_netbios_scope" = "$old_netbios_scope" ] \ + && [ -n "$new_netbios_name_servers" ] + then + return + fi + + # reparse our own file + other_servers=`sed -n -e"s/[[:space:]]$interface:[^[:space:]]*//g; \ + s/^[[:space:]]*wins server[[:space:]]*=[[:space:]]*//pi" \ + $SAMBA_DHCP_CONF` + + serverlist="$other_servers" + fi + + for server in $new_netbios_name_servers + do + serverlist="$serverlist $interface:$server" + done + + echo -n > ${SAMBA_DHCP_CONF}.new + + # If we're updating on failure/expire, AND there are no WINS + # servers for other interfaces, leave the file empty. + if [ -z "$other_servers" ] + then + if [ "$reason" = FAIL ] || [ "$reason" = EXPIRE ] + then + mv ${SAMBA_DHCP_CONF}.new $SAMBA_DHCP_CONF + return + fi + fi + + if [ -n "$serverlist" ] + then + echo " wins server =$serverlist" >> ${SAMBA_DHCP_CONF}.new + fi + if [ -n "$new_netbios_scope" ] + then + echo " netbios scope = $new_netbios_scope" >> ${SAMBA_DHCP_CONF}.new + fi + mv ${SAMBA_DHCP_CONF}.new $SAMBA_DHCP_CONF + + # reload the samba server + # We don't necessarily have the samba package installed. #414841 + if [ -x /etc/init.d/smbd ] + then + if [ -d /run/systemd/system ] + then + if systemctl is-enabled smbd.service --quiet + then + systemctl try-reload-or-restart smbd.service + fi + else + /usr/sbin/invoke-rc.d smbd reload + fi + fi +} + +netbios_setup diff --git a/debian/samba-common.dirs b/debian/samba-common.dirs new file mode 100644 index 0000000..81aad73 --- /dev/null +++ b/debian/samba-common.dirs @@ -0,0 +1,5 @@ +etc/samba +var/cache/samba +var/lib/samba +var/lib/samba/private +var/log/samba diff --git a/debian/samba-common.docs b/debian/samba-common.docs new file mode 100644 index 0000000..22aa0a4 --- /dev/null +++ b/debian/samba-common.docs @@ -0,0 +1,2 @@ +README.md +WHATSNEW.txt diff --git a/debian/samba-common.examples b/debian/samba-common.examples new file mode 100644 index 0000000..0edd0ea --- /dev/null +++ b/debian/samba-common.examples @@ -0,0 +1 @@ +examples/smb.conf.default diff --git a/debian/samba-common.postinst b/debian/samba-common.postinst new file mode 100644 index 0000000..26031e1 --- /dev/null +++ b/debian/samba-common.postinst @@ -0,0 +1,117 @@ +#!/bin/sh +# +# + +set -e + +# Do debconf stuff here +. /usr/share/debconf/confmodule + +TEMPDIR=/run/samba/upgrades +NEWFILE=$TEMPDIR/smb.conf +CONFIG=/etc/samba/smb.conf + +# ------------------------- Debconf questions start --------------------- + +configure_smb_conf() { + local CONFIG + CONFIG="$1" + + # Is the user configuring with debconf, or he/she prefers manual config? + db_get samba-common/do_debconf || true + if [ "${RET}" != "true" ]; then + return 0 + fi + + # Get workgroup name + db_get samba-common/workgroup || true + WORKGROUP="${RET}" + + # Oh my GOD, this is ugly. Why would anyone put these + # characters in a workgroup name? Why, Lord, why??? + WORKGROUP=`echo $WORKGROUP | \ + sed -e's/\\\\/\\\\\\\\/g + s#/#\\\\/#g + s/&/\\\&/g + s/\\\$/\\\\\\\$/g'` + + sed -i -e "s/^\([[:space:]]*\)\[global\]/\1\[global\]/i + /^[[:space:]]*\[global\]/,/^[[:space:]]*\[/ \ + s/^\([[:space:]]*\)workgroup[[:space:]]*=.*/\1workgroup = ${WORKGROUP}/i" \ + "$CONFIG" + + # Install DHCP support + db_get samba-common/dhcp + if [ "$RET" = true ] && \ + ! grep -q dhcp.conf "$CONFIG" + then + sed -i -e "s/^\([[:space:]]*\)\[global\]/\1\[global\]/i + /^[[:space:]]*\[global\]/,/^[[:space:]]*\[/ { + /wins server[[:space:]]*=/a \\ +\\ +# If we receive WINS server info from DHCP, override the options above. \\ + include = /var/lib/samba/dhcp.conf +}" "$CONFIG" + # Ensure the file exists + touch /var/lib/samba/dhcp.conf + elif [ "$RET" != true ]; then + sed -i -e ' + /^#[[:space:]]*If we receive WINS server info from DHCP, override the options above/d + /^#*[[:space:]]*include[[:space:]]*=[[:space:]]*\/var\/lib\/samba\/dhcp.conf/,/[^[:space:]]/ { + /^#*[[:space:]]*include[[:space:]]*=[[:space:]]*\/var\/lib\/samba\/dhcp.conf/d + /^[[:space:]]*$/d + }' "$CONFIG" + fi + +} + +if [ "$1" = configure ]; then + if dpkg --compare-versions "$2" lt-nl 2:4.8.0+dfsg-3~; then + # Move dhcp.conf out of /etc (https://bugs.debian.org/695362) + if [ -f /etc/samba/dhcp.conf ]; then + mv /etc/samba/dhcp.conf /var/lib/samba/dhcp.conf + fi + sed -i -e 's/^\([#[:space:]]*include[[:space:]]*=[[:space:]]*\)\/etc\/samba\/dhcp.conf\([[:space:]]*\)$/\1\/var\/lib\/samba\/dhcp.conf\2/ + ' "$CONFIG" + fi + + if ! dpkg-statoverride --list /var/log/samba >/dev/null; then + # Set some reasonable default perms for the samba logdir + # to hide sensitive information + chmod 0750 /var/log/samba + chown root:adm /var/log/samba + fi +fi + + +if [ -e "$CONFIG" ]; then + configure_smb_conf "$CONFIG" +fi + +mkdir -p "$TEMPDIR" + +cp /usr/share/samba/smb.conf "$NEWFILE" +configure_smb_conf "$NEWFILE" + +if [ -e "$CONFIG" ]; then + sed -e '1,/^[;#[:space:]]*\[print\$\]/ { d } + 1,/^[[:space:]]*\[/ { /^[^[]/d; /^$/d } + ' "$CONFIG" >> "$NEWFILE" +fi + +ucf --three-way --debconf-ok "$NEWFILE" "$CONFIG" + +if [ ! -e "$CONFIG" ]; then + echo "Install/upgrade will fail. To recover, please try:" + echo " sudo cp /usr/share/samba/smb.conf $CONFIG" + echo " sudo dpkg --configure -a" +else + ucfr samba-common "$CONFIG" + chmod a+r "$CONFIG" +fi + +# ------------------------- Debconf questions end --------------------- + +db_stop + +#DEBHELPER# diff --git a/debian/samba-common.postrm b/debian/samba-common.postrm new file mode 100644 index 0000000..0f7eb2a --- /dev/null +++ b/debian/samba-common.postrm @@ -0,0 +1,25 @@ +#!/bin/sh + +set -e +if [ "$1" = purge ]; then + + # Remove Samba's state files, both volatile and non-volatile + rm -Rf /run/samba/ /var/cache/samba/ /var/lib/samba + + # Remove log files + rm -Rf /var/log/samba/ + + # Remove config files + rm -Rf /etc/samba/ + if [ -x "`which ucf 2>/dev/null`" ]; then + ucf --purge /etc/samba/smb.conf + fi + if [ -x "`which ucfr 2>/dev/null`" ]; then + ucfr --purge samba-common /etc/samba/smb.conf + fi + if [ -f /var/lib/samba/dhcp.conf ]; then + rm /var/lib/samba/dhcp.conf + fi +fi + +#DEBHELPER# diff --git a/debian/samba-common.templates b/debian/samba-common.templates new file mode 100644 index 0000000..2f93b63 --- /dev/null +++ b/debian/samba-common.templates @@ -0,0 +1,41 @@ +Template: samba-common/title +Type: title +_Description: Samba server and utilities + +Template: samba-common/dhcp +Type: boolean +Default: false +_Description: Modify smb.conf to use WINS settings from DHCP? + If your computer gets IP address information from a DHCP server on the + network, the DHCP server may also provide information about WINS servers + ("NetBIOS name servers") present on the network. This requires a + change to your smb.conf file so that DHCP-provided WINS settings will + automatically be read from /var/lib/samba/dhcp.conf. + . + The dhcp-client package must be installed to take advantage of this + feature. + +Template: samba-common/do_debconf +Type: boolean +Default: true +_Description: Configure smb.conf automatically? + The rest of the configuration of Samba deals with questions that + affect parameters in /etc/samba/smb.conf, which is the file used to + configure the Samba programs (nmbd and smbd). Your current smb.conf + contains an "include" line or an option that spans multiple lines, + which could confuse the automated configuration process and require + you to edit your smb.conf by hand to get it working again. + . + If you do not choose this option, you will have to handle + any configuration changes yourself, and will not be able to take + advantage of periodic configuration enhancements. + +Template: samba-common/workgroup +Type: string +Default: WORKGROUP +_Description: Workgroup/Domain Name: + Please specify the workgroup for this system. This setting controls which + workgroup the system will appear in when used as a server, the default + workgroup to be used when browsing with various frontends, and the domain + name used with the "security=domain" setting. + diff --git a/debian/samba-dev.examples b/debian/samba-dev.examples new file mode 100644 index 0000000..e9fc190 --- /dev/null +++ b/debian/samba-dev.examples @@ -0,0 +1,5 @@ +examples/VFS +examples/auth +examples/libsmbclient +examples/nss +examples/pdb diff --git a/debian/samba-dev.install b/debian/samba-dev.install new file mode 100644 index 0000000..e3cd162 --- /dev/null +++ b/debian/samba-dev.install @@ -0,0 +1,65 @@ +# list all *.h under samba-4.0 except: +# libsmbclient.h: libsmbclient-dev +# wbclient.h: libwbclient-dev +# ldb*.h (except ldb_wrap.h): libldb-dev +usr/include/samba-4.0/charset.h +usr/include/samba-4.0/core/*.h +usr/include/samba-4.0/credentials.h +usr/include/samba-4.0/dcerpc.h +usr/include/samba-4.0/dcerpc_server.h +usr/include/samba-4.0/dcesrv_core.h +usr/include/samba-4.0/domain_credentials.h +usr/include/samba-4.0/gen_ndr/*.h +usr/include/samba-4.0/ldb_wrap.h +usr/include/samba-4.0/lookup_sid.h +usr/include/samba-4.0/machine_sid.h +usr/include/samba-4.0/ndr.h +usr/include/samba-4.0/ndr/*.h +usr/include/samba-4.0/netapi.h +usr/include/samba-4.0/param.h +usr/include/samba-4.0/passdb.h +usr/include/samba-4.0/policy.h +usr/include/samba-4.0/rpc_common.h +usr/include/samba-4.0/samba/*.h +usr/include/samba-4.0/share.h +usr/include/samba-4.0/smb2_lease_struct.h +usr/include/samba-4.0/smb_ldap.h +usr/include/samba-4.0/smbconf.h +usr/include/samba-4.0/smbldap.h +usr/include/samba-4.0/tdr.h +usr/include/samba-4.0/tsocket.h +usr/include/samba-4.0/tsocket_internal.h +usr/include/samba-4.0/util/*.h +usr/include/samba-4.0/util_ldb.h +usr/lib/*/libdcerpc-binding.so +usr/lib/*/libdcerpc-samr.so +usr/lib/*/libdcerpc-server-core.so +usr/lib/*/libdcerpc-server.so +usr/lib/*/libdcerpc.so +usr/lib/*/libndr-krb5pac.so +usr/lib/*/libndr-nbt.so +usr/lib/*/libndr-standard.so +usr/lib/*/libndr.so +usr/lib/*/libnetapi.so +usr/lib/*/libsamba-credentials.so +usr/lib/*/libsamba-errors.so +usr/lib/*/libsamba-hostconfig.so +usr/lib/*/libsamba-passdb.so +usr/lib/*/libsamba-policy.cpython-*.so +usr/lib/*/libsamba-util.so +usr/lib/*/libsamdb.so +usr/lib/*/libsmbconf.so +usr/lib/*/libsmbldap.so +usr/lib/*/libtevent-util.so +usr/lib/*/pkgconfig/dcerpc.pc +usr/lib/*/pkgconfig/dcerpc_samr.pc +usr/lib/*/pkgconfig/dcerpc_server.pc +usr/lib/*/pkgconfig/ndr.pc +usr/lib/*/pkgconfig/ndr_krb5pac.pc +usr/lib/*/pkgconfig/ndr_nbt.pc +usr/lib/*/pkgconfig/ndr_standard.pc +usr/lib/*/pkgconfig/netapi.pc +usr/lib/*/pkgconfig/samba-credentials.pc +usr/lib/*/pkgconfig/samba-hostconfig.pc +usr/lib/*/pkgconfig/samba-policy.cpython-*.pc +usr/lib/*/pkgconfig/samdb.pc diff --git a/debian/samba-dsdb-modules.install b/debian/samba-dsdb-modules.install new file mode 100644 index 0000000..9c90f04 --- /dev/null +++ b/debian/samba-dsdb-modules.install @@ -0,0 +1,47 @@ +usr/lib/*/samba/ldb/acl.so +usr/lib/*/samba/ldb/aclread.so +usr/lib/*/samba/ldb/anr.so +usr/lib/*/samba/ldb/audit_log.so +usr/lib/*/samba/ldb/count_attrs.so +usr/lib/*/samba/ldb/descriptor.so +usr/lib/*/samba/ldb/dirsync.so +usr/lib/*/samba/ldb/dns_notify.so +usr/lib/*/samba/ldb/dsdb_notification.so +usr/lib/*/samba/ldb/encrypted_secrets.so +usr/lib/*/samba/ldb/extended_dn_in.so +usr/lib/*/samba/ldb/extended_dn_out.so +usr/lib/*/samba/ldb/extended_dn_store.so +usr/lib/*/samba/ldb/group_audit_log.so +usr/lib/*/samba/ldb/ildap.so +usr/lib/*/samba/ldb/instancetype.so +usr/lib/*/samba/ldb/lazy_commit.so +usr/lib/*/samba/ldb/ldbsamba_extensions.so +usr/lib/*/samba/ldb/linked_attributes.so +usr/lib/*/samba/ldb/new_partition.so +usr/lib/*/samba/ldb/objectclass.so +usr/lib/*/samba/ldb/objectclass_attrs.so +usr/lib/*/samba/ldb/objectguid.so +usr/lib/*/samba/ldb/operational.so +usr/lib/*/samba/ldb/paged_results.so +usr/lib/*/samba/ldb/partition.so +usr/lib/*/samba/ldb/password_hash.so +usr/lib/*/samba/ldb/ranged_results.so +usr/lib/*/samba/ldb/repl_meta_data.so +usr/lib/*/samba/ldb/resolve_oids.so +usr/lib/*/samba/ldb/rootdse.so +usr/lib/*/samba/ldb/samba3sam.so +usr/lib/*/samba/ldb/samba3sid.so +usr/lib/*/samba/ldb/samba_dsdb.so +usr/lib/*/samba/ldb/samba_secrets.so +usr/lib/*/samba/ldb/samldb.so +usr/lib/*/samba/ldb/schema_data.so +usr/lib/*/samba/ldb/schema_load.so +usr/lib/*/samba/ldb/secrets_tdb_sync.so +usr/lib/*/samba/ldb/show_deleted.so +usr/lib/*/samba/ldb/subtree_delete.so +usr/lib/*/samba/ldb/subtree_rename.so +usr/lib/*/samba/ldb/tombstone_reanimate.so +usr/lib/*/samba/ldb/unique_object_sids.so +usr/lib/*/samba/ldb/update_keytab.so +usr/lib/*/samba/ldb/vlv.so +usr/lib/*/samba/ldb/wins_ldb.so diff --git a/debian/samba-libs.install b/debian/samba-libs.install new file mode 100755 index 0000000..dbe0f9b --- /dev/null +++ b/debian/samba-libs.install @@ -0,0 +1,135 @@ +#!/usr/bin/dh-exec --with-scripts=filter-build-profiles +# when there are any real changes in the publically visible libs (usr/lib/*/libfoo.so.N*), +# especially the soname changes, check for pkgs which depend on samba-libs (eg sssd-ad) +# and add Breaks for packages/versions using old libs to d/control +# Here, always specify libs with soname (libfoo.so.1*, not libfoo.so.*) +# Not all of the below public libraries are actually public +usr/lib/*/libdcerpc-binding.so.0* +usr/lib/*/libdcerpc-samr.so.0* +usr/lib/*/libdcerpc-server-core.so.0* +usr/lib/*/libdcerpc-server.so.0* +usr/lib/*/libdcerpc.so.0* +usr/lib/*/libndr-krb5pac.so.0* +usr/lib/*/libndr-nbt.so.0* +usr/lib/*/libndr-standard.so.0* +usr/lib/*/libndr.so.3* +usr/lib/*/libnetapi.so.1* +usr/lib/*/libsamba-credentials.so.1* +usr/lib/*/libsamba-errors.so.1* +usr/lib/*/libsamba-hostconfig.so.0* +usr/lib/*/libsamba-passdb.so.0* +usr/lib/*/libsamba-util.so.0* +usr/lib/*/libsamdb.so.0* +usr/lib/*/libsmbconf.so.0* +usr/lib/*/libsmbldap.so.2* +usr/lib/*/libtevent-util.so.0* +# heimdal libraries (used by samba and winbind) +<!pkg.samba.mitkrb5> usr/lib/*/samba/libasn1-samba4.so.0 +<!pkg.samba.mitkrb5> usr/lib/*/samba/libcom-err-samba4.so.0 +<!pkg.samba.mitkrb5> usr/lib/*/samba/libgssapi-samba4.so.0 +<!pkg.samba.mitkrb5> usr/lib/*/samba/libhcrypto-samba4.so.0 +<!pkg.samba.mitkrb5> usr/lib/*/samba/libheimbase-samba4.so.0 +<!pkg.samba.mitkrb5> usr/lib/*/samba/libheimntlm-samba4.so.0 +<!pkg.samba.mitkrb5> usr/lib/*/samba/libhx509-samba4.so.0 +<!pkg.samba.mitkrb5> usr/lib/*/samba/libkrb5-samba4.so.0 +<!pkg.samba.mitkrb5> usr/lib/*/samba/libroken-samba4.so.0 +<!pkg.samba.mitkrb5> usr/lib/*/samba/libwind-samba4.so.0 +# +usr/lib/*/samba/auth/ +usr/lib/*/samba/bind9/dlz_bind9_*.so +usr/lib/*/samba/gensec/*.so +usr/lib/*/samba/libCHARSET3-samba4.so.0 +usr/lib/*/samba/libLIBWBCLIENT-OLD-samba4.so.0 +usr/lib/*/samba/libMESSAGING-SEND-samba4.so.0 +usr/lib/*/samba/libMESSAGING-samba4.so.0 +usr/lib/*/samba/libREG-FULL-samba4.so.0 +usr/lib/*/samba/libRPC-SERVER-LOOP-samba4.so.0 +usr/lib/*/samba/libRPC-WORKER-samba4.so.0 +usr/lib/*/samba/libaddns-samba4.so.0 +usr/lib/*/samba/libads-samba4.so.0 +usr/lib/*/samba/libasn1util-samba4.so.0 +usr/lib/*/samba/libauth-unix-token-samba4.so.0 +usr/lib/*/samba/libauth-samba4.so.0 +usr/lib/*/samba/libauth4-samba4.so.0 +usr/lib/*/samba/libauthkrb5-samba4.so.0 +usr/lib/*/samba/libcli-cldap-samba4.so.0 +usr/lib/*/samba/libcli-ldap-common-samba4.so.0 +usr/lib/*/samba/libcli-ldap-samba4.so.0 +usr/lib/*/samba/libcli-nbt-samba4.so.0 +usr/lib/*/samba/libcli-smb-common-samba4.so.0 +usr/lib/*/samba/libcli-spoolss-samba4.so.0 +usr/lib/*/samba/libcliauth-samba4.so.0 +usr/lib/*/samba/libclidns-samba4.so.0 +usr/lib/*/samba/libcluster-samba4.so.0 +usr/lib/*/samba/libcmdline-contexts-samba4.so.0 +usr/lib/*/samba/libcmdline-samba4.so.0 +usr/lib/*/samba/libcommon-auth-samba4.so.0 +usr/lib/*/samba/libdb-glue-samba4.so.0 +usr/lib/*/samba/libdbwrap-samba4.so.0 +usr/lib/*/samba/libdcerpc-pkt-auth-samba4.so.0 +usr/lib/*/samba/libdcerpc-samba-samba4.so.0 +usr/lib/*/samba/libdcerpc-samba4.so.0 +usr/lib/*/samba/libdfs-server-ad-samba4.so.0 +usr/lib/*/samba/libdnsserver-common-samba4.so.0 +usr/lib/*/samba/libdsdb-garbage-collect-tombstones-samba4.so.0 +usr/lib/*/samba/libdsdb-module-samba4.so.0 +usr/lib/*/samba/libevents-samba4.so.0 +usr/lib/*/samba/libflag-mapping-samba4.so.0 +usr/lib/*/samba/libgenrand-samba4.so.0 +usr/lib/*/samba/libgensec-samba4.so.0 +usr/lib/*/samba/libgpext-samba4.so.0 +usr/lib/*/samba/libgpo-samba4.so.0 +usr/lib/*/samba/libgse-samba4.so.0 +usr/lib/*/samba/libhttp-samba4.so.0 +usr/lib/*/samba/libinterfaces-samba4.so.0 +usr/lib/*/samba/libiov-buf-samba4.so.0 +usr/lib/*/samba/libkrb5samba-samba4.so.0 +usr/lib/*/samba/libldbsamba-samba4.so.0 +usr/lib/*/samba/liblibcli-lsa3-samba4.so.0 +usr/lib/*/samba/liblibcli-netlogon3-samba4.so.0 +usr/lib/*/samba/liblibsmb-samba4.so.0 +usr/lib/*/samba/libmessages-dgm-samba4.so.0 +usr/lib/*/samba/libmessages-util-samba4.so.0 +usr/lib/*/samba/libmsghdr-samba4.so.0 +usr/lib/*/samba/libmsrpc3-samba4.so.0 +usr/lib/*/samba/libndr-samba-samba4.so.0 +usr/lib/*/samba/libndr-samba4.so.0 +usr/lib/*/samba/libnet-keytab-samba4.so.0 +usr/lib/*/samba/libnetif-samba4.so.0 +usr/lib/*/samba/libnpa-tstream-samba4.so.0 +usr/lib/*/samba/libpac-samba4.so.0 +usr/lib/*/samba/libposix-eadb-samba4.so.0 +usr/lib/*/samba/libprinting-migrate-samba4.so.0 +usr/lib/*/samba/libprocess-model-samba4.so.0 +usr/lib/*/samba/libregistry-samba4.so.0 +usr/lib/*/samba/libreplace-samba4.so.0 +usr/lib/*/samba/libsamba-cluster-support-samba4.so.0 +usr/lib/*/samba/libsamba-debug-samba4.so.0 +usr/lib/*/samba/libsamba-modules-samba4.so.0 +usr/lib/*/samba/libsamba-security-samba4.so.0 +usr/lib/*/samba/libsamba-sockets-samba4.so.0 +usr/lib/*/samba/libsamba3-util-samba4.so.0 +usr/lib/*/samba/libsamdb-common-samba4.so.0 +usr/lib/*/samba/libsocket-blocking-samba4.so.0 +usr/lib/*/samba/libscavenge-dns-records-samba4.so.0 +usr/lib/*/samba/libsys-rw-samba4.so.0 +usr/lib/*/samba/libsecrets3-samba4.so.0 +usr/lib/*/samba/libserver-id-db-samba4.so.0 +usr/lib/*/samba/libserver-role-samba4.so.0 +usr/lib/*/samba/libservice-samba4.so.0 +usr/lib/*/samba/libshares-samba4.so.0 +usr/lib/*/samba/libsmb-transport-samba4.so.0 +usr/lib/*/samba/libsmbclient-raw-samba4.so.0 +usr/lib/*/samba/libsmbd-base-samba4.so.0 +usr/lib/*/samba/libsmbd-shim-samba4.so.0 +usr/lib/*/samba/libsmbldaphelper-samba4.so.0 +usr/lib/*/samba/libsmbpasswdparser-samba4.so.0 +usr/lib/*/samba/libtalloc-report-printf-samba4.so.0 +usr/lib/*/samba/libtdb-wrap-samba4.so.0 +usr/lib/*/samba/libtime-basic-samba4.so.0 +usr/lib/*/samba/libtrusts-util-samba4.so.0 +usr/lib/*/samba/libutil-reg-samba4.so.0 +usr/lib/*/samba/libutil-setid-samba4.so.0 +usr/lib/*/samba/libutil-tdb-samba4.so.0 +usr/lib/*/samba/libxattr-tdb-samba4.so.0 +usr/lib/*/samba/process_model/*.so diff --git a/debian/samba-libs.links b/debian/samba-libs.links new file mode 100644 index 0000000..7d61232 --- /dev/null +++ b/debian/samba-libs.links @@ -0,0 +1,18 @@ +# libndr.so.X mess. This library does not have stable ABI and can change. +# But it is used by other software (eg, sssd, openchange, evolution-mapi). +# openchange and evolution-mapi are not in debian (bullseye/bookworm). +# Only a small subset of the symbols is actually used. +# Since we package libndr.so.N inside samba-libs package, not inside its own +# libndrN package (because it links with all internal samba libs, and different +# libndrNs can't co-exist), we have to deal with the soname bumps somehow. + +# 4.15 changed soname of libndr.so.1 in incompatible way and bumbed soname to .2 +# Only small subset of symbols is actually used by sssd, neither of which were +# affected, so we can "assume" the ABI in .2 is "sufficienly compatible" with .1 +# Provide compat symlink. +# This is a gross hack, but it let us to survive. +# Remove past bookworm. +usr/lib/${DEB_HOST_MULTIARCH}/libndr.so.3 usr/lib/${DEB_HOST_MULTIARCH}/libndr.so.1 + +# 4.17 changed soname of libndr without a reason, provide compat symlink +usr/lib/${DEB_HOST_MULTIARCH}/libndr.so.3 usr/lib/${DEB_HOST_MULTIARCH}/libndr.so.2 diff --git a/debian/samba-libs.lintian-overrides b/debian/samba-libs.lintian-overrides new file mode 100644 index 0000000..ee20e69 --- /dev/null +++ b/debian/samba-libs.lintian-overrides @@ -0,0 +1,18 @@ +# the samba-libs package contains a number of libraries +# it doesn't make sense to have them in separate packages, as this would +# result in circular dependencies +samba-libs: package-name-doesnt-match-sonames * +# Embedded Heimdal is patched +samba-libs: embedded-library *heimdal* +# False positives, see #896012 +samba-libs: library-not-linked-against-libc * +samba-libs: shared-library-lacks-prerequisites */libdcerpc-samr.so.* +# unofficial APIs +samba-libs: shared-library-symbols-not-tracked * +# deliberate, a synonym for misspelled parameter +samba-libs: spelling-error-in-binary prefered preferred */libsamba-hostconfig.so.* +# simple libs: +samba-libs: hardening-no-fortify-functions */samba/libauth-samba4.so.* +samba-libs: hardening-no-fortify-functions */samba/libcli-ldap-samba4.so.* +samba-libs: hardening-no-fortify-functions */samba/libsmb-transport-samba4.so.* +samba-libs: hardening-no-fortify-functions */samba/libsys-rw-samba4.so.* diff --git a/debian/samba-libs.preinst b/debian/samba-libs.preinst new file mode 100644 index 0000000..accfe61 --- /dev/null +++ b/debian/samba-libs.preinst @@ -0,0 +1,45 @@ +#!/bin/sh +# +# + +set -e + +# Move files to private subdir now fhs patch is finally gone +if [ "$1" = "install" ] +then + for file in passdb.tdb secrets.tdb schannel_store.tdb idmap2.tdb + do + if [ -e /var/lib/samba/$file ] + then + if [ -e /var/lib/samba/private/$file ] && + [ ! /var/lib/samba/$file -ef /var/lib/samba/private/$file ] + then + echo $file exists in /var/lib/samba and /var/lib/samba/private, aborting samba-libs preinst + echo rename one of them to allow the install/upgrade to continue + echo http://bugs.debian.org/726472 + ls -al /var/lib/samba /var/lib/samba/private + exit 1 + fi + fi + done + for file in passdb.tdb secrets.tdb schannel_store.tdb idmap2.tdb + do + if [ -e /var/lib/samba/$file ] + then + if ! [ -e /var/lib/samba/private/$file ] + then + if [ ! -d /var/lib/samba/private ] + then + mkdir /var/lib/samba/private + fi + mv /var/lib/samba/$file /var/lib/samba/private/$file + ln /var/lib/samba/private/$file /var/lib/samba/$file + fi + fi + done +fi + + +#DEBHELPER# + +exit 0 diff --git a/debian/samba-libs.symbols b/debian/samba-libs.symbols new file mode 100644 index 0000000..cdb8724 --- /dev/null +++ b/debian/samba-libs.symbols @@ -0,0 +1,332 @@ +libndr.so.3 #PACKAGE# #MINVER# +* Build-Depends-Package: samba-dev + GUID_all_zero@NDR_0.0.1 2:4.17.2 + GUID_buf_string@NDR_0.0.4 2:4.17.2 + GUID_compare@NDR_0.0.1 2:4.17.2 + GUID_equal@NDR_0.0.1 2:4.17.2 + GUID_from_data_blob@NDR_0.0.1 2:4.17.2 + GUID_from_ndr_blob@NDR_0.0.1 2:4.17.2 + GUID_from_string@NDR_0.0.1 2:4.17.2 + GUID_hexstring@NDR_0.0.1 2:4.17.2 + GUID_random@NDR_0.0.1 2:4.17.2 + GUID_string2@NDR_0.0.1 2:4.17.2 + GUID_string@NDR_0.0.1 2:4.17.2 + GUID_to_ndr_blob@NDR_0.0.1 2:4.17.2 + GUID_to_ndr_buf@NDR_1.0.1 2:4.17.2 + GUID_zero@NDR_0.0.1 2:4.17.2 + NDR_0.0.1@NDR_0.0.1 2:4.17.2 + NDR_0.0.2@NDR_0.0.2 2:4.17.2 + NDR_0.0.3@NDR_0.0.3 2:4.17.2 + NDR_0.0.4@NDR_0.0.4 2:4.17.2 + NDR_0.0.5@NDR_0.0.5 2:4.17.2 + NDR_0.0.6@NDR_0.0.6 2:4.17.2 + NDR_0.0.7@NDR_0.0.7 2:4.17.2 + NDR_0.0.8@NDR_0.0.8 2:4.17.2 + NDR_0.0.9@NDR_0.0.9 2:4.17.2 + NDR_0.1.0@NDR_0.1.0 2:4.17.2 + NDR_0.1.1@NDR_0.1.1 2:4.17.2 + NDR_0.1.2@NDR_0.1.2 2:4.17.2 + NDR_0.2.0@NDR_0.2.0 2:4.17.2 + NDR_0.2.1@NDR_0.2.1 2:4.17.2 + NDR_1.0.0@NDR_1.0.0 2:4.17.2 + NDR_1.0.1@NDR_1.0.1 2:4.17.2 + NDR_1.0.2@NDR_1.0.2 2:4.17.2 + NDR_2.0.0@NDR_2.0.0 2:4.17.2 + NDR_3.0.0@NDR_3.0.0 2:4.17.2 + _ndr_pull_error@NDR_1.0.0 2:4.17.2 + _ndr_push_error@NDR_1.0.0 2:4.17.2 + ndr_align_size@NDR_0.0.1 2:4.17.2 + ndr_charset_length@NDR_0.0.1 2:4.17.2 + ndr_check_array_size@NDR_0.0.1 2:4.17.2 + ndr_check_padding@NDR_0.0.1 2:4.17.2 + ndr_check_pipe_chunk_trailer@NDR_0.0.1 2:4.17.2 + ndr_check_steal_array_length@NDR_2.0.0 2:4.17.2 + ndr_check_steal_array_size@NDR_2.0.0 2:4.17.2 + ndr_check_string_terminator@NDR_0.0.1 2:4.17.2 + ndr_get_array_length@NDR_0.0.1 2:4.17.2 + ndr_get_array_size@NDR_0.0.1 2:4.17.2 + ndr_map_error2errno@NDR_0.0.1 2:4.17.2 + ndr_map_error2ntstatus@NDR_0.0.1 2:4.17.2 + ndr_map_error2string@NDR_0.0.1 2:4.17.2 + ndr_policy_handle_empty@NDR_0.0.1 2:4.17.2 + ndr_policy_handle_equal@NDR_0.0.1 2:4.17.2 + ndr_print_DATA_BLOB@NDR_0.0.1 2:4.17.2 + ndr_print_GUID@NDR_0.0.1 2:4.17.2 + ndr_print_HRESULT@NDR_0.0.5 2:4.17.2 + ndr_print_KRB5_EDATA_NTSTATUS@NDR_0.0.1 2:4.17.2 + ndr_print_NTSTATUS@NDR_0.0.1 2:4.17.2 + ndr_print_NTTIME@NDR_0.0.1 2:4.17.2 + ndr_print_NTTIME_1sec@NDR_0.0.1 2:4.17.2 + ndr_print_NTTIME_hyper@NDR_0.0.1 2:4.17.2 + ndr_print_WERROR@NDR_0.0.1 2:4.17.2 + ndr_print_array_uint8@NDR_0.0.1 2:4.17.2 + ndr_print_bad_level@NDR_0.0.1 2:4.17.2 + ndr_print_bitmap_flag@NDR_0.0.1 2:4.17.2 + ndr_print_bool@NDR_0.0.1 2:4.17.2 + ndr_print_debug@NDR_0.0.1 2:4.17.2 + ndr_print_debug_helper@NDR_0.0.1 2:4.17.2 + ndr_print_debugc@NDR_0.0.2 2:4.17.2 + ndr_print_debugc_helper@NDR_0.0.2 2:4.17.2 + ndr_print_dlong@NDR_0.0.1 2:4.17.2 + ndr_print_double@NDR_0.0.1 2:4.17.2 + ndr_print_enum@NDR_0.0.1 2:4.17.2 + ndr_print_function_debug@NDR_0.0.1 2:4.17.2 + ndr_print_function_string@NDR_0.0.1 2:4.17.2 + ndr_print_gid_t@NDR_0.0.1 2:4.17.2 + ndr_print_hyper@NDR_0.0.1 2:4.17.2 + ndr_print_int16@NDR_0.0.1 2:4.17.2 + ndr_print_int3264@NDR_0.0.1 2:4.17.2 + ndr_print_int32@NDR_0.0.1 2:4.17.2 + ndr_print_int8@NDR_0.0.1 2:4.17.2 + ndr_print_ipv4address@NDR_0.0.1 2:4.17.2 + ndr_print_ipv6address@NDR_0.0.1 2:4.17.2 + ndr_print_ndr_syntax_id@NDR_0.0.1 2:4.17.2 + ndr_print_netr_SamDatabaseID@NDR_0.0.1 2:4.17.2 + ndr_print_netr_SchannelType@NDR_0.0.1 2:4.17.2 + ndr_print_null@NDR_0.0.1 2:4.17.2 + ndr_print_pointer@NDR_0.0.1 2:4.17.2 + ndr_print_policy_handle@NDR_0.0.1 2:4.17.2 + ndr_print_printf_helper@NDR_0.0.1 2:4.17.2 + ndr_print_ptr@NDR_0.0.1 2:4.17.2 + ndr_print_set_switch_value@NDR_0.0.1 2:4.17.2 + ndr_print_sockaddr_storage@NDR_0.0.1 2:4.17.2 + ndr_print_steal_switch_value@NDR_1.0.0 2:4.17.2 + ndr_print_string@NDR_0.0.1 2:4.17.2 + ndr_print_string_array@NDR_0.0.1 2:4.17.2 + ndr_print_string_helper@NDR_0.0.1 2:4.17.2 + ndr_print_struct@NDR_0.0.1 2:4.17.2 + ndr_print_struct_string@NDR_0.0.1 2:4.17.2 + ndr_print_svcctl_ServerType@NDR_0.0.1 2:4.17.2 + ndr_print_time_t@NDR_0.0.1 2:4.17.2 + ndr_print_timespec@NDR_0.0.1 2:4.17.2 + ndr_print_timeval@NDR_0.0.1 2:4.17.2 + ndr_print_udlong@NDR_0.0.1 2:4.17.2 + ndr_print_udlongr@NDR_0.0.1 2:4.17.2 + ndr_print_uid_t@NDR_0.0.1 2:4.17.2 + ndr_print_uint16@NDR_0.0.1 2:4.17.2 + ndr_print_uint3264@NDR_0.0.1 2:4.17.2 + ndr_print_uint32@NDR_0.0.1 2:4.17.2 + ndr_print_uint8@NDR_0.0.1 2:4.17.2 + ndr_print_union@NDR_0.0.1 2:4.17.2 + ndr_print_union_debug@NDR_0.0.1 2:4.17.2 + ndr_print_union_string@NDR_0.0.1 2:4.17.2 + ndr_print_winreg_Data@NDR_0.0.1 2:4.17.2 + ndr_print_winreg_Data_GPO@NDR_0.1.1 2:4.17.2 + ndr_print_winreg_Type@NDR_0.0.1 2:4.17.2 + ndr_pull_DATA_BLOB@NDR_0.0.1 2:4.17.2 + ndr_pull_GUID@NDR_0.0.1 2:4.17.2 + ndr_pull_HRESULT@NDR_0.0.5 2:4.17.2 + ndr_pull_KRB5_EDATA_NTSTATUS@NDR_0.0.1 2:4.17.2 + ndr_pull_NTSTATUS@NDR_0.0.1 2:4.17.2 + ndr_pull_NTTIME@NDR_0.0.1 2:4.17.2 + ndr_pull_NTTIME_1sec@NDR_0.0.1 2:4.17.2 + ndr_pull_NTTIME_hyper@NDR_0.0.1 2:4.17.2 + ndr_pull_WERROR@NDR_0.0.1 2:4.17.2 + ndr_pull_advance@NDR_0.0.1 2:4.17.2 + ndr_pull_align@NDR_0.0.1 2:4.17.2 + ndr_pull_append@NDR_0.0.3 2:4.17.2 + ndr_pull_array_length@NDR_0.0.1 2:4.17.2 + ndr_pull_array_size@NDR_0.0.1 2:4.17.2 + ndr_pull_array_uint8@NDR_0.0.1 2:4.17.2 + ndr_pull_bytes@NDR_0.0.1 2:4.17.2 + ndr_pull_charset@NDR_0.0.1 2:4.17.2 + ndr_pull_charset_to_null@NDR_0.0.1 2:4.17.2 + ndr_pull_dlong@NDR_0.0.1 2:4.17.2 + ndr_pull_double@NDR_0.0.1 2:4.17.2 + ndr_pull_enum_uint1632@NDR_0.0.1 2:4.17.2 + ndr_pull_enum_uint16@NDR_0.0.1 2:4.17.2 + ndr_pull_enum_uint32@NDR_0.0.1 2:4.17.2 + ndr_pull_enum_uint8@NDR_0.0.1 2:4.17.2 + ndr_pull_generic_ptr@NDR_0.0.1 2:4.17.2 + ndr_pull_get_relative_base_offset@NDR_0.0.1 2:4.17.2 + ndr_pull_gid_t@NDR_0.0.1 2:4.17.2 + ndr_pull_hyper@NDR_0.0.1 2:4.17.2 + ndr_pull_init_blob@NDR_0.0.1 2:4.17.2 + ndr_pull_int16@NDR_0.0.1 2:4.17.2 + ndr_pull_int32@NDR_0.0.1 2:4.17.2 + ndr_pull_int8@NDR_0.0.1 2:4.17.2 + ndr_pull_ipv4address@NDR_0.0.1 2:4.17.2 + ndr_pull_ipv6address@NDR_0.0.1 2:4.17.2 + ndr_pull_ndr_syntax_id@NDR_0.0.1 2:4.17.2 + ndr_pull_netr_SamDatabaseID@NDR_0.0.1 2:4.17.2 + ndr_pull_netr_SchannelType@NDR_0.0.1 2:4.17.2 + ndr_pull_pointer@NDR_0.0.1 2:4.17.2 + ndr_pull_policy_handle@NDR_0.0.1 2:4.17.2 + ndr_pull_pop@NDR_0.0.3 2:4.17.2 + ndr_pull_ref_ptr@NDR_0.0.1 2:4.17.2 + ndr_pull_relative_ptr1@NDR_0.0.1 2:4.17.2 + ndr_pull_relative_ptr2@NDR_0.0.1 2:4.17.2 + ndr_pull_relative_ptr_short@NDR_0.0.1 2:4.17.2 + ndr_pull_restore_relative_base_offset@NDR_0.0.1 2:4.17.2 + ndr_pull_set_switch_value@NDR_0.0.1 2:4.17.2 + ndr_pull_setup_relative_base_offset1@NDR_0.0.1 2:4.17.2 + ndr_pull_setup_relative_base_offset2@NDR_0.0.1 2:4.17.2 + ndr_pull_steal_switch_value@NDR_0.0.6 2:4.17.2 + ndr_pull_string@NDR_0.0.1 2:4.17.2 + ndr_pull_string_array@NDR_0.0.1 2:4.17.2 + ndr_pull_struct_blob@NDR_0.0.1 2:4.17.2 + ndr_pull_struct_blob_all@NDR_0.0.1 2:4.17.2 + ndr_pull_struct_blob_all_noalloc@NDR_0.0.7 2:4.17.2 + ndr_pull_subcontext_end@NDR_0.0.1 2:4.17.2 + ndr_pull_subcontext_start@NDR_0.0.1 2:4.17.2 + ndr_pull_svcctl_ServerType@NDR_0.0.1 2:4.17.2 + ndr_pull_time_t@NDR_0.0.1 2:4.17.2 + ndr_pull_timespec@NDR_0.0.1 2:4.17.2 + ndr_pull_timeval@NDR_0.0.1 2:4.17.2 + ndr_pull_trailer_align@NDR_0.0.1 2:4.17.2 + ndr_pull_udlong@NDR_0.0.1 2:4.17.2 + ndr_pull_udlongr@NDR_0.0.1 2:4.17.2 + ndr_pull_uid_t@NDR_0.0.1 2:4.17.2 + ndr_pull_uint1632@NDR_0.0.1 2:4.17.2 + ndr_pull_uint16@NDR_0.0.1 2:4.17.2 + ndr_pull_uint3264@NDR_0.0.1 2:4.17.2 + ndr_pull_uint32@NDR_0.0.1 2:4.17.2 + ndr_pull_uint8@NDR_0.0.1 2:4.17.2 + ndr_pull_union_align@NDR_0.0.1 2:4.17.2 + ndr_pull_union_blob@NDR_0.0.1 2:4.17.2 + ndr_pull_union_blob_all@NDR_0.0.1 2:4.17.2 + ndr_pull_winreg_Data@NDR_0.0.1 2:4.17.2 + ndr_pull_winreg_Data_GPO@NDR_0.1.1 2:4.17.2 + ndr_pull_winreg_Type@NDR_0.0.1 2:4.17.2 + ndr_push_DATA_BLOB@NDR_0.0.1 2:4.17.2 + ndr_push_GUID@NDR_0.0.1 2:4.17.2 + ndr_push_HRESULT@NDR_0.0.5 2:4.17.2 + ndr_push_KRB5_EDATA_NTSTATUS@NDR_0.0.1 2:4.17.2 + ndr_push_NTSTATUS@NDR_0.0.1 2:4.17.2 + ndr_push_NTTIME@NDR_0.0.1 2:4.17.2 + ndr_push_NTTIME_1sec@NDR_0.0.1 2:4.17.2 + ndr_push_NTTIME_hyper@NDR_0.0.1 2:4.17.2 + ndr_push_WERROR@NDR_0.0.1 2:4.17.2 + ndr_push_align@NDR_0.0.1 2:4.17.2 + ndr_push_array_uint8@NDR_0.0.1 2:4.17.2 + ndr_push_blob@NDR_0.0.1 2:4.17.2 + ndr_push_bytes@NDR_0.0.1 2:4.17.2 + ndr_push_charset@NDR_0.0.1 2:4.17.2 + ndr_push_charset_to_null@NDR_0.0.9 2:4.17.2 + ndr_push_dlong@NDR_0.0.1 2:4.17.2 + ndr_push_double@NDR_0.0.1 2:4.17.2 + ndr_push_enum_uint1632@NDR_0.0.1 2:4.17.2 + ndr_push_enum_uint16@NDR_0.0.1 2:4.17.2 + ndr_push_enum_uint32@NDR_0.0.1 2:4.17.2 + ndr_push_enum_uint8@NDR_0.0.1 2:4.17.2 + ndr_push_expand@NDR_0.0.1 2:4.17.2 + ndr_push_full_ptr@NDR_0.0.1 2:4.17.2 + ndr_push_get_relative_base_offset@NDR_0.0.1 2:4.17.2 + ndr_push_gid_t@NDR_0.0.1 2:4.17.2 + ndr_push_hyper@NDR_0.0.1 2:4.17.2 + ndr_push_init_ctx@NDR_0.0.1 2:4.17.2 + ndr_push_int16@NDR_0.0.1 2:4.17.2 + ndr_push_int32@NDR_0.0.1 2:4.17.2 + ndr_push_int8@NDR_0.0.1 2:4.17.2 + ndr_push_ipv4address@NDR_0.0.1 2:4.17.2 + ndr_push_ipv6address@NDR_0.0.1 2:4.17.2 + ndr_push_ndr_syntax_id@NDR_0.0.1 2:4.17.2 + ndr_push_netr_SamDatabaseID@NDR_0.0.1 2:4.17.2 + ndr_push_netr_SchannelType@NDR_0.0.1 2:4.17.2 + ndr_push_pipe_chunk_trailer@NDR_0.0.1 2:4.17.2 + ndr_push_pointer@NDR_0.0.1 2:4.17.2 + ndr_push_policy_handle@NDR_0.0.1 2:4.17.2 + ndr_push_ref_ptr@NDR_0.0.1 2:4.17.2 + ndr_push_relative_ptr1@NDR_0.0.1 2:4.17.2 + ndr_push_relative_ptr2_end@NDR_0.0.1 2:4.17.2 + ndr_push_relative_ptr2_start@NDR_0.0.1 2:4.17.2 + ndr_push_restore_relative_base_offset@NDR_0.0.1 2:4.17.2 + ndr_push_set_switch_value@NDR_0.0.1 2:4.17.2 + ndr_push_setup_relative_base_offset1@NDR_0.0.1 2:4.17.2 + ndr_push_setup_relative_base_offset2@NDR_0.0.1 2:4.17.2 + ndr_push_short_relative_ptr1@NDR_0.0.1 2:4.17.2 + ndr_push_short_relative_ptr2@NDR_0.0.1 2:4.17.2 + ndr_push_steal_switch_value@NDR_1.0.0 2:4.17.2 + ndr_push_string@NDR_0.0.1 2:4.17.2 + ndr_push_string_array@NDR_0.0.1 2:4.17.2 + ndr_push_struct_blob@NDR_0.0.1 2:4.17.2 + ndr_push_struct_into_fixed_blob@NDR_0.0.8 2:4.17.2 + ndr_push_subcontext_end@NDR_0.0.1 2:4.17.2 + ndr_push_subcontext_start@NDR_0.0.1 2:4.17.2 + ndr_push_svcctl_ServerType@NDR_0.0.1 2:4.17.2 + ndr_push_time_t@NDR_0.0.1 2:4.17.2 + ndr_push_timespec@NDR_0.0.1 2:4.17.2 + ndr_push_timeval@NDR_0.0.1 2:4.17.2 + ndr_push_trailer_align@NDR_0.0.1 2:4.17.2 + ndr_push_udlong@NDR_0.0.1 2:4.17.2 + ndr_push_udlongr@NDR_0.0.1 2:4.17.2 + ndr_push_uid_t@NDR_0.0.1 2:4.17.2 + ndr_push_uint1632@NDR_0.0.1 2:4.17.2 + ndr_push_uint16@NDR_0.0.1 2:4.17.2 + ndr_push_uint3264@NDR_0.0.1 2:4.17.2 + ndr_push_uint32@NDR_0.0.1 2:4.17.2 + ndr_push_uint8@NDR_0.0.1 2:4.17.2 + ndr_push_union_align@NDR_0.0.1 2:4.17.2 + ndr_push_union_blob@NDR_0.0.1 2:4.17.2 + ndr_push_unique_ptr@NDR_0.0.1 2:4.17.2 + ndr_push_winreg_Data@NDR_0.0.1 2:4.17.2 + ndr_push_winreg_Data_GPO@NDR_0.1.1 2:4.17.2 + ndr_push_winreg_Type@NDR_0.0.1 2:4.17.2 + ndr_push_zero@NDR_0.0.1 2:4.17.2 + ndr_set_flags@NDR_0.0.1 2:4.17.2 + ndr_size_DATA_BLOB@NDR_0.0.1 2:4.17.2 + ndr_size_GUID@NDR_0.0.1 2:4.17.2 + ndr_size_string@NDR_0.0.1 2:4.17.2 + ndr_size_string_array@NDR_0.0.1 2:4.17.2 + ndr_size_struct@NDR_0.0.1 2:4.17.2 + ndr_size_union@NDR_0.0.1 2:4.17.2 + ndr_size_winreg_Data_GPO@NDR_0.1.2 2:4.17.2 + ndr_steal_array_length@NDR_2.0.0 2:4.17.2 + ndr_steal_array_size@NDR_2.0.0 2:4.17.2 + ndr_string_array_size@NDR_0.0.1 2:4.17.2 + ndr_string_length@NDR_0.0.1 2:4.17.2 + ndr_syntax_id_buf_string@NDR_1.0.2 2:4.17.2 + ndr_syntax_id_equal@NDR_0.0.1 2:4.17.2 + ndr_syntax_id_from_string@NDR_0.0.3 2:4.17.2 + ndr_syntax_id_null@NDR_0.0.1 2:4.17.2 + ndr_syntax_id_to_string@NDR_0.0.3 2:4.17.2 + ndr_table_misc@NDR_0.2.1 2:4.17.2 + ndr_token_max_list_size@NDR_2.0.0 2:4.17.2 + ndr_token_peek@NDR_0.0.1 2:4.17.2 + ndr_token_retrieve@NDR_0.0.1 2:4.17.2 + ndr_token_retrieve_cmp_fn@NDR_0.0.1 2:4.17.2 + ndr_token_store@NDR_0.0.1 2:4.17.2 + ndr_transfer_syntax_ndr64@NDR_0.0.1 2:4.17.2 + ndr_transfer_syntax_ndr@NDR_0.0.1 2:4.17.2 + ndr_zero_memory@NDR_0.2.0 2:4.17.2 + +libsmbldap.so.2 #PACKAGE# #MINVER# +* Build-Depends-Package: samba-dev + SMBLDAP_0@SMBLDAP_0 2:4.16.6 + SMBLDAP_1@SMBLDAP_1 2:4.16.6 + SMBLDAP_2.1.0@SMBLDAP_2.1.0 2:4.16.6 + SMBLDAP_2@SMBLDAP_2 2:4.16.6 + smbldap_add@SMBLDAP_0 2:4.16.6 + smbldap_delete@SMBLDAP_0 2:4.16.6 + smbldap_extended_operation@SMBLDAP_0 2:4.16.6 + smbldap_free_struct@SMBLDAP_0 2:4.16.6 + smbldap_get_ldap@SMBLDAP_1 2:4.16.6 + smbldap_get_paged_results@SMBLDAP_1 2:4.16.6 + smbldap_get_single_attribute@SMBLDAP_0 2:4.16.6 + smbldap_has_control@SMBLDAP_0 2:4.16.6 + smbldap_has_extension@SMBLDAP_0 2:4.16.6 + smbldap_has_naming_context@SMBLDAP_0 2:4.16.6 + smbldap_init@SMBLDAP_0 2:4.16.6 + smbldap_make_mod@SMBLDAP_0 2:4.16.6 + smbldap_make_mod_blob@SMBLDAP_0 2:4.16.6 + smbldap_modify@SMBLDAP_0 2:4.16.6 + smbldap_pull_sid@SMBLDAP_0 2:4.16.6 + smbldap_search@SMBLDAP_0 2:4.16.6 + smbldap_search_paged@SMBLDAP_0 2:4.16.6 + smbldap_search_suffix@SMBLDAP_0 2:4.16.6 + smbldap_set_bind_callback@SMBLDAP_2 2:4.16.6 + smbldap_set_creds@SMBLDAP_0 2:4.16.6 + smbldap_set_mod@SMBLDAP_0 2:4.16.6 + smbldap_set_mod_blob@SMBLDAP_0 2:4.16.6 + smbldap_set_paged_results@SMBLDAP_1 2:4.16.6 + smbldap_setup_full_conn@SMBLDAP_0 2:4.16.6 + smbldap_start_tls@SMBLDAP_0 2:4.16.6 + smbldap_start_tls_start@SMBLDAP_2.1.0 2:4.16.6 + smbldap_talloc_autofree_ldapmod@SMBLDAP_0 2:4.16.6 + smbldap_talloc_autofree_ldapmsg@SMBLDAP_0 2:4.16.6 + smbldap_talloc_dn@SMBLDAP_0 2:4.16.6 + smbldap_talloc_first_attribute@SMBLDAP_0 2:4.16.6 + smbldap_talloc_single_attribute@SMBLDAP_0 2:4.16.6 + smbldap_talloc_single_blob@SMBLDAP_0 2:4.16.6 + smbldap_talloc_smallest_attribute@SMBLDAP_0 2:4.16.6 + diff --git a/debian/samba-testsuite.examples b/debian/samba-testsuite.examples new file mode 100644 index 0000000..9161d80 --- /dev/null +++ b/debian/samba-testsuite.examples @@ -0,0 +1 @@ +examples/pcap2nbench diff --git a/debian/samba-testsuite.install b/debian/samba-testsuite.install new file mode 100644 index 0000000..7bdab91 --- /dev/null +++ b/debian/samba-testsuite.install @@ -0,0 +1,13 @@ +usr/bin/gentest +usr/bin/locktest +usr/bin/masktest +usr/bin/ndrdump +usr/bin/smbtorture +usr/lib/*/samba/libdlz-bind9-for-torture-samba4.so.0 +usr/lib/*/samba/libprinter-driver-samba4.so.0 +usr/lib/*/samba/libtorture-samba4.so.0 +usr/share/man/man1/gentest.1 +usr/share/man/man1/locktest.1 +usr/share/man/man1/masktest.1 +usr/share/man/man1/ndrdump.1 +usr/share/man/man1/smbtorture.1 diff --git a/debian/samba-vfs-modules.install b/debian/samba-vfs-modules.install new file mode 100644 index 0000000..b7b7b85 --- /dev/null +++ b/debian/samba-vfs-modules.install @@ -0,0 +1,2 @@ +usr/lib/*/samba/vfs/*.so +usr/share/man/man8/vfs_*.8 diff --git a/debian/samba-vfs-modules.lintian-overrides b/debian/samba-vfs-modules.lintian-overrides new file mode 100644 index 0000000..54e32f4 --- /dev/null +++ b/debian/samba-vfs-modules.lintian-overrides @@ -0,0 +1,8 @@ +# False positives, see #896012 +samba-vfs-modules: library-not-linked-against-libc * +# manpages describing vfs modules: +samba-vfs-modules: spare-manual-page */man/man8/vfs_* +# intentional: was a typo in old config parser so we allow old config to work: +samba-vfs-modules: spelling-error-in-binary ressource resource */vfs/fruit.so* +samba-vfs-modules: hardening-no-fortify-functions */samba/vfs/expand_msdfs.so* +samba-vfs-modules: hardening-no-fortify-functions */samba/vfs/fileid.so* diff --git a/debian/samba.NEWS b/debian/samba.NEWS new file mode 100644 index 0000000..5f4c14f --- /dev/null +++ b/debian/samba.NEWS @@ -0,0 +1,179 @@ +samba (2:4.6.5+dfsg-5) unstable; urgency=medium + + The samba service has been removed. Use the individual services instead: + + * nmbd + * smbd + * samba-ad-dc + + -- Mathieu Parent <sathieu@debian.org> Tue, 18 Jul 2017 22:52:05 +0200 + +samba (2:4.4.1+dfsg-1) experimental; urgency=medium + + This Samba security addresses both Denial of Service and Man in + the Middle vulnerabilities. + + Both of these changes implement new smb.conf options and a number + of stricter behaviours to prevent Man in the Middle attacks on our + network services, as a client and as a server. + + Between these changes, compatibility with a large number of older + software versions has been lost in the default configuration. + + See the release notes in WHATNEW.txt for more information. + + + Here are some additional hints how to work around the new stricter default behaviors: + + * As an AD DC server, only Windows 2000 and Samba 3.6 and above as + a domain member are supported out of the box. Other smb file + servers as domain members are also fine out of the box. + + * As an AD DC server, with default setting of "ldap server require + strong auth", LDAP clients connecting over ldaps:// or START_TLS + will be allowed to perform simple LDAP bind only. + + The preferred configuration for LDAP clients is to use SASL + GSSAPI directly over ldap:// without using ldaps:// or + START_TLS. + + To use LDAP with START_TLS and SASL GSSAPI (either Kerberos or + NTLMSSP) sign/seal protection must be used by the client and + server should be configured with "ldap server require strong + auth = allow_sasl_over_tls". + + Consult OpenLDAP documentation how to set sign/seal protection + in ldap.conf. + + For SSSD client configured with "id_provider = ad" or + "id_provider = ldap" with "auth_provider = krb5", see + sssd-ldap(5) manual for details on TLS session handling. + + * As a File Server, compatibility with the Linux Kernel cifs + client depends on which configuration options are selected, please + use "sec=krb5(i)" or "sec=ntlmssp(i)", not "sec=ntlmv2". + + * As a file or printer client and as a domain member, out of the + box compatibility with Samba less than 4.0 and other SMB/CIFS + servers, depends on support for SMB signing or SMB2 on the + server, which is often disabled or absent. You may need to + adjust the "client ipc signing" to "no" in these cases. + + * In case of an upgrade from versions before 4.2.0, you might run + into problems as a domain member. The out of the box compatibility + with Samba 3.x domain controllers requires NETLOGON features only + available in Samba 3.2 and above. + + However, all of these can be worked around by setting smb.conf + options in Samba, see WHATSNEW.txt the 4.2.0 release notes at + https://www.samba.org/samba/history/samba-4.2.0.html and the Samba + wiki for details, workarounds and suggested security-improving + changes to these and other software packages. + + + Suggested further improvements after patching: + + It is recommended that administrators set these additional options, + if compatible with their network environment: + + server signing = mandatory + ntlm auth = no + + Without "server signing = mandatory", Man in the Middle attacks + are still possible against our file server and + classic/NT4-like/Samba3 Domain controller. (It is now enforced on + Samba's AD DC.) Note that this has heavy impact on the file server + performance, so you need to decide between performance and + security. These Man in the Middle attacks for smb file servers are + well known for decades. + + Without "ntlm auth = no", there may still be clients not using + NTLMv2, and these observed passwords may be brute-forced easily using + cloud-computing resources or rainbow tables. + + -- Andrew Bartlett <abartlet+debian@catalyst.net.nz> Tue, 12 Apr 2016 16:18:57 +1200 + +samba (2:4.0.10+dfsg-3) unstable; urgency=low + + The SWAT package is no longer available. + + Upstream support for SWAT (Samba Web Administration Tool) was removed in + samba 4.1.0. As a result, swat is no longer shipped in the Debian Samba + packages. Unfortunately, there is currently no replacement. + + Details why SWAT has been removed upstream can be found on the + samba-technical mailing list: + + https://lists.samba.org/archive/samba-technical/2013-February/090572.html + + -- Ivo De Decker <ivo.dedecker@ugent.be> Tue, 22 Oct 2013 07:52:54 +0200 + +samba (2:3.4.0-1) unstable; urgency=low + + Default passdb backend changed in samba 3.4.0 and above + + Beginning with samba 3.4.0, the default setting for "passdb + backend" changed from "smbpasswd" to "tdbsam". + + If your smb.conf file does not have an explicit mention of + "passdb backend" when upgrading from pre-3.4.0 versions of + samba, it is likely that users will no longer be able to + authenticate. + + As a consequence of all this, if you're upgrading from lenny + and have no setting of "passdb backend" in smb.conf, you MUST + add "passdb backend = smbpasswd" in order to keep your samba + server's behaviour. + + As Debian packages of samba explicitly set "passdb backend = tdbsam" + by default since etch, very few users should need to modify their + settings. + + -- Christian Perrier <bubulle@debian.org> Tue, 07 Jul 2009 20:42:19 +0200 + +samba (3.0.27a-2) unstable; urgency=low + + Weak authentication methods are disabled by default + + Beginning with this version, plaintext authentication is disabled for + clients and lanman authentication is disabled for both clients and + servers. Lanman authentication is not needed for Windows + NT/2000/XP/Vista, Mac OS X or Samba, but if you still have Windows + 95/98/ME clients (or servers) you may need to set lanman auth (or client + lanman auth) to yes in your smb.conf. + + The "lanman auth = no" setting will also cause lanman password hashes to + be deleted from smbpasswd and prevent new ones from being written, so + that these can't be subjected to brute-force password attacks. This + means that re-enabling lanman auth after it has been disabled is more + difficult; it is therefore advisable that you re-enable the option as + soon as possible if you think you will need to support Win9x clients. + + Client support for plaintext passwords is not needed for recent Windows + servers, and in fact this behavior change makes the Samba client behave + in a manner consistent with all Windows clients later than Windows 98. + However, if you need to connect to a Samba server that does not have + encrypted password support enabled, or to another server that does not + support NTLM authentication, you will need to set + "client plaintext auth = yes" and "client lanman auth = yes" in smb.conf. + + -- Steve Langasek <vorlon@debian.org> Sat, 24 Nov 2007 00:23:37 -0800 + +samba (3.0.26a-2) unstable; urgency=low + + Default printing system has changed from BSD to CUPS + + Previous versions of this package were configured to use BSD lpr as the + default printing system. With this version of Samba, the default has + been changed to CUPS for consistency with the current default printer + handling in the rest of the system. + + If you wish to continue using the BSD printing interface from Samba, you + will need to set "printing = bsd" manually in /etc/samba/smb.conf. If + you wish to use CUPS printing but have previously set any of the + "print command", "lpq command", or "lprm command" options in smb.conf, + you will want to remove these settings from your config. Otherwise, if + you have the cupsys package installed, Samba should begin to use it + automatically with no action on your part. + + -- Steve Langasek <vorlon@debian.org> Wed, 14 Nov 2007 17:19:36 -0800 diff --git a/debian/samba.cron.daily b/debian/samba.cron.daily new file mode 100644 index 0000000..42fc98d --- /dev/null +++ b/debian/samba.cron.daily @@ -0,0 +1,16 @@ +#!/bin/sh +# +# cron script to save a backup copy of /etc/samba/smbpasswd in /var/backups. +# +# Written by Eloy A. Paris <peloy@debian.org> for the Debian project. +# + +BAK=/var/backups + +umask 022 +if cd $BAK; then + # Make sure /etc/samba/smbpasswd exists + if [ -f /etc/samba/smbpasswd ]; then + cmp -s smbpasswd.bak /etc/samba/smbpasswd || cp -p /etc/samba/smbpasswd smbpasswd.bak + fi +fi diff --git a/debian/samba.dirs b/debian/samba.dirs new file mode 100644 index 0000000..cd0dcc6 --- /dev/null +++ b/debian/samba.dirs @@ -0,0 +1,11 @@ +etc/apparmor.d/samba +usr/bin +usr/sbin +var/lib/samba/printers/COLOR +var/lib/samba/printers/IA64 +var/lib/samba/printers/W32ALPHA +var/lib/samba/printers/W32MIPS +var/lib/samba/printers/W32PPC +var/lib/samba/printers/W32X86 +var/lib/samba/printers/WIN40 +var/lib/samba/printers/x64 diff --git a/debian/samba.examples b/debian/samba.examples new file mode 100644 index 0000000..063b494 --- /dev/null +++ b/debian/samba.examples @@ -0,0 +1,3 @@ +examples/LDAP +examples/logon +examples/printing diff --git a/debian/samba.install b/debian/samba.install new file mode 100755 index 0000000..65a8600 --- /dev/null +++ b/debian/samba.install @@ -0,0 +1,48 @@ +#!/usr/bin/dh-exec --with-scripts=filter-arch,filter-build-profiles +etc/ufw/applications.d/samba +[linux-any] lib/systemd/system/nmb*.service +[linux-any] lib/systemd/system/samba*.service +[linux-any] lib/systemd/system/smb*.service +usr/bin/dumpmscat +usr/bin/mvxattr +usr/bin/oLschema2ldif +usr/bin/pdbedit +usr/bin/profiles +usr/bin/sharesec +usr/bin/smbcontrol +usr/bin/smbstatus +<!pkg.samba.mitkrb5> usr/lib/*/samba/libHDB-SAMBA4-samba4.so.0 +<!pkg.samba.mitkrb5> usr/lib/*/samba/libgss-preauth-samba4.so.0 +<!pkg.samba.mitkrb5> usr/lib/*/samba/libhdb-samba4.so.0 +<!pkg.samba.mitkrb5> usr/lib/*/samba/libkdc-samba4.so.0 +<pkg.samba.mitkrb5> usr/lib/*/krb5/plugins/kdb/samba.so +usr/lib/*/samba/libmscat-samba4.so.0 +usr/libexec/samba/samba-bgqd +usr/lib/*/samba/service/*.so +usr/sbin/eventlogadm +usr/sbin/nmbd +usr/sbin/samba +usr/sbin/samba-gpupdate +usr/sbin/samba_dnsupdate +usr/sbin/samba_downgrade_db +usr/sbin/samba_spnupdate +usr/sbin/samba_upgradedns +usr/sbin/smbd +usr/share/man/man1/log2pcap.1 +usr/share/man/man1/mvxattr.1 +usr/share/man/man1/oLschema2ldif.1 +usr/share/man/man1/profiles.1 +usr/share/man/man1/sharesec.1 +usr/share/man/man1/smbcontrol.1 +usr/share/man/man1/smbstatus.1 +usr/share/man/man8/eventlogadm.8 +usr/share/man/man8/nmbd.8 +usr/share/man/man8/pdbedit.8 +usr/share/man/man8/samba-bgqd.8 +usr/share/man/man8/samba_downgrade_db.8 +usr/share/man/man8/samba-gpupdate.8 +usr/share/man/man8/samba.8 +usr/share/man/man8/smbd.8 +usr/share/samba/admx/ +usr/share/samba/mdssvc/elasticsearch_mappings.json +usr/share/samba/update-apparmor-samba-profile diff --git a/debian/samba.links b/debian/samba.links new file mode 100644 index 0000000..f1bd152 --- /dev/null +++ b/debian/samba.links @@ -0,0 +1,2 @@ +/usr/share/bug/samba-common/presubj /usr/share/bug/samba/presubj +/usr/share/bug/samba-common/script /usr/share/bug/samba/script diff --git a/debian/samba.lintian-overrides b/debian/samba.lintian-overrides new file mode 100644 index 0000000..a133996 --- /dev/null +++ b/debian/samba.lintian-overrides @@ -0,0 +1 @@ +samba: hardening-no-fortify-functions */samba/libmscat-samba4.so.* diff --git a/debian/samba.logrotate b/debian/samba.logrotate new file mode 100644 index 0000000..9c7c342 --- /dev/null +++ b/debian/samba.logrotate @@ -0,0 +1,40 @@ +/var/log/samba/log.smbd { + weekly + missingok + rotate 7 + postrotate + [ ! -x /usr/bin/smbcontrol ] || [ ! -f /run/samba/smbd.pid ] || /usr/bin/smbcontrol smbd reload-config + endscript + compress + delaycompress + notifempty +} + +/var/log/samba/log.nmbd { + weekly + missingok + rotate 7 + postrotate + [ ! -x /usr/bin/smbcontrol ] || [ ! -f /run/samba/nmbd.pid ] || /usr/bin/smbcontrol nmbd reload-config + endscript + compress + delaycompress + notifempty +} + +/var/log/samba/log.samba { + weekly + missingok + rotate 7 + postrotate + if [ -d /run/systemd/system ] && command systemctl >/dev/null 2>&1 && systemctl is-active --quiet samba-ad-dc; then + systemctl kill --kill-who all --signal=SIGHUP samba-ad-dc + elif [ -f /run/samba/samba.pid ]; then + # This only sends to main pid, See #803924 + kill -HUP `cat /run/samba/samba.pid` + fi + endscript + compress + delaycompress + notifempty +} diff --git a/debian/samba.maintscript b/debian/samba.maintscript new file mode 100644 index 0000000..7395ab5 --- /dev/null +++ b/debian/samba.maintscript @@ -0,0 +1,5 @@ +rm_conffile /etc/init.d/samba 2:4.6.5+dfsg-5~ +rm_conffile /etc/init/nmbd.conf 2:4.6.5+dfsg-5~ +rm_conffile /etc/init/reload-smbd.conf 2:4.6.5+dfsg-5~ +rm_conffile /etc/init/samba-ad-dc.conf 2:4.6.5+dfsg-5~ +rm_conffile /etc/init/smbd.conf 2:4.6.5+dfsg-5~ diff --git a/debian/samba.nmbd.init b/debian/samba.nmbd.init new file mode 100644 index 0000000..7ccaa64 --- /dev/null +++ b/debian/samba.nmbd.init @@ -0,0 +1,52 @@ +#!/bin/sh + +### BEGIN INIT INFO +# Provides: nmbd +# Required-Start: $network $local_fs $remote_fs +# Required-Stop: $network $local_fs $remote_fs +# X-Start-Before: smbd +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Samba NetBIOS nameserver (nmbd) +# Description: NetBIOS name server to provide NetBIOS over IP naming services +# to clients +### END INIT INFO + +NAME=nmbd +DAEMON=/usr/sbin/$NAME +PIDFILE=/run/samba/$NAME.pid +DESC="NetBIOS name server" +SCRIPT=nmbd + +# clear conflicting settings from the environment +unset TMPDIR + +test -x $DAEMON || exit 0 +/usr/share/samba/is-configured $NAME || exit 0 + +[ -f /etc/default/samba ] && . /etc/default/samba + +. /lib/lsb/init-functions + +case "$1" in + (start) + log_daemon_msg "Starting $DESC" $NAME + start-stop-daemon --start --quiet --oknodo --exec $DAEMON --pidfile $PIDFILE -- -D $NMBDOPTIONS + log_end_msg $? + ;; + (stop) + log_daemon_msg "Stopping $DESC" $NAME + start-stop-daemon --stop --quiet --oknodo --exec $DAEMON --pidfile $PIDFILE + log_end_msg $? + ;; + (restart|force-reload) + $0 stop && sleep 1 && $0 start + ;; + (status) + status_of_proc -p $PIDFILE $DAEMON $NAME + ;; + (*) + echo "Usage: /etc/init.d/$SCRIPT {start|stop|restart|force-reload|status}" + exit 1 + ;; +esac diff --git a/debian/samba.pam b/debian/samba.pam new file mode 100644 index 0000000..e6c8ce6 --- /dev/null +++ b/debian/samba.pam @@ -0,0 +1,3 @@ +@include common-auth +@include common-account +@include common-session-noninteractive diff --git a/debian/samba.postinst b/debian/samba.postinst new file mode 100644 index 0000000..ceb0b64 --- /dev/null +++ b/debian/samba.postinst @@ -0,0 +1,79 @@ +#!/bin/sh + +set -e + +nmbd_error_handler() { + if [ -d /sys/class/net/lo ] && ls /sys/class/net | grep -qv ^lo$; then + # https://bugs.debian.org/893762 + echo 'WARNING: nmbd failed to start as there is no non-loopback interfaces available.' + echo 'Either add an interface or set "disable netbios = yes" in smb.conf' + return 0 + elif command -v ip > /dev/null && ip a show | grep '^[[:space:]]*inet ' | grep -vq ' lo$'; then + # https://bugs.debian.org/859526 + echo 'WARNING: nmbd failed to start as there is no local IPv4 non-loopback interfaces available.' + echo 'Either add an IPv4 address or set "disable netbios = yes" in smb.conf' + return 0 + else + echo 'ERROR: nmbd failed to start.' + return 1 # caught by set -e + fi +} + +# We generate several files during the postinst, and we don't want +# them to be readable only by root. +umask 022 + +if [ configure = "$1" -a -z "$2" ] # only do this if not upgrading +then + # add the sambashare group; --force: ok if group already exist + groupadd --force --system sambashare + dir=/var/lib/samba/usershares + [ -d $dir ] || install -d -m 1770 -g sambashare $dir +fi + +# in 4.17.4+dfsg-3 we stopped masking services, unmask them here +if [ configure = "$1" ] && dpkg --compare-versions "$2" lt-nl 2:4.17.4+dfsg-3~ +then + for s in nmbd smbd samba-ad-dc; do + if [ /dev/null = $(realpath /etc/systemd/system/$s.service) ] + then + rm -f /etc/systemd/system/$s.service + fi + done +fi + +# remove old spool directory (point it to /var/tmp if in use) +if [ configure = "$1" ] && dpkg --compare-versions "$2" lt-nl 2:4.17.4+dfsg-3~ +then + dir=/var/spool/samba + pat="^(\\s*path\\s*=\\s*)$dir" + if grep -q -E "$pat\\s*$" /etc/samba/smb.conf ; then + echo "WARNING: fixing smb.conf, replacing $dir with /var/tmp" >&2 + sed -ri "s|$pat\\s*$|\\1/var/tmp|" /etc/samba/smb.conf + fi + if [ -d $dir -a ! -L $dir ]; then + echo "W: removing old samba print spool $dir" >&2 + rm -rf $dir + fi + # we can still have it in an include file (or have a subdir there?) + if testparm -s 2>/dev/null | grep -E "$pat\\b" >&2; then + echo "WARNING: $dir is still referenced in smb.conf. Please update smb.conf" >&2 + if [ ! -L $dir ]; then + echo "WARNING: redirecting $dir to /var/tmp" >&2 + ln -s ../tmp $dir + fi + fi +fi + +#DEBHELPER# + +# remove msg.sock/ directory (moved to /run/samba/) +dir=/var/lib/samba/private/msg.sock +if [ -d $dir -a configure = "$1" ] && + dpkg --compare-versions "$2" lt-nl 2:4.16.0+dfsg-7~ +then + rm -f $dir/* + rmdir $dir +fi + +exit 0 diff --git a/debian/samba.postrm b/debian/samba.postrm new file mode 100644 index 0000000..0c0131e --- /dev/null +++ b/debian/samba.postrm @@ -0,0 +1,26 @@ +#! /bin/sh -e + +set -e + +if [ "$1" = purge ]; then + + if [ -e /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule + db_purge + fi + + if [ "$(readlink /etc/systemd/system/samba-ad-dc.service)" = '/dev/null' ]; then + # Remove masking done by postinst (#832352) + rm /etc/systemd/system/samba-ad-dc.service + fi + + if [ -f /etc/apparmor.d/samba/smbd-shares ]; then + rm /etc/apparmor.d/samba/smbd-shares + fi + + # compat symlink for a dir used for print jobs in the past + rm -f /var/spool/samba + +fi + +#DEBHELPER# diff --git a/debian/samba.samba-ad-dc.init b/debian/samba.samba-ad-dc.init new file mode 100644 index 0000000..d88ca31 --- /dev/null +++ b/debian/samba.samba-ad-dc.init @@ -0,0 +1,63 @@ +#! /bin/sh + +### BEGIN INIT INFO +# Provides: samba-ad-dc +# Required-Start: $network $local_fs $remote_fs +# Required-Stop: $network $local_fs $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Samba daemons for the AD DC +# Description: Meta-service to provide AD and SMB/CIFS services to clients +### END INIT INFO + +NAME=samba +DAEMON=/usr/sbin/$NAME +PIDFILE=/run/samba/$NAME.pid +DESC="Samba AD DC server" +SCRIPT=samba-ad-dc + +# clear conflicting settings from the environment +unset TMPDIR + +test -x $DAEMON || exit 0 +/usr/share/samba/is-configured $NAME || exit 0 + +[ -f /etc/default/samba ] && . /etc/default/samba + +. /lib/lsb/init-functions + +case "$1" in + (start) + # CVE-2013-4475 + KEYFILE=/var/lib/samba/private/tls/key.pem + if [ -e $KEYFILE ] + then + KEYPERMS=`stat -c %a $KEYFILE` + if [ "$KEYPERMS" != "600" ] + then + echo "wrong permission on $KEYFILE, must be 600" + echo "samba will not start (CVE-2013-4475)" + echo "Removing all tls .pem files will cause an auto-regeneration with the correct permissions." + exit 1 + fi + fi + log_daemon_msg "Starting $DESC" $NAME + start-stop-daemon --start --quiet --oknodo --exec $DAEMON --pidfile $PIDFILE -- -D $SAMBAOPTIONS + log_end_msg $? + ;; + (stop) + log_daemon_msg "Stopping $DESC" $NAME + start-stop-daemon --stop --quiet --oknodo --exec $DAEMON --pidfile $PIDFILE + log_end_msg $? + ;; + (restart|force-reload) + $0 stop && sleep 1 && $0 start + ;; + (status) + status_of_proc -p $PIDFILE $DAEMON $NAME + ;; + (*) + echo "Usage: /etc/init.d/$SCRIPT {start|stop|restart|force-reload|status}" + exit 1 + ;; +esac diff --git a/debian/samba.smbd.init b/debian/samba.smbd.init new file mode 100644 index 0000000..ac0e78d --- /dev/null +++ b/debian/samba.smbd.init @@ -0,0 +1,61 @@ +#!/bin/sh + +### BEGIN INIT INFO +# Provides: smbd +# Required-Start: $network $local_fs $remote_fs +# Required-Stop: $network $local_fs $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Should-Start: slapd cups +# Should-Stop: slapd cups +# Short-Description: Samba SMB/CIFS daemon (smbd) +# Description: server to provide SMB/CIFS services to clients +### END INIT INFO + +NAME=smbd +DAEMON=/usr/sbin/$NAME +PIDFILE=/run/samba/$NAME.pid +DESC="Samba SMB/CIFS daemon" +SCRIPT=smbd + +# clear conflicting settings from the environment +unset TMPDIR + +test -x $DAEMON || exit 0 +/usr/share/samba/is-configured $NAME || exit 0 + +[ -f /etc/default/samba ] && . /etc/default/samba + +. /lib/lsb/init-functions + +case "$1" in + (start) + # Update /etc/apparmor.d/samba/smbd-shares + if [ -x /usr/share/samba/update-apparmor-samba-profile ]; then + /usr/share/samba/update-apparmor-samba-profile || exit $? + fi + log_daemon_msg "Starting $DESC" $NAME + start-stop-daemon --start --quiet --oknodo --exec $DAEMON --pidfile $PIDFILE -- -D $SMBDOPTIONS + log_end_msg $? + ;; + (stop) + log_daemon_msg "Stopping $DESC" $NAME + start-stop-daemon --stop --quiet --oknodo --exec $DAEMON --pidfile $PIDFILE + log_end_msg $? + ;; + (reload) + log_daemon_msg "Reloading $DESC" $NAME + start-stop-daemon --stop --quiet --oknodo --exec $DAEMON --pidfile $PIDFILE --signal HUP + log_end_msg $? + ;; + (restart|force-reload) + $0 stop && sleep 1 && $0 start + ;; + (status) + status_of_proc -p $PIDFILE $DAEMON $NAME + ;; + (*) + echo "Usage: /etc/init.d/$SCRIPT {start|stop|reload|restart|force-reload|status}" + exit 1 + ;; +esac diff --git a/debian/samba.ufw.profile b/debian/samba.ufw.profile new file mode 100644 index 0000000..37bcfe2 --- /dev/null +++ b/debian/samba.ufw.profile @@ -0,0 +1,4 @@ +[Samba] +title=LanManager-like file and printer server for Unix +description=The Samba software suite is a collection of programs that implements the SMB/CIFS protocol for unix systems, allowing you to serve files and printers to Windows, NT, OS/2 and DOS clients. This protocol is sometimes also referred to as the LanManager or NetBIOS protocol. +ports=137,138/udp|139,445/tcp diff --git a/debian/setoption.py b/debian/setoption.py new file mode 100755 index 0000000..a3f3695 --- /dev/null +++ b/debian/setoption.py @@ -0,0 +1,47 @@ +#!/usr/bin/python3 +# Helper to set a global option in the samba configuration file +# Eventually this should be replaced by a call to samba-tool, but +# for the moment that doesn't support setting individual configuration options. + +import optparse +import os +import re +import shutil +import stat +import tempfile + +parser = optparse.OptionParser() +parser.add_option("--configfile", type=str, metavar="CONFFILE", + help="Configuration file to use", default="/etc/samba/smb.conf") + +(opts, args) = parser.parse_args() +if len(args) != 2: + parser.print_usage() + +(key, value) = args +inglobal = False +done = False + +inf = open(opts.configfile, 'r') +(fd, fn) = tempfile.mkstemp() +outf = os.fdopen(fd, 'w') + +for l in inf.readlines(): + m = re.match(r"^\s*\[([^]]+)\]$", l) + if m: + if inglobal and not done: + outf.write(" %s = %s\n" % (key, value)) + done = True + inglobal = (m.groups(1)[0] in ("global", "globals")) + elif inglobal and re.match(r"^(\s*)" + key + r"(\s*)=.*$", l): + l = re.sub(r"^(\s*)" + key + r"(\s*)=.*$", + r"\1" + key + r"\2=\2" + value, l) + done = True + outf.write(l) + +if not done: + outf.write("%s = %s\n" % (key, value)) + +os.fchmod(fd, stat.S_IMODE(os.stat(opts.configfile).st_mode)) +outf.close() +shutil.move(fn, opts.configfile) diff --git a/debian/smb.conf b/debian/smb.conf new file mode 100644 index 0000000..970ffb8 --- /dev/null +++ b/debian/smb.conf @@ -0,0 +1,236 @@ +# +# Sample configuration file for the Samba suite for Debian GNU/Linux. +# +# +# This is the main Samba configuration file. You should read the +# smb.conf(5) manual page in order to understand the options listed +# here. Samba has a huge number of configurable options most of which +# are not shown in this example +# +# Some options that are often worth tuning have been included as +# commented-out examples in this file. +# - When such options are commented with ";", the proposed setting +# differs from the default Samba behaviour +# - When commented with "#", the proposed setting is the default +# behaviour of Samba but the option is considered important +# enough to be mentioned here +# +# NOTE: Whenever you modify this file you should run the command +# "testparm" to check that you have not made any basic syntactic +# errors. + +#======================= Global Settings ======================= + +[global] + +## Browsing/Identification ### + +# Change this to the workgroup/NT-domain name your Samba server will part of + workgroup = WORKGROUP + +#### Networking #### + +# The specific set of interfaces / networks to bind to +# This can be either the interface name or an IP address/netmask; +# interface names are normally preferred +; interfaces = 127.0.0.0/8 eth0 + +# Only bind to the named interfaces and/or networks; you must use the +# 'interfaces' option above to use this. +# It is recommended that you enable this feature if your Samba machine is +# not protected by a firewall or is a firewall itself. However, this +# option cannot handle dynamic or non-broadcast interfaces correctly. +; bind interfaces only = yes + + + +#### Debugging/Accounting #### + +# This tells Samba to use a separate log file for each machine +# that connects + log file = /var/log/samba/log.%m + +# Cap the size of the individual log files (in KiB). + max log size = 1000 + +# We want Samba to only log to /var/log/samba/log.{smbd,nmbd}. +# Append syslog@1 if you want important messages to be sent to syslog too. + logging = file + +# Do something sensible when Samba crashes: mail the admin a backtrace + panic action = /usr/share/samba/panic-action %d + + +####### Authentication ####### + +# Server role. Defines in which mode Samba will operate. Possible +# values are "standalone server", "member server", "classic primary +# domain controller", "classic backup domain controller", "active +# directory domain controller". +# +# Most people will want "standalone server" or "member server". +# Running as "active directory domain controller" will require first +# running "samba-tool domain provision" to wipe databases and create a +# new domain. + server role = standalone server + + obey pam restrictions = yes + +# This boolean parameter controls whether Samba attempts to sync the Unix +# password with the SMB password when the encrypted SMB password in the +# passdb is changed. + unix password sync = yes + +# For Unix password sync to work on a Debian GNU/Linux system, the following +# parameters must be set (thanks to Ian Kahan <<kahan@informatik.tu-muenchen.de> for +# sending the correct chat script for the passwd program in Debian Sarge). + passwd program = /usr/bin/passwd %u + passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* . + +# This boolean controls whether PAM will be used for password changes +# when requested by an SMB client instead of the program listed in +# 'passwd program'. The default is 'no'. + pam password change = yes + +# This option controls how unsuccessful authentication attempts are mapped +# to anonymous connections + map to guest = bad user + +########## Domains ########### + +# +# The following settings only takes effect if 'server role = classic +# primary domain controller', 'server role = classic backup domain controller' +# or 'domain logons' is set +# + +# It specifies the location of the user's +# profile directory from the client point of view) The following +# required a [profiles] share to be setup on the samba server (see +# below) +; logon path = \\%N\profiles\%U +# Another common choice is storing the profile in the user's home directory +# (this is Samba's default) +# logon path = \\%N\%U\profile + +# The following setting only takes effect if 'domain logons' is set +# It specifies the location of a user's home directory (from the client +# point of view) +; logon drive = H: +# logon home = \\%N\%U + +# The following setting only takes effect if 'domain logons' is set +# It specifies the script to run during logon. The script must be stored +# in the [netlogon] share +# NOTE: Must be store in 'DOS' file format convention +; logon script = logon.cmd + +# This allows Unix users to be created on the domain controller via the SAMR +# RPC pipe. The example command creates a user account with a disabled Unix +# password; please adapt to your needs +; add user script = /usr/sbin/useradd --create-home %u + +# This allows machine accounts to be created on the domain controller via the +# SAMR RPC pipe. +# The following assumes a "machines" group exists on the system +; add machine script = /usr/sbin/useradd -g machines -c "%u machine account" -d /var/lib/samba -s /bin/false %u + +# This allows Unix groups to be created on the domain controller via the SAMR +# RPC pipe. +; add group script = /usr/sbin/addgroup --force-badname %g + +############ Misc ############ + +# Using the following line enables you to customise your configuration +# on a per machine basis. The %m gets replaced with the netbios name +# of the machine that is connecting +; include = /home/samba/etc/smb.conf.%m + +# Some defaults for winbind (make sure you're not using the ranges +# for something else.) +; idmap config * : backend = tdb +; idmap config * : range = 3000-7999 +; idmap config YOURDOMAINHERE : backend = tdb +; idmap config YOURDOMAINHERE : range = 100000-999999 +; template shell = /bin/bash + +# Setup usershare options to enable non-root users to share folders +# with the net usershare command. + +# Maximum number of usershare. 0 means that usershare is disabled. +# usershare max shares = 100 + +# Allow users who've been granted usershare privileges to create +# public shares, not just authenticated ones + usershare allow guests = yes + +#======================= Share Definitions ======================= + +[homes] + comment = Home Directories + browseable = no + +# By default, the home directories are exported read-only. Change the +# next parameter to 'no' if you want to be able to write to them. + read only = yes + +# File creation mask is set to 0700 for security reasons. If you want to +# create files with group=rw permissions, set next parameter to 0775. + create mask = 0700 + +# Directory creation mask is set to 0700 for security reasons. If you want to +# create dirs. with group=rw permissions, set next parameter to 0775. + directory mask = 0700 + +# By default, \\server\username shares can be connected to by anyone +# with access to the samba server. +# The following parameter makes sure that only "username" can connect +# to \\server\username +# This might need tweaking when using external authentication schemes + valid users = %S + +# Un-comment the following and create the netlogon directory for Domain Logons +# (you need to configure Samba to act as a domain controller too.) +;[netlogon] +; comment = Network Logon Service +; path = /home/samba/netlogon +; guest ok = yes +; read only = yes + +# Un-comment the following and create the profiles directory to store +# users profiles (see the "logon path" option above) +# (you need to configure Samba to act as a domain controller too.) +# The path below should be writable by all users so that their +# profile directory may be created the first time they log on +;[profiles] +; comment = Users profiles +; path = /home/samba/profiles +; guest ok = no +; browseable = no +; create mask = 0600 +; directory mask = 0700 + +[printers] + comment = All Printers + browseable = no + path = /var/tmp + printable = yes + guest ok = no + read only = yes + create mask = 0700 + +# Windows clients look for this share name as a source of downloadable +# printer drivers +[print$] + comment = Printer Drivers + path = /var/lib/samba/printers + browseable = yes + read only = yes + guest ok = no +# Uncomment to allow remote administration of Windows print drivers. +# You may need to replace 'lpadmin' with the name of the group your +# admin users are members of. +# Please note that you also need to set appropriate Unix permissions +# to the drivers directory for these users to have write rights in it +; write list = root, @lpadmin + diff --git a/debian/smb.conf.ubuntu.diff b/debian/smb.conf.ubuntu.diff new file mode 100644 index 0000000..c66aded --- /dev/null +++ b/debian/smb.conf.ubuntu.diff @@ -0,0 +1,55 @@ +Subject: ubuntu changes for smb.conf + ++ Add "(Samba, Ubuntu)" to server string. ++ Comment out the default [homes] share, and add a comment about + "valid users = %s" to show users how to restrict access to + \\server\username to only username. +* Comment out "read only = yes" for a few standard shares. + +diff --git a/debian/smb.conf b/debian/smb.conf +index 37fafb27398..385197abee9 100644 +--- a/debian/smb.conf ++++ b/debian/smb.conf +@@ -30,2 +30,5 @@ + ++# server string is the equivalent of the NT Description field ++ server string = %h server (Samba, Ubuntu) ++ + #### Networking #### +@@ -168,5 +171,8 @@ + +-[homes] +- comment = Home Directories +- browseable = no ++# Un-comment the following (and tweak the other settings below to suit) ++# to enable the default home directory shares. This will share each ++# user's home directory as \\server\username ++;[homes] ++; comment = Home Directories ++; browseable = no + +@@ -174,3 +180,3 @@ + # next parameter to 'no' if you want to be able to write to them. +- read only = yes ++; read only = yes + +@@ -178,3 +184,3 @@ + # create files with group=rw permissions, set next parameter to 0775. +- create mask = 0700 ++; create mask = 0700 + +@@ -182,3 +188,3 @@ + # create dirs. with group=rw permissions, set next parameter to 0775. +- directory mask = 0700 ++; directory mask = 0700 + +@@ -186,6 +192,6 @@ + # with access to the samba server. +-# The following parameter makes sure that only "username" can connect +-# to \\server\username ++# Un-comment the following parameter to make sure that only "username" ++# can connect to \\server\username + # This might need tweaking when using external authentication schemes +- valid users = %S ++; valid users = %S + diff --git a/debian/smbclient.docs b/debian/smbclient.docs new file mode 100644 index 0000000..1dc7dbf --- /dev/null +++ b/debian/smbclient.docs @@ -0,0 +1 @@ +source3/client/README.smbspool diff --git a/debian/smbclient.install b/debian/smbclient.install new file mode 100644 index 0000000..15ae8a3 --- /dev/null +++ b/debian/smbclient.install @@ -0,0 +1,25 @@ +usr/bin/cifsdd +#usr/bin/findsmb +usr/bin/mdsearch +usr/bin/rpcclient +usr/bin/smbcacls +usr/bin/smbclient +usr/bin/smbcquotas +usr/bin/smbget +usr/bin/smbspool +usr/bin/smbtar +usr/bin/smbtree +usr/libexec/samba/smbspool_krb5_wrapper +#usr/share/man/man1/findsmb.1 +usr/share/man/man1/mdsearch.1 +usr/share/man/man1/rpcclient.1 +usr/share/man/man1/smbcacls.1 +usr/share/man/man1/smbclient.1 +usr/share/man/man1/smbcquotas.1 +usr/share/man/man1/smbget.1 +usr/share/man/man1/smbtar.1 +usr/share/man/man1/smbtree.1 +usr/share/man/man5/smbgetrc.5 +usr/share/man/man8/cifsdd.8 +usr/share/man/man8/smbspool.8 +usr/share/man/man8/smbspool_krb5_wrapper.8 diff --git a/debian/smbclient.links b/debian/smbclient.links new file mode 100644 index 0000000..09046e8 --- /dev/null +++ b/debian/smbclient.links @@ -0,0 +1,4 @@ +# For CUPS to support printing to samba printers, it's necessary to make the +# following symlink (according to Erich Schubert <debian@vitavonni.de> +# in #109509) +usr/bin/smbspool usr/lib/cups/backend/smb diff --git a/debian/smbclient.lintian-overrides b/debian/smbclient.lintian-overrides new file mode 100644 index 0000000..7ca6d1d --- /dev/null +++ b/debian/smbclient.lintian-overrides @@ -0,0 +1,4 @@ +# As per CUPS's backend(7): "Backends without world read and execute permissions are run as the root usert" +# See also smbspool_krb5_wrapper(8) manpage +smbclient: non-standard-executable-perm 0700 != 0755 [usr/libexec/samba/smbspool_krb5_wrapper] +smbclient: executable-is-not-world-readable 0700 [usr/libexec/samba/smbspool_krb5_wrapper] diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/source/lintian-overrides b/debian/source/lintian-overrides new file mode 100644 index 0000000..3e8e081 --- /dev/null +++ b/debian/source/lintian-overrides @@ -0,0 +1,6 @@ +# the source is in *.xml +samba source: source-is-missing [ctdb/doc/*.html] +# there are many generated files with long lines in source +samba source: very-long-line-length-in-source-file * +# d/control has Breaks: aligned with Replaces: values: +samba source: debian-control-has-unusual-field-spacing Breaks [debian/control:*] diff --git a/debian/source_samba.py b/debian/source_samba.py new file mode 100644 index 0000000..1d30625 --- /dev/null +++ b/debian/source_samba.py @@ -0,0 +1,170 @@ +#!/usr/bin/python3 + +'''Samba Apport interface + +Copyright (C) 2010 Canonical Ltd/ +Author: Chuck Short <chuck.short@canonical.com> + +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. See http://www.gnu.org/copyleft/gpl.html for +the full text of the license. +''' + +import os +from subprocess import PIPE, Popen +from apport.hookutils import * + +def run_testparm(): + ''' + Run the samba testparm(1) utility against /etc/samba/smb.conf. + + We do not use apport's command_output() method here because: + - we need to discard stdout, as that includes smb.conf + - we want to know if its exit status is not zero, but that in itself + is not an error in the test itself. command_output() would say the + command failed and that would be confusing. + + Returns stderr and the exit code (as a string) of testparm as a tuple or + None in the case of an error. + ''' + command = ['testparm', '-s', '/etc/samba/smb.conf'] + try: + testparm = Popen(command, stdout=PIPE, stderr=PIPE) + except OSError: + return None + _, err = testparm.communicate() + exit_code = testparm.wait() + return (err, str(exit_code)) + + +def recent_smblog(pattern): + '''Extract recent messages from log.smbd or messages which match a regex + pattern should be a "re" object. ''' + lines = '' + if os.path.exists('/var/log/samba/log.smbd'): + file = '/var/log/samba/log.smbd' + else: + return lines + + for line in open(file): + if pattern.search(line): + lines += line + return lines + +def recent_nmbdlog(pattern): + ''' Extract recent messages from log.nmbd or messages which match regex + pattern should be a "re" object. ''' + lines = '' + if os.path.exists('/var/log/samba/log.nmbd'): + file = '/var/log/samba/log.nmbd' + else: + return lines + + for line in open(file): + if pattern.search(line): + lines += line + return lines + +def add_info(report, ui): + packages = ['samba', 'samba-common-bin', 'samba-common', 'samba-tools', 'smbclient', 'swat', + 'samba-doc', 'samba-doc-pdf', 'smbfs', 'libpam-smbpass', 'libsmbclient', 'libsmbclient-dev', + 'winbind', 'samba-dbg', 'libwbclient0'] + + versions = '' + for package in packages: + try: + version = packaging.get_version(package) + except ValueError: + version = 'N/A' + if version is None: + version = 'N/A' + versions += '%s %s\n' %(package, version) + report['SambaInstalledVersions'] = versions + + + # Interactive report + # start by checking if /etc/samba/smb.conf exists + if not os.path.exists ('/etc/samba/smb.conf'): + ui.information("The configuration file '/etc/samba/smb.conf' does not exist. This file, and its contents, are critical for the operation of the SAMBA package(s). A common situation for this is:\n * you removed (but did not purge) SAMBA;\n * later on, you (or somebody) manually deleted '/etc/samba/smb.conf;\n * you reinstalled SAMBA.\nAs a result, this file is *not* reinstalled. If this is your case, please purge samba-common (e.g., sudo apt-get purge samba-common) and then reinstall SAMBA.\nYou may want to check other sources, like: https://answers.launchpad.net, https://help.ubuntu.com, and http://ubuntuforums.org. Please press any key to end apport's bug collection.") + raise StopIteration # we are out + + ui.information("As a part of the bug reporting process, you'll be asked as series of questions to help provide a more descriptive bug report. Please answer the following questions to the best of your abilities. Afterwards, a browser will be opened to finish filing this as a bug in the Launchpad bug tracking system.") + + response = ui.choice("How would you best describe your setup?", ["I am running a Windows File Server.", "I am connecting to a Windows File Server."], False) + + if response == None: + raise StopIteration # user has canceled + elif response[0] == 0: #its a server + response = ui.yesno("Did this used to work properly with a previous release?") + if response == None: # user has canceled + raise StopIteration + if response == False: + report['SambaServerRegression'] = "No" + if response == True: + report['SambaServerRegression'] = 'Yes' + + response = ui.choice("Which clients are failing to connect?", ["Windows", "Ubuntu", "Both", "Other"], False) + if response == None: + raise StopIteration # user has canceled + if response[0] == 0: + report['UbuntuFailedConnect'] = 'Yes' + if response[0] == 1: + report['WindowsFailedConnect'] = 'Yes' + if response[0] == 2: + report['BothFailedConnect'] = 'Yes' + if response[0] == 3: + report['OtherFailedConnect'] = 'Yes' + + response = ui.yesno("The contents of your /etc/samba/smb.conf file may help developers diagnose your bug more quickly. However, it may contain sensitive information. Do you want to include it in your bug report?") + if response == None: + raise StopIteration + if response == False: + report['SmbConfIncluded'] = 'No' + if response == True: + report['SmbConfIncluded'] = 'Yes' + attach_file_if_exists(report, '/etc/samba/smb.conf', key='SMBConf') + if command_available('testparm') and os.path.exists('/etc/samba/smb.conf'): + testparm_result = run_testparm() + testparm_response = ui.yesno("testparm(1) is a samba utility that will check /etc/samba/smb.conf for correctness and report issues it may find. Do you want to include its stderr output in your bug report? If you answer no, then we will only include its numeric exit status.") + if testparm_response == None: + raise StopIteration + if testparm_response == True: + if testparm_result: + report['TestparmStderr'], report['TestparmExitCode'] = testparm_result + else: # only include the exit code + report['TestparmExitCode'] = testparm_result[1] + + response = ui.yesno("The contents of your /var/log/samba/log.smbd and /var/log/samba/log.nmbd may help developers diagnose your bug more quickly. However, it may contain sensitive information. Do you want to include it in your bug report?") + if response == None: + raise StopIteration + elif response == False: + ui.information("The contents of your /var/log/samba/log.smbd and /var/log/samba/log.nmbd will NOT be included in the bug report.") + elif response == True: + sec_re = re.compile('failed', re.IGNORECASE) + report['SmbLog'] = recent_smblog(sec_re) + report['NmbdLog'] = recent_nmbdlog(sec_re) + + elif response[0] == 1: #its a client + response = ui.yesno("Did this used to work properly with a previous release?") + if response == None: #user has canceled + raise StopIteration + if response == False: + report['SambaClientRegression'] = "No" + if response == True: + report['SambaClientRegression'] = "Yes" + + response = ui.choice("How is the remote share accessed from the Ubuntu system?", ["Nautilus (or other GUI Client)", "smbclient (from the command line)", "cifs filesystem mount (from /etc/fstab or a mount command)"], False) + if response == None: #user has canceled + raise StopIteration + if response[0] == 0: + attach_related_packages(report, ['nautilus', 'gvfs']) + if response[0] == 1: + ui.information("Please attach the output of 'smbclient -L localhost' to the end of this bug report.") + if response[0] == 2: + report['CIFSMounts'] = command_output(['findmnt', '-n', '-t', 'cifs']) + if os.path.exists('/proc/fs/cifs/DebugData'): + report['CifsVersion'] = command_output(['cat', '/proc/fs/cifs/DebugData']) + + ui.information("After apport finishes collecting information, please document your steps to reproduce the issue when filling out the bug report.") diff --git a/debian/tests/cifs-share-access b/debian/tests/cifs-share-access new file mode 100644 index 0000000..47ce01a --- /dev/null +++ b/debian/tests/cifs-share-access @@ -0,0 +1,29 @@ +#!/bin/sh + +set -x +set -e + +. debian/tests/util + +username="smbtest$$" +password="$$" +add_user "${username}" "${password}" + +myshare="myshare$$" +add_share "${myshare}" + +echo "Creating file with random data and computing its md5" +populate_share "${myshare}" "${username}" + +echo "Mounting //localhost/${myshare} via CIFS" +temp_mount=$(mktemp -d) +mount -t cifs //localhost/"${myshare}" "$temp_mount" -o user="${username}",username="${username}",password="${password}" + +echo "Verifying MD5 via cifs" +cd "$temp_mount" +md5sum -c data.md5 +result=$? +cd - +umount "$temp_mount" +rmdir "$temp_mount" +exit "$result" diff --git a/debian/tests/cifs-share-access-uring b/debian/tests/cifs-share-access-uring new file mode 100644 index 0000000..fb4b9c5 --- /dev/null +++ b/debian/tests/cifs-share-access-uring @@ -0,0 +1,31 @@ +#!/bin/sh + +set -x +set -e + +. debian/tests/util + +ensure_uring_available + +username="smbtest$$" +password="$$" +add_user "${username}" "${password}" + +myshare="myshare$$" +add_share "${myshare}" io_uring + +echo "Creating file with random data and computing its md5" +populate_share "${myshare}" "${username}" + +echo "Mounting //localhost/${myshare} via CIFS" +temp_mount=$(mktemp -d) +mount -t cifs //localhost/"${myshare}" "$temp_mount" -o user="${username}",username="${username}",password="${password}" + +echo "Verifying MD5 via cifs" +cd "$temp_mount" +md5sum -c data.md5 +result=$? +cd - +umount "$temp_mount" +rmdir "$temp_mount" +exit "$result" diff --git a/debian/tests/control b/debian/tests/control new file mode 100644 index 0000000..d27e025 --- /dev/null +++ b/debian/tests/control @@ -0,0 +1,30 @@ +Tests: cifs-share-access +Depends: samba, coreutils, systemd, cifs-utils, passwd +Restrictions: needs-root, allow-stderr, isolation-machine + +Tests: cifs-share-access-uring +Depends: samba, samba-vfs-modules, coreutils, systemd, cifs-utils, passwd +Restrictions: needs-root, allow-stderr, isolation-machine, skippable + +Tests: python-smoke +Depends: python3-samba + +Tests: smbclient-anonymous-share-list +Depends: samba, smbclient +Restrictions: allow-stderr, isolation-container + +Tests: smbclient-authenticated-share-list +Depends: samba, smbclient, passwd +Restrictions: needs-root, allow-stderr, isolation-container + +Tests: smbclient-share-access +Depends: samba, smbclient, coreutils, systemd, passwd +Restrictions: needs-root, allow-stderr, isolation-container + +Tests: smbclient-share-access-uring +Depends: samba, samba-vfs-modules, smbclient, coreutils, systemd, passwd +Restrictions: needs-root, allow-stderr, isolation-container, skippable + +Tests: reinstall-samba-common-bin +Depends: samba-common, samba-common-bin +Restrictions: needs-root, needs-reboot, isolation-machine, allow-stderr diff --git a/debian/tests/python-smoke b/debian/tests/python-smoke new file mode 100644 index 0000000..94aff44 --- /dev/null +++ b/debian/tests/python-smoke @@ -0,0 +1,2 @@ +#!/bin/sh +python3 -c 'import samba.samba3' diff --git a/debian/tests/reinstall-samba-common-bin b/debian/tests/reinstall-samba-common-bin new file mode 100644 index 0000000..ad3ebed --- /dev/null +++ b/debian/tests/reinstall-samba-common-bin @@ -0,0 +1,11 @@ +#!/bin/sh + +set -xe + +# Test regression on systemd-tmpfiles /run/samba presence for postinst script +if [ -z $AUTOPKGTEST_REBOOT_MARK ]; then + apt remove -y samba-common-bin + /tmp/autopkgtest-reboot reboot_mark +else + apt install -y samba-common-bin +fi diff --git a/debian/tests/smbclient-anonymous-share-list b/debian/tests/smbclient-anonymous-share-list new file mode 100644 index 0000000..e71ef27 --- /dev/null +++ b/debian/tests/smbclient-anonymous-share-list @@ -0,0 +1,6 @@ +#!/bin/sh + +set -x +set -e + +smbclient -N -L localhost diff --git a/debian/tests/smbclient-authenticated-share-list b/debian/tests/smbclient-authenticated-share-list new file mode 100644 index 0000000..9fcaf43 --- /dev/null +++ b/debian/tests/smbclient-authenticated-share-list @@ -0,0 +1,18 @@ +#!/bin/sh + +set -x +set -e + +. debian/tests/util + +username="smbtest$$" +password="$$" + +add_user "${username}" "${password}" + +echo "Testing with incorrect password: must fail" +smbclient -L localhost -U "${username}"%wrongpass && exit 1 + +echo "Testing with correct password: must work" +smbclient -L localhost -U "${username}"%"${password}" + diff --git a/debian/tests/smbclient-share-access b/debian/tests/smbclient-share-access new file mode 100644 index 0000000..b124c0c --- /dev/null +++ b/debian/tests/smbclient-share-access @@ -0,0 +1,23 @@ +#!/bin/sh + +set -x +set -e + +. debian/tests/util + +username="smbtest$$" +password="$$" +add_user "${username}" "${password}" + +myshare="myshare$$" +add_share "${myshare}" + +echo "Creating file with random data and computing its md5" +populate_share "${myshare}" "${username}" + +rm -f downloaded-data +echo "Downloading file and comparing its md5" +smbclient //localhost/"${myshare}" -U "${username}"%"${password}" -c "get data downloaded-data" + +mv -f downloaded-data data +md5sum -c data.md5 diff --git a/debian/tests/smbclient-share-access-uring b/debian/tests/smbclient-share-access-uring new file mode 100644 index 0000000..4b7a205 --- /dev/null +++ b/debian/tests/smbclient-share-access-uring @@ -0,0 +1,25 @@ +#!/bin/sh + +set -x +set -e + +. debian/tests/util + +ensure_uring_available + +username="smbtest$$" +password="$$" +add_user "${username}" "${password}" + +myshare="myshare$$" +add_share "${myshare}" io_uring + +echo "Creating file with random data and computing its md5" +populate_share "${myshare}" "${username}" + +rm -f downloaded-data +echo "Downloading file and comparing its md5" +smbclient //localhost/"${myshare}" -U "${username}"%"${password}" -c "get data downloaded-data" + +mv -f downloaded-data data +md5sum -c data.md5 diff --git a/debian/tests/util b/debian/tests/util new file mode 100644 index 0000000..4278ee7 --- /dev/null +++ b/debian/tests/util @@ -0,0 +1,68 @@ +#!/bin/sh + +# $1: share name +# $2: comma separated list of vfs_objects to use, if any +add_share() { + local share="$1" + local vfs="$2" + if ! testparm -s 2>&1 | grep -E "^\[${share}\]"; then + echo "Adding [${share}] share" + cat >> /etc/samba/smb.conf <<EOFEOF +[${share}] + read only = no + guest ok = no + path = /${share} +EOFEOF + if [ -n "${vfs}" ]; then + echo "vfs objects = ${vfs}" >> /etc/samba/smb.conf + fi + systemctl restart smbd.service + else + echo "Share [${share}] already exists, continuing" + fi +} + +# $1: username +# $2: password +add_user() { + local username="$1" + local password="$2" + + echo "Creating a local and samba user called ${username}" + useradd -m "${username}" + echo "Setting samba password for the ${username} user" + printf '%s\n%s\n' "${password}" "${password}" | smbpasswd -s -a ${username} +} + +# $1: share name +populate_share() { + local sharename="$1" + local usergroup="$2" + local sharepath="/${sharename}" + + mkdir -p "${sharepath}" + dd if=/dev/urandom bs=4096 count=1000 2>/dev/null | base64 > "${sharepath}/data" + cd "${sharepath}" + md5sum data > data.md5 + chown -R "${usergroup}:${usergroup}" "${sharepath}" +} + +ensure_uring_available() { + + # uring is supported starting with kernel 5.1.x + local kver=$(uname -r) + case "$kver" in + ( [0-4].* | 5.0.* ) # everything before 5.1 + echo "uring not available in kernel version ${kver%%-*}, skipping test" + exit 77 + ;; + esac + + # ubuntu does not build liburing on i386, + # so io_uring vfs object is unavailable too + : ${DEB_HOST_MULTIARCH:=$(dpkg-architecture -qDEB_BUILD_MULTIARCH)} + if [ ! -f /usr/lib/$DEB_HOST_MULTIARCH/samba/vfs/io_uring.so ]; then + echo "io_uring vfs object is not available on this architecture, skipping test" + exit 77 + fi +} diff --git a/debian/update-apparmor-samba-profile b/debian/update-apparmor-samba-profile new file mode 100644 index 0000000..5ad9194 --- /dev/null +++ b/debian/update-apparmor-samba-profile @@ -0,0 +1,75 @@ +#!/bin/bash + +# update apparmor profile sniplet based on samba configuration +# +# This script creates and updates a profile sniplet with permissions for all +# samba shares, except +# - paths with variables (anything containing a % sign) +# - "/" - if someone is insane enough to share his complete filesystem, he'll have +# to modify the apparmor profile himself + +# (c) Christian Boltz 2011-2019 +# This script is licensed under the GPL v2 or, at your choice, any later version. + + +# exit silently - used if no profile update is needed +silentexit() { + # echo "$@" + exit 0 +} + +# exit with an error message +verboseexit() { + echo "$@" >&2 + exit 1 +} + +# if you change this script, _always_ update the version to force an update of the profile sniplet +versionstring="${0##*/} 1.2+deb" + +aastatus="/usr/sbin/aa-status" +aaparser="/sbin/apparmor_parser" +loadedprofiles="/sys/kernel/security/apparmor/profiles" + +smbconf="/etc/samba/smb.conf" +smbd_profile="/etc/apparmor.d/usr.sbin.smbd" +profilesniplet="/etc/apparmor.d/samba/smbd-shares" +tmp_profilesniplet="/etc/apparmor.d/samba/smbd-shares.new" + +# test -x "$aastatus" || silentexit "apparmor not installed" +# "$aastatus" --enabled || silentexit "apparmor not loaded (or not running as root)" +test -e "$loadedprofiles" || silentexit "apparmor not loaded" +test -d "/etc/apparmor.d/samba" || silentexit "directory for samba profile snippet doesn't exist" +test -r "$loadedprofiles" || verboseexit "no read permissions for $loadedprofiles - not running as root?" + +widelinks=$(testparm -s --parameter-name "wide links" 2>/dev/null) +test "$widelinks" == "Yes" && { + echo "[$(date '+%Y/%m/%d %T')] $(basename $0)" + echo ' WARNING: "wide links" enabled. You might need to modify the smbd apparmor profile manually.' +} >> /var/log/samba/log.smbd + +grep -q "$versionstring" "$profilesniplet" && { + test "$smbconf" -nt "$profilesniplet" || silentexit "smb.conf is older than the AppArmor profile sniplet" +} + +{ + echo "# autogenerated by $versionstring at samba start - do not edit!" + echo "" + testparm -s 2>/dev/null |sed -n '/^[ \t]*path[ \t]*=[ \t]*[^% \t]\{2,\}/ s§^[ \t]*path[ \t]*=[ \t]*\([^%]*\)$§"\1/" rk,\n"\1/**" rwkl,§p' +} > "$tmp_profilesniplet" + +diff "$profilesniplet" "$tmp_profilesniplet" >/dev/null && { + rm -f "$tmp_profilesniplet" + touch "$profilesniplet" # update timestamp - otherwise we'll have to check again on the next run + silentexit "profile sniplet unchanged" +} + +mv -f "$tmp_profilesniplet" "$profilesniplet" + +grep -q '^/usr/sbin/smbd (\|^smbd (' /sys/kernel/security/apparmor/profiles || silentexit "smbd profile not loaded" + +echo "Reloading updated AppArmor profile for Samba..." + +# reload profile +"$aaparser" -r "$smbd_profile" + diff --git a/debian/upstream/metadata b/debian/upstream/metadata new file mode 100644 index 0000000..d0e8c85 --- /dev/null +++ b/debian/upstream/metadata @@ -0,0 +1,3 @@ +--- +Repository: https://git.samba.org/samba.git +Bug-Database: https://bugzilla.samba.org/ diff --git a/debian/upstream/signing-key.asc b/debian/upstream/signing-key.asc new file mode 100644 index 0000000..e54d8f0 --- /dev/null +++ b/debian/upstream/signing-key.asc @@ -0,0 +1,52 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- + +mQINBF/gkNQBEAC8EYGtbvKJNJLxuYTjmqyEe/gTEXEUSJy/8qn01iQl7rN0xvp9 +HJvWDFMiJOXGJPPiZEKO3AwpU6S5RRXM+qXpkdKp3LgcLZB+M1Wj8BfMEMWAt92C +rfhM8LMJcrT8DPOXEH8nPA2Mgkmm70ebVcuzBXSTW2+nTHTr2I7iP/ShLoRSpI4X +LYTuoWw93Hrh0ZjiCdpUt92GOYNmjDkbe46tYi8PxUT3B9brF6KVMVE6Rt9IkQBQ +lT2M/+AFny1ZLFsfg1yVp6k/3s5+4tciNqPzGkHlgnxTh7Ng/+P39ys0FAA0dZbP +yXPvWVRiarFSdSD8BsnS7JIl5ihz8PpIV2ibw1B2tGUnMJdZ1ZwSDEpH2ZLC/nsd +k/0lYWvcwCJHEoUKe6sVb7M7l3YyOaxPIk9B+I278zjMiLgBI7tK3RpovVuYMBhZ +V0sg0rmx85Ge83igtsA27Zw3BypeAFlpiiFE0urwSy42VVJ53aBgPGE7uW0a7SKm +XDkXdeFE+WMs9hVAPMuXdp/b3KTsly7TO882bZ6Z+P8rm8b5iIGjCoEx5ooMxzpS +PSRN+u1GNxS1yHf4RgzPkPwj95Fa+lVFG3VmrruH2xO1V07gksN66cxkMV3VpLtK +VaZJyo1HQN2ZZFIAPSHbWCS+q9y6NVhlpZUB1jT1SXuLIYApI60GAUECSwARAQAB +tDpTYW1iYSBEaXN0cmlidXRpb24gVmVyaWZpY2F0aW9uIEtleSA8c2FtYmEtYnVn +c0BzYW1iYS5vcmc+iQJUBBMBCgA+FiEEgfXigyvSVFoYl7cTqplEL7aAtiAFAl/g +kNQCGwMFCQPCZwAFCwkIBwIGFQoJCAsCBBYCAwECHgECF4AACgkQqplEL7aAtiCq +BRAAnB1C9+oXrq+Vg+lxgB998ucI4T9YopiIjc9TXwO5/n/YeyOV2TgwpGnPud5I +yMGY7E0f5p2crUMDpQOcqtWGS1O5PD7fZ4YtsiP+XHO2kDMHFIu0pc6N/OrPW2QT +jl+pRFmm1Td6kZqtNnHxqS+s2Iz87ggEtN/NMdBQDawcSpe/vN3e5VH88bkToQn0 +3AWbj/xrx/alSGNd9NlrBrdLDXz90mlmUOUljpWrlZc49FGcYOCon74/FfiLfyLn +A9rR6g5kWKLRRx+/vIVup0mThcjacPShj2Mjf2Cz5GqRb+ylqGMA64V2f5KE1lC4 +8G4uDx8aHfFfk0tfC+iHH4F6CjNxbZHF9M36ZyoQofxCpIzvto2XGLT6nNCIApXK +OYoTck8dWBy2A6fbfUybGQjBxdlumGjgTbVX++MRw9dq59fVrfrukPfdMdlrN+Yu +RHXlFUE2rS6wvc/q/ZaGj3jXxSHtGflFn8u3veBkUflgej4WrPvt8ot0elmShVGW +lSxXTWsSOxcBMLViooLEoskE0o37wlw2b6oOKAZwAQ3C4a7TKx/lEY9597nBQa0H +EkrwtKmmOqUkh6yosbZJXuXaiGt7C4Fy8yF2CpFD1mndqMJGnCcBSobwU4KxI0cX +lztWkOCsWER+7NiBoDOj+6kNQNvJPEv94D3Bmb/LIZi4I5y5Ag0EX+CQ1AEQAM7t +Fdior0EFkr9C0W3zF27jK5qgdDhz8eSxmUIJPxmrB2UZfLEczmXhwbbNplxanAQ3 +E6uyrL9Ra9JMxmGAieqSVI6lbYU/G0HrtZKSq8DPjpNi+Tg5ubNBATfDAqjkKR3r +MaCRs8Vv+ccX6avYWdJSmAoqKORCQr3ZdviG2aKrLmTRDInPyO7hJHgofu51bqD5 +Ohn8Wyjj3hrDyA17MI0zeJpMKQO9My5BfWOF0XxNz3EtJCeuUC03GmV1Up+WI04w +XUppDUJapWl+YGPdsusExKGCfHaxgclfImdT5C+YkHJhBFqFfjZq08Rv5jE4qQ50 +8vrgCPfVkF58TgO8dr6uCsV+6baTIOGrW1reraKDCSmQYKGKw1S/N9En/PzV3O7o +dCPdnRvRpto7qV+dpVAzRnbY7I164VkEVdZeqMqQZCGPeHspdEwlcAWSTkyNNJIo +rfInt38y4+XQtEuq2A9Yelvr7PZNGkCO+x60vEwGAs/xpqe+YrXd9+Mh5DUFSs1S +H3Z0xLD3ArZ6DqXFm6dXY5B08fWxYDoUkE2poAGvLqzqAIKnZEh0CDCdBeF9r0Q8 +EgpgxvWRn2dhA+iPczH9n5rldZpRWI05qXj2gFGXvzDlsn1RTbb1Jg6kiHQVx095 +Y8ZWk8iyhUL9yM5u0dfvE6HwrPq20lZTbF5neMHZABEBAAGJAjwEGAEKACYWIQSB +9eKDK9JUWhiXtxOqmUQvtoC2IAUCX+CQ1AIbDAUJA8JnAAAKCRCqmUQvtoC2IHB5 +EACYW9nnultXQ7WBCWcSN5/Rn0yshFbrylZ3dc19X6gGlvMDNUJtej9FzY/D+aY2 +wO0PEtbJRfXb0jFQ1+xucLvanqY2jpBcZTvy+5BATDyrYJTvQTtFiaxVFyWolksR +JL+iLs7RyFbsmH8P4P77hQNIhRVe8tBqbGvRKXddnAoXm7zcK4sLJg03O7rDuOhi +hgX9AKiAkYoAJesYHXPMT+2wRY3bVsuSRLSnWT9BtQa0IX9K/llQuL0ADicgG51H +suGBpYW9jjEngzhUmzGRQFmzJ2s848HDYRlT95nKtfEOE0qq9wObJRQkAj9LLnwk +sMIssTy3BHGdz7bum21FAMkMsEfsxYV9xIX9SkeJYfTIct8/lU0h57FINb5fLKF8 +7hqX66/Ib9MUxN1UnU3Zje5pXoFHYkFGMVhKdBZbxaYN/eXVmheIvpGDuWgw7Ggo +teFxe1ltp4hfiyfRL5VKQ5HW7pujC9yauL8Radcd3EsUUHRqTrh+Gy9MTMdKuHDJ +dmLsaCe5s/lHXAFT8ISRs82KsKzmu1d1uS+Kr7m+qRGODtolPDUXhOKsak/UpHjI +VZMQ9EZ/VnGQ4tkIySUpYxw/XFbnIrj1B+OtxXYE21nkWTwE5/+pWzqCkNhVUj1H +io3KuW9PvzErxENn/L44gOHhMePZ3AHR865m4ghEameeXw== +=nGpF +-----END PGP PUBLIC KEY BLOCK----- diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..fad8cf7 --- /dev/null +++ b/debian/watch @@ -0,0 +1,2 @@ +version=4 +opts=uversionmangle=s/tp/~alpha1~tp/;s/alpha/~alpha/;s/beta/~beta/;s/rc/~rc/,dversionmangle=s/\+dfsg\d*$//,pgpsigurlmangle=s/tar\.gz/tar.asc/,decompress,repacksuffix=+dfsg https://download.samba.org/pub/samba/ samba-(4\.17\..*).tar.gz diff --git a/debian/winbind.NEWS b/debian/winbind.NEWS new file mode 100644 index 0000000..10fd2a4 --- /dev/null +++ b/debian/winbind.NEWS @@ -0,0 +1,10 @@ +samba (2:3.5.11~dfsg-3) unstable; urgency=low + + PAM modules and NSS modules have been split out from the winbind + package into libpam-winbind. + + If Recommends: installs are disabled on your system you may need + to manually install the libpam-winbind package after upgrading + from former versions of winbind (for instance from squeeze) + + -- Steve Langasek <vorlon@debian.org> Fri, 21 Oct 2011 20:00:13 +0000 diff --git a/debian/winbind.default b/debian/winbind.default new file mode 100644 index 0000000..3ef6e88 --- /dev/null +++ b/debian/winbind.default @@ -0,0 +1,11 @@ +# Defaults for winbind initscript +# sourced by /etc/init.d/winbind +# + +# +# This is a POSIX shell fragment +# + + +# Winbind configuration +#WINBINDD_OPTS="-n" diff --git a/debian/winbind.init b/debian/winbind.init new file mode 100644 index 0000000..0c760eb --- /dev/null +++ b/debian/winbind.init @@ -0,0 +1,57 @@ +#!/bin/sh + +### BEGIN INIT INFO +# Provides: winbind +# Required-Start: $network $remote_fs $syslog +# Required-Stop: $network $remote_fs $syslog +# Should-Start: samba +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Samba Winbind daemon +# Description: Name Service Switch daemon for resolving names from NT servers +### END INIT INFO + +NAME=winbindd +DAEMON=/usr/sbin/$NAME +PIDFILE=/run/samba/$NAME.pid +DESC="Samba Winbind daemon" +SCRIPT=winbind + +# clear conflicting settings from the environment +unset TMPDIR + +test -x $DAEMON || exit 0 +/usr/share/samba/is-configured $NAME || exit 0 + +[ -r /etc/default/samba ] && . /etc/default/samba +[ -r /etc/default/$SCRIPT ] && . /etc/default/$SCRIPT + +. /lib/lsb/init-functions + +case "$1" in + (start) + log_daemon_msg "Starting $DESC" $NAME + start-stop-daemon --start --quiet --oknodo --exec $DAEMON --pidfile $PIDFILE -- -D $WINBINDD_OPTS $WINBINDOPTIONS + log_end_msg $? + ;; + (stop) + log_daemon_msg "Stopping $DESC" $NAME + start-stop-daemon --stop --quiet --oknodo --exec $DAEMON --pidfile $PIDFILE + log_end_msg $? + ;; + (reload) + log_daemon_msg "Reloading $DESC" $NAME + start-stop-daemon --stop --quiet --oknodo --exec $DAEMON --pidfile $PIDFILE --signal HUP + log_end_msg $? + ;; + (restart|force-reload) + $0 stop && sleep 1 && $0 start + ;; + (status) + status_of_proc -p $PIDFILE $DAEMON $NAME + ;; + (*) + echo "Usage: /etc/init.d/$SCRIPT {start|stop|reload|restart|force-reload|status}" + exit 1 + ;; +esac diff --git a/debian/winbind.install b/debian/winbind.install new file mode 100755 index 0000000..490d2b8 --- /dev/null +++ b/debian/winbind.install @@ -0,0 +1,21 @@ +#!/usr/bin/dh-exec --with-scripts=filter-arch,filter-build-profiles +[linux-any] lib/systemd/system/winbind.service +<pkg.samba.mitkrb5> usr/lib/*/samba/krb5/winbind_krb5_localauth.so +<pkg.samba.mitkrb5> usr/share/man/man8/winbind_krb5_localauth.8 +usr/bin/ntlm_auth +usr/bin/wbinfo +usr/lib/*/samba/idmap +usr/lib/*/samba/krb5/async_dns_krb5_locator.so +usr/lib/*/samba/krb5/winbind_krb5_locator.so +usr/lib/*/samba/libidmap-samba4.so.0 +usr/lib/*/samba/libnss-info-samba4.so.0 +usr/lib/*/samba/nss_info/hash.so +usr/lib/*/samba/nss_info/rfc2307.so +usr/lib/*/samba/nss_info/sfu.so +usr/lib/*/samba/nss_info/sfu20.so +usr/sbin/winbindd +usr/share/man/man1/ntlm_auth.1 +usr/share/man/man1/wbinfo.1 +usr/share/man/man8/idmap_*.8 +usr/share/man/man8/winbind_krb5_locator.8 +usr/share/man/man8/winbindd.8 diff --git a/debian/winbind.links b/debian/winbind.links new file mode 100644 index 0000000..7b4f486 --- /dev/null +++ b/debian/winbind.links @@ -0,0 +1,2 @@ +/usr/share/bug/samba-common/presubj /usr/share/bug/winbind/presubj +/usr/share/bug/samba-common/script /usr/share/bug/winbind/script diff --git a/debian/winbind.lintian-overrides b/debian/winbind.lintian-overrides new file mode 100644 index 0000000..03bde9a --- /dev/null +++ b/debian/winbind.lintian-overrides @@ -0,0 +1,7 @@ +# manpages for idmap modules: +winbind: spare-manual-page */man/man8/idmap_* +# more modules: +winbind: spare-manual-page */man/man8/winbind_krb5_locator.8* +winbind: hardening-no-fortify-functions */samba/idmap/hash.so* +winbind: hardening-no-fortify-functions */samba/idmap/tdb2.so* +winbind: hardening-no-fortify-functions */samba/nss_info/hash.so* diff --git a/debian/winbind.logrotate b/debian/winbind.logrotate new file mode 100644 index 0000000..f79f431 --- /dev/null +++ b/debian/winbind.logrotate @@ -0,0 +1,17 @@ +/var/log/samba/log.winbindd { + weekly + missingok + rotate 7 + postrotate + if [ -f /var/run/samba/winbindd.pid ]; then + if [ -x /usr/bin/smbcontrol ]; then + /usr/bin/smbcontrol winbindd reload-config + elif [ -f /run/samba/winbindd.pid ]; then + kill -HUP `cat /run/samba/winbindd.pid` + fi + fi + endscript + compress + delaycompress + notifempty +} diff --git a/debian/winbind.maintscript b/debian/winbind.maintscript new file mode 100644 index 0000000..0c258a2 --- /dev/null +++ b/debian/winbind.maintscript @@ -0,0 +1 @@ +rm_conffile /etc/init/winbind.conf 2:4.6.5+dfsg-5~ diff --git a/debian/winbind.pam-config b/debian/winbind.pam-config new file mode 100644 index 0000000..3079439 --- /dev/null +++ b/debian/winbind.pam-config @@ -0,0 +1,19 @@ +Name: Winbind NT/Active Directory authentication +Default: yes +Priority: 192 +Auth-Type: Primary +Auth: + [success=end default=ignore] pam_winbind.so krb5_auth krb5_ccache_type=FILE cached_login try_first_pass +Auth-Initial: + [success=end default=ignore] pam_winbind.so krb5_auth krb5_ccache_type=FILE cached_login +Account-Type: Primary +Account: + [success=end new_authtok_reqd=done default=ignore] pam_winbind.so +Password-Type: Primary +Password: + [success=end default=ignore] pam_winbind.so try_authtok try_first_pass +Password-Initial: + [success=end default=ignore] pam_winbind.so +Session-Type: Additional +Session: + optional pam_winbind.so diff --git a/debian/winbind.postinst b/debian/winbind.postinst new file mode 100644 index 0000000..9aadab3 --- /dev/null +++ b/debian/winbind.postinst @@ -0,0 +1,24 @@ +#!/bin/sh + +set -e + +# in 4.17.4+dfsg-3 we stopped masking services, unmask them here +if [ configure = "$1" ] && dpkg --compare-versions "$2" lt-nl 2:4.17.4+dfsg-3~ +then + for s in winbind; do + if [ /dev/null = $(realpath /etc/systemd/system/$s.service) ] + then + rm -f /etc/systemd/system/$s.service + fi + done +fi + +if [ configure = "$1" -a ! "$2" ] # only do this if not upgrading +then + # groupadd --force: ok if group already exist + groupadd --system --force winbindd_priv + dir=/var/lib/samba/winbindd_privileged + [ -d $dir ] || install -d -m 0750 -g winbindd_priv $dir +fi + +#DEBHELPER# diff --git a/debian/winbind.postrm b/debian/winbind.postrm new file mode 100644 index 0000000..31001ea --- /dev/null +++ b/debian/winbind.postrm @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e +if [ "$1" = purge ]; then + winbindd_privileged_socket_directory='/var/lib/samba/winbindd_privileged' + rm -rf /var/cache/samba/netsamlogon_cache.tdb /var/cache/samba/winbindd_cache.tdb + rm -rf "$winbindd_privileged_socket_directory" + rm -rf /var/log/samba/log.winbind* /var/log/samba/log.wb* + rm -rf /run/samba/winbindd.pid +fi + +#DEBHELPER# |