:: Re: [DNG] Our friendly community
Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Rainer Weikusat
Fecha:  
A: Dng
Asunto: 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".