> On January 22, 2016 at 4:34 PM Rainer Weikusat
> wrote:
>
> Can the effect of the following C function
>
> static void print_start(char const *name, char const *what)
> {
> char *buf, *p;
> unsigned name_len, what_len, total;
>
> name_len = strlen(name);
> what_len = strlen(wh
On Fri, Jan 22, 2016 at 09:34:28PM +, Rainer Weikusat wrote:
> Can the effect of the following C function
>
> static void print_start(char const *name, char const *what)
> {
> char *buf, *p;
> unsigned name_len, what_len, total;
>
> name_len = strlen(name);
> what_len = strlen
Am Freitag, 22. Januar 2016 schrieb Rainer Weikusat:
> Can the effect of the following C function
>
> static void print_start(char const *name, char const *what)
> {
> char *buf, *p;
> unsigned name_len, what_len, total;
>
> name_len = strlen(name);
> what_len = strlen(what);
>
On Fri, Jan 22, 2016 at 09:34:28PM +, Rainer Weikusat wrote:
> Can the effect of the following C function
>
> static void print_start(char const *name, char const *what)
> {
[cut]
> be considered obvious or should it rather get an explanation?
>
katolaZ said:
Well, it will depend on the
Can the effect of the following C function
static void print_start(char const *name, char const *what)
{
char *buf, *p;
unsigned name_len, what_len, total;
name_len = strlen(name);
what_len = strlen(what);
total = name_len + what_len + 3;
p = buf = alloca(total);
Rainer Weikusat wrote:
> Joel wrote:
> > How complicated is it to port such scripts to runit? Exim4's
> > init.d script is 275 lines.
>
> This depends on what you mean by "port", ie, do you just want the start
> command, as was suggested elsewhere, or do you want to keep some of the
> other feat
On Thu, 21 Jan 2016 21:34:31 -1000
Joel Roth wrote:
> Steve Litt wrote:
> > On Wed, 20 Jan 2016 21:20:26 -1000
> > Joel Roth wrote:
> > >
> > > Hi Steve,
> > >
> > > How complicated is it to port such scripts to runit? Exim4's
> > > init.d script is 275 lines.
> > >
> > > Joel
> >
> > Hi
Le 22/01/2016 06:09, Steve Litt a écrit :
Yes! After the last time I did an rm -rf on my laptop, only to discover
it was in an ssh session to my main computer where I didn't want to
delete anything, I always use different color terminals for ssh
sessions and for root sessions. Roxterm's file base
On 22/01/16 17:38, Rob Owens wrote:
- Original Message -
From: "Rowland Penny"
On 22/01/16 16:02, Rob Owens wrote:
One thing it can be used for is offline authentication for LDAP users. I am
currently using sssd on a Funtoo laptop for this purpose. When I have no
network access (no a
- Original Message -
> From: "Rowland Penny"
> On 22/01/16 16:02, Rob Owens wrote:
>> One thing it can be used for is offline authentication for LDAP users. I am
>> currently using sssd on a Funtoo laptop for this purpose. When I have no
>> network access (no access to the LDAP server),
On 22/01/16 16:02, Rob Owens wrote:
One thing it can be used for is offline authentication for LDAP users. I am
currently using sssd on a Funtoo laptop for this purpose. When I have no
network access (no access to the LDAP server), my users can still log in.
As I said, I cannot think of anyt
2016-01-21 14:34 に Robert Storey さんは書きました:
writes:
Hi dear list,
Thanks again for all the work u did on Dev1 and tell me if I can
help
in anyway.
I followed devuanfanboy howto, removed dbus and installed
fluxbox(was
under xfce b4)
Thing is Im using Japanese a lot and need anthy
One thing it can be used for is offline authentication for LDAP users. I am
currently using sssd on a Funtoo laptop for this purpose. When I have no
network access (no access to the LDAP server), my users can still log in.
Previously I had used pam-ccreds for this. Both pam-ccreds and sssd req
On 22/01/16 15:32, Klaus Hartnegg wrote:
Am 22.01.2016 um 16:07 schrieb Rowland Penny:
On 22/01/16 14:29, Klaus Hartnegg wrote:
Am 22.01.2016 um 14:23 schrieb Dr. Nikolaus Klepp:
Does anybody know what sssd is good for?
This is often used together with Samba to make userids of pure Active
Di
Am 22.01.2016 um 16:07 schrieb Rowland Penny:
On 22/01/16 14:29, Klaus Hartnegg wrote:
Am 22.01.2016 um 14:23 schrieb Dr. Nikolaus Klepp:
Does anybody know what sssd is good for?
This is often used together with Samba to make userids of pure Active
Directory users known to the Linux of the do
On 22/01/16 14:29, Klaus Hartnegg wrote:
Am 22.01.2016 um 14:23 schrieb Dr. Nikolaus Klepp:
Does anybody know what sssd is good for?
This is often used together with Samba to make userids of pure Active
Directory users known to the Linux of the domain controller.
https://wiki.samba.org/inde
A lot of what you say sums up my feelings about systemd and microsoft. When
these things had happened what was of the gnu/linux community practically all
rejected anything that smells like microsoft, and it was necessary to do that
imo (just as some zeal is necessary now for other inits to survi
Am 22.01.2016 um 14:23 schrieb Dr. Nikolaus Klepp:
Does anybody know what sssd is good for?
This is often used together with Samba to make userids of pure Active
Directory users known to the Linux of the domain controller.
https://wiki.samba.org/index.php/Sssd
The samba developers recommend
On 23/01/16 00:23, Dr. Nikolaus Klepp wrote:
Does anybody know what sssd is good for? I was a bit surprised to see a whole
bunch of these sssd-something packages in debian, while I was searching for
sss. It's homepage says:
"SSSD is a system daemon. Its primary function is to provide access to
Does anybody know what sssd is good for? I was a bit surprised to see a whole
bunch of these sssd-something packages in debian, while I was searching for
sss. It's homepage says:
"SSSD is a system daemon. Its primary function is to provide access to identity
and authentication remote resource t
Joel Roth writes:
> Steve Litt wrote:
>> On Wed, 20 Jan 2016 20:23:10 +
>> Rainer Weikusat wrote:
>>
>> > Steve Litt writes:
>> > > People aren't completely alone on run scripts: I can give them any
>> > > run scripts I'm using. Also, Runit run scripts are *nothing* like
>> > > sysvinit or
On 01/20/2016 12:27 PM, hellekin wrote:
> Hello,
>
> git.devuan.org will go down for a scheduled upgrade on Friday, January
> 22nd, in the (EU) evening.
>
I am timezone-challenged :) Hope everything is fine. Please report any
anomalies. Happy hacking!
==
hk
--
_ _ We are free to share
22 matches
Mail list logo