[systemd-devel] dependency failed for the ifup managed network interface

2015-09-07 Thread Paul Young
Hi, I just downloaded and built the Zabbix appliance within VMWare. So it's a virtual machine. I used the ISO package from here: http://www.zabbix.com/download.php Built the machine and then started to bring up some interfaces. Of the two I have assigned IP addresses to and bring up I get a

Re: [systemd-devel] Method to solve a "ordering cycle"

2015-09-07 Thread Daniel Spannbauer
Am 09/06/2015 um 03:50 PM schrieb Lennart Poettering: > On Wed, 02.09.15 17:08, Daniel Spannbauer (d...@marco.de) wrote: > >> Hello, >> >> I often have a ordering cycle so a service is deleted at boot. >> >> Is there a standard way of getting rid of that cycles or to find the >> cause of them? >

Re: [systemd-devel] Possible confusion with socket activation and daemon own configuration

2015-09-07 Thread Richard Maw
On Sun, Sep 06, 2015 at 12:43:51PM +0200, Francis Moreau wrote: > How is this handled ? Should we put a big warning in sshd_config to hint > user to configure ListenAddress in sshd.socket in the case socket > activation is used ? > Or should sshd simply ignore all listening addresses defined in

Re: [systemd-devel] Method to solve a "ordering cycle"

2015-09-07 Thread Alexander E. Patrakov
07.09.2015 11:10, Daniel Spannbauer wrote: Sep 04 14:56:04 fry systemd[1]: Trying to enqueue job multi-user.target/start/replace Sep 04 14:56:04 fry systemd[1]: ESC[1;39mFound ordering cycle on remote-fs-pre.target/startESC[0m Sep 04 14:56:04 fry systemd[1]: Walked on cycle path to

[systemd-devel] [ANNOUNCE] systemd-226 around the corner

2015-09-07 Thread David Herrmann
Hi Trying to continue with our bi-weekly release schedule, we plan to release version 226 (the day after) tomorrow. Please give it a spin and make sure there is no major breakage before the release. Thanks David ___ systemd-devel mailing list

[systemd-devel] Any way to run instantiated units from templates one after the other

2015-09-07 Thread Dmitry Karpov
I have a template for creating the backup: backup@.service [Unit] Description=Instance %i [Service] ExecStart=/bin/sh -c "echo do backup job for %i" [Install] WantedBy=maintenance.target and some target: maintenance.target [Unit] Description=target for

Re: [systemd-devel] Method to solve a "ordering cycle"

2015-09-07 Thread Lennart Poettering
On Mon, 07.09.15 08:10, Daniel Spannbauer (d...@marco.de) wrote: > Am 09/06/2015 um 03:50 PM schrieb Lennart Poettering: > > On Wed, 02.09.15 17:08, Daniel Spannbauer (d...@marco.de) wrote: > > > >> Hello, > >> > >> I often have a ordering cycle so a service is deleted at boot. > >> > >> Is there

[systemd-devel] No device unit created

2015-09-07 Thread jean-philippe francois
Hi, I have a problem I don't know how to debug. The documentation for device units says : systemd will dynamically create device units for all kernel devices that are marked with the "systemd" udev tag Howevever, while the device I am waiting for are given the systemd tag, it seems no device

Re: [systemd-devel] No device unit created

2015-09-07 Thread Richard Maw
On Mon, Sep 07, 2015 at 03:42:11PM +0200, jean-philippe francois wrote: > Hi, > > I have a problem I don't know how to debug. > The documentation for device units says : > > systemd will dynamically create device units for all kernel devices > that are marked with the "systemd" udev tag > >

Re: [systemd-devel] How to set time from Perl

2015-09-07 Thread Mantas Mikulėnas
On Mon, Sep 7, 2015 at 5:23 PM, Manuel Reimer wrote: > Hello, > > if I run the following code on an intel based platform, then I don't have > any problems: > > use Net::DBus; > my $bus = Net::DBus->system(); > my $logind =

Re: [systemd-devel] How to set time from Perl

2015-09-07 Thread Daniel P. Berrange
On Mon, Sep 07, 2015 at 04:23:42PM +0200, Manuel Reimer wrote: > Hello, > > if I run the following code on an intel based platform, then I don't have > any problems: > > use Net::DBus; > my $bus = Net::DBus->system(); > my $logind = $bus->get_service('org.freedesktop.timedate1'); > my

Re: [systemd-devel] How to set time from Perl

2015-09-07 Thread Richard Maw
On Mon, Sep 07, 2015 at 04:23:42PM +0200, Manuel Reimer wrote: > Hello, > > if I run the following code on an intel based platform, then I don't > have any problems: > > use Net::DBus; > my $bus = Net::DBus->system(); > my $logind = $bus->get_service('org.freedesktop.timedate1'); > my

[systemd-devel] How to set time from Perl

2015-09-07 Thread Manuel Reimer
Hello, if I run the following code on an intel based platform, then I don't have any problems: use Net::DBus; my $bus = Net::DBus->system(); my $logind = $bus->get_service('org.freedesktop.timedate1'); my $manager = $logind->get_object('/org/freedesktop/timedate1',

Re: [systemd-devel] I want to use an environmental variable for LimitNOFILE= in a service unit. Is it possible?

2015-09-07 Thread Eliezer Croitoru
Thanks For all the suggestions!! Indeed I was unaware of all the options that systemd offers in terms of overriding the default service files. Systemd makes it much simpler then sysVinit scripts replacement. Eliezer On 03/09/2015 20:10, Reindl Harald wrote: Am 03.09.2015 um 19:08 schrieb

[systemd-devel] Secret machine-id for RFC 7217 stable addresses

2015-09-07 Thread Lubomir Rintel
Hello, the RFC 7217 specifies an algorithm for generating an IPv6 host address that stays stable in a particular network but changes when the machine enters another network to prevent tracking [1]. It works by hashing a tuple of various parameters one of which is "secret_key" -- a secret value

Re: [systemd-devel] dependency failed for the ifup managed network interface

2015-09-07 Thread Paul Young
Hi, The entire error message reads like this: Dependency failed for ifup managed network interface eth4. -- Subject: Unit network@eth4.service has failed -- Defined-By: systemd -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel -- Documentation:

Re: [systemd-devel] Method to solve a "ordering cycle"

2015-09-07 Thread Daniel Spannbauer
Am 09/07/2015 um 01:56 PM schrieb Lennart Poettering: > On Mon, 07.09.15 08:10, Daniel Spannbauer (d...@marco.de) wrote: > >> Am 09/06/2015 um 03:50 PM schrieb Lennart Poettering: >>> On Wed, 02.09.15 17:08, Daniel Spannbauer (d...@marco.de) wrote: >>> Hello, I often have a ordering

Re: [systemd-devel] how to support strict ordering going up and down?

2015-09-07 Thread Andrei Borzenkov
Отправлено с iPhone > 1 сент. 2015 г., в 21:39, Nekrasov, Alexander > написал(а): > > Take the following structure: > > A.service: > Requires=base.service > Type=fork > Restarts=no > > B.service: > Requires=base.service > Type=fork > Restarts=no > After=A >