From mboxrd@z Thu Jan 1 00:00:00 1970 From: Benjamin Marzinski Subject: [PATCH v2] multipath: make multipathd work with new dm/lvm systemd activation method Date: Thu, 10 Jan 2013 14:51:55 -0600 Message-ID: <20130110205155.GX19059@ether.msp.redhat.com> Reply-To: device-mapper development Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dm-devel-bounces@redhat.com Errors-To: dm-devel-bounces@redhat.com To: device-mapper development Cc: Christophe Varoqui List-Id: dm-devel.ids multipathd needs to get setup before lvm (lvm2-activation-early.service). To do this, it needs to get started in sysinit.target like the other dm services. Signed-off-by: Peter Rajnoha Signed-off-by: Benjamin Marzinski --- multipathd/multipathd.service | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) Index: multipath-tools-120821/multipathd/multipathd.service =================================================================== --- multipath-tools-120821.orig/multipathd/multipathd.service +++ multipath-tools-120821/multipathd/multipathd.service @@ -1,7 +1,9 @@ [Unit] Description=Device-Mapper Multipath Device Controller -Before=iscsi.service iscsid.service +Before=iscsi.service iscsid.service lvm2-activation-early.service After=syslog.target +DefaultDependencies=no +Conflicts=shutdown.target [Service] Type=forking @@ -11,4 +13,4 @@ ExecReload=/sbin/multipathd reconfigure #ExecStop=/path/to/scrip delete-me if not necessary [Install] -WantedBy=multi-user.target +WantedBy=sysinit.target