From: Günter Kukkukk on
Am Sonntag 11 Juli 2010 18:32:34 schrieb tms3(a)tms3.com:
> Having some issues with:
>
> samba_dnsupdate
>
> Specifically:
>
> /usr/bin/nsupdate: cannot specify -g or -o, program not linked with
> GSS API Library
>
> I've looked through the script, and cannot find these options called.
> If anyone can point me to where they're called I'd appreciate it.
>
> Cheers,
>
> TMS III
>
>
>
>

nsupdate is (usually) part of the nameserver "bind" (named) package.

At least "named" itself writes the build-in compile options to the (kernel)
system logfile - after being started.

If you don't see the build option
--with-gssapi

your bind build is missing some needed features.

Cheers, Günter
--
To unsubscribe from this list go to the following URL and read the
instructions: https://lists.samba.org/mailman/options/samba
From: tms3 on




>
> --- Original message ---
> Subject: Re: [Samba] Samba4 FreBSD
> From: Günter Kukkukk <linux(a)kukkukk.com>
> To: <samba(a)lists.samba.org>
> Date: Sunday, 11/07/2010 4:28 PM
>
> Am Sonntag 11 Juli 2010 18:32:34 schrieb tms3(a)tms3.com:
>>
>> Having some issues with:
>>
>> samba_dnsupdate
>>
>> Specifically:
>>
>> /usr/bin/nsupdate: cannot specify -g or -o, program not linked with
>> GSS API Library
>>
>> I've looked through the script, and cannot find these options called.
>> If anyone can point me to where they're called I'd appreciate it.
>>
>> Cheers,
>>
>> TMS III
>>
>>
>>
>>
>
> nsupdate is (usually) part of the nameserver "bind" (named) package.
>
> At least "named" itself writes the build-in compile options to the
> (kernel)
> system logfile - after being started.
>
> If you don't see the build option
> --with-gssapi

Yes, but there's a bit of snag with gssapi and bind on FreeBSD, so I
want to stop the call and work forward as I try to debug things.
>
>
>
> your bind build is missing some needed features.
>
> Cheers, Günter
> --
> To unsubscribe from this list go to the following URL and read the
> instructions: https://lists.samba.org/mailman/options/samba

--
To unsubscribe from this list go to the following URL and read the
instructions: https://lists.samba.org/mailman/options/samba
From: tms3 on




>
> --- Original message ---
> Subject: Re: [Samba] Samba4 FreBSD
> From: Günter Kukkukk <linux(a)kukkukk.com>
> To: <samba(a)lists.samba.org>
> Date: Sunday, 11/07/2010 4:28 PM
>
> Am Sonntag 11 Juli 2010 18:32:34 schrieb tms3(a)tms3.com:
>>
>> Having some issues with:
>>
>> samba_dnsupdate
>>
>> Specifically:
>>
>> /usr/bin/nsupdate: cannot specify -g or -o, program not linked with
>> GSS API Library
>>
>> I've looked through the script, and cannot find these options called.
>> If anyone can point me to where they're called I'd appreciate it.
>>
>> Cheers,
>>
>> TMS III
>>
>>
>>
>>
>
> nsupdate is (usually) part of the nameserver "bind" (named) package.
>
> At least "named" itself writes the build-in compile options to the
> (kernel)
> system logfile - after being started.
>
> If you don't see the build option
> --with-gssapi

Yes quite, but there are issue with bind and gssapi on FreeBSD, and if
I could find out in the scripts where the options are called and turn
them off, I could work forward from there in debubbing.
>
>
>
> your bind build is missing some needed features.
>
> Cheers, Günter
> --
> To unsubscribe from this list go to the following URL and read the
> instructions: https://lists.samba.org/mailman/options/samba

--
To unsubscribe from this list go to the following URL and read the
instructions: https://lists.samba.org/mailman/options/samba
From: Michael Wood on
On 12 July 2010 14:30, <tms3(a)tms3.com> wrote:
>> --- Original message ---
>> From: Günter Kukkukk <linux(a)kukkukk.com>
>>
>> Am Sonntag 11 Juli 2010 18:32:34 schrieb tms3(a)tms3.com:
[...]
>>> /usr/bin/nsupdate: cannot specify -g    or -o, program not linked with
>>> GSS API Library
>>>
>>> I've looked through the script, and cannot find these options called.
>>> If anyone can point me to where they're called I'd appreciate it.
>>
>> nsupdate is (usually) part of the nameserver "bind" (named) package.
>>
>> At least "named" itself writes the build-in compile options to the
>> (kernel)
>> system logfile - after being started.
>>
>> If you don't see the build option
>>   --with-gssapi
>
> Yes quite, but there are issue with bind and gssapi on FreeBSD, and if I
> could find out in the scripts where the options are called and turn them
> off, I could work forward from there in debubbing.

I think you're looking for the "nsupdate command" parameter in the
smb.conf file.

I'm sure I've seen it documented somewhere, but it's in
source4/param/loadparm.c anyway:

param/loadparm.c: lp_do_global_parameter(lp_ctx, "nsupdate
command", "/usr/bin/nsupdate -g");

--
Michael Wood <esiotrot(a)gmail.com>
--
To unsubscribe from this list go to the following URL and read the
instructions: https://lists.samba.org/mailman/options/samba
From: Michael Wood on
On 12 July 2010 15:07, Michael Wood <esiotrot(a)gmail.com> wrote:
> On 12 July 2010 14:30,  <tms3(a)tms3.com> wrote:
>>> --- Original message ---
>>> From: Günter Kukkukk <linux(a)kukkukk.com>
>>>
>>> Am Sonntag 11 Juli 2010 18:32:34 schrieb tms3(a)tms3.com:
> [...]
>>>> /usr/bin/nsupdate: cannot specify -g    or -o, program not linked with
>>>> GSS API Library
>>>>
>>>> I've looked through the script, and cannot find these options called.
>>>> If anyone can point me to where they're called I'd appreciate it.
>>>
>>> nsupdate is (usually) part of the nameserver "bind" (named) package.
>>>
>>> At least "named" itself writes the build-in compile options to the
>>> (kernel)
>>> system logfile - after being started.
>>>
>>> If you don't see the build option
>>>   --with-gssapi
>>
>> Yes quite, but there are issue with bind and gssapi on FreeBSD, and if I
>> could find out in the scripts where the options are called and turn them
>> off, I could work forward from there in debubbing.
>
> I think you're looking for the "nsupdate command" parameter in the
> smb.conf file.
>
> I'm sure I've seen it documented somewhere, but it's in
> source4/param/loadparm.c anyway:

Ah, this is where I saw it:

http://wiki.samba.org/index.php/Samba4/HOWTO/Join_a_domain_as_a_DC#A_note_on_DNS_updates

--
Michael Wood <esiotrot(a)gmail.com>
--
To unsubscribe from this list go to the following URL and read the
instructions: https://lists.samba.org/mailman/options/samba