summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Rajnoha <prajnoha@redhat.com>2012-09-12 11:30:13 +0200
committerPeter Rajnoha <prajnoha@redhat.com>2012-09-12 11:30:13 +0200
commit6d75ff138cb1614ee5e31bbd0c3c25721ff9514c (patch)
tree58c155543b4e6e72714fbd2569f263cc728cda94
parent31271606265ec8f7c14734aedbb0a314dfea2cd1 (diff)
downloadlvm2-6d75ff138cb1614ee5e31bbd0c3c25721ff9514c.tar.gz
lvm2-6d75ff138cb1614ee5e31bbd0c3c25721ff9514c.tar.xz
lvm2-6d75ff138cb1614ee5e31bbd0c3c25721ff9514c.zip
systemd: depend on systemd-udev-settle unit in activation unitHEADmaster
The "fedora-wait-storage.service" that the "lvm2-activation.service" had as a dependency (which was fedora-specific solution anyway) is obsolete now as this unit called "modprobe scsi_wait_scan" which is not used anymore. The "fedora-wait-storage.service" had "systemd-udev-settle" as its dependency, so let's depend on this one directly now, bypassing the out-dated "fedora-wait-storage.service".
-rw-r--r--WHATS_NEW1
-rw-r--r--scripts/lvm2_activation_generator_systemd_red_hat.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/WHATS_NEW b/WHATS_NEW
index 4884626b..2b897e89 100644
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
Version 2.02.98 -
=================================
+ Depend on systemd-udev-settle in units generated by activation generator.
Fix vgchange -aay to activate proper logical volumes.
Properly handle 'resync' of RAID LVs.
Disallow addition of RAID images until the array is in-sync.
diff --git a/scripts/lvm2_activation_generator_systemd_red_hat.c b/scripts/lvm2_activation_generator_systemd_red_hat.c
index 9fcee201..786d7951 100644
--- a/scripts/lvm2_activation_generator_systemd_red_hat.c
+++ b/scripts/lvm2_activation_generator_systemd_red_hat.c
@@ -116,12 +116,12 @@ static int generate_unit(const char *dir, int early)
"DefaultDependencies=no\n", f);
if (early)
- fputs("After=fedora-wait-storage.service\n", f);
+ fputs("After=systemd-udev-settle.service\n", f);
else
fputs("After=lvm2-activation-early.service cryptsetup.target\n", f);
fputs("Before=local-fs.target shutdown.target\n"
- "Wants=fedora-wait-storage.service\n\n"
+ "Wants=systemd-udev-settle.service\n\n"
"[Service]\n"
"ExecStart=/usr/sbin/lvm vgchange -aay --sysinit\n"
"Type=oneshot\n", f);