:: Re: [DNG] Our friendly community
Top Page
Delete this message
Reply to this message
Author: Rainer Weikusat
Date:  
To: Dng
Subject: Re: [DNG] Our friendly community
Mitt Green <mitt_green@???> writes:
>>It's a library whose sole purpose is to make sure that
>>packages *don't* depend on
>>systemd.
>
> So, you are saying that libsystemd0 is harmless and it
> doesn't mean anything unless you install systemd, systemd-sysv and so
> on?


If you look at

,----
|  if (init_is_systemd) {
|    do some systemd stuff;
|  }
|  else {
|    carry on as before;
|  }

`----

you'll note that the

if (init_is_systemd) {
    do some systemd stuff;
} else {
    /* syslog(LOG_EMERG, "ESYADMINDEPRECATED!!!"); */
}


is nothing but "systemd support code added to some package".