2e35d7583b
- Update for latest mdadm-4.1+ patches, this is required by jsc#SLE-10078 and jsc#SLE-9348. Mostly the purpose is for latest Intel IMSM raid support. The following patches also include previous patches with new re-ordered prefix numbers. - Makefile: install mdadm_env.sh to /usr/lib/mdadm (bsc#1111960) 0000-Makefile-install-mdadm_env.sh-to-usr-lib-mdadm.patch - Assemble: keep MD_DISK_FAILFAST and MD_DISK_WRITEMOSTLY flag (jsc#SLE-10078, jsc#SLE-9348) 0001-Assemble-keep-MD_DISK_FAILFAST-and-MD_DISK_WRITEMOST.patch - Document PART-POLICY lines (jsc#SLE-10078, jsc#SLE-9348) 0002-Document-PART-POLICY-lines.patc - policy: support devices with multiple paths. (jsc#SLE-10078, jsc#SLE-9348) 0003-policy-support-devices-with-multiple-paths.patch - mdcheck: add systemd unit files to run mdcheck. (bsc#1115407) 0004-mdcheck-add-systemd-unit-files-to-run-mdcheck.patch - Monitor: add system timer to run --oneshot periodically (bsc#1115407) 0005-Monitor-add-system-timer-to-run-oneshot-periodically.patch - imsm: update metadata correctly while raid10 double (jsc#SLE-10078, jsc#SLE-9348) 0006-imsm-update-metadata-correctly-while-raid10-double-d.patch - Assemble: mask FAILFAST and WRITEMOSTLY flags when finding (jsc#SLE-10078, jsc#SLE-9348) 0007-Assemble-mask-FAILFAST-and-WRITEMOSTLY-flags-when-fi.patch - Grow: avoid overflow in compute_backup_blocks() (jsc#SLE-10078, jsc#SLE-9348) 0008-Grow-avoid-overflow-in-compute_backup_blocks.patch - Grow: report correct new chunk size. (jsc#SLE-10078, jsc#SLE-9348) 0009-Grow-report-correct-new-chunk-size.patch OBS-URL: https://build.opensuse.org/request/show/781064 OBS-URL: https://build.opensuse.org/package/show/Base:System/mdadm?expand=0&rev=181
65 lines
2.3 KiB
Diff
65 lines
2.3 KiB
Diff
From fd38b8ea80ff8e0317e12d1d70431148ceedd5fd Mon Sep 17 00:00:00 2001
|
|
From: Xiao Ni <xni@redhat.com>
|
|
Date: Tue, 11 Feb 2020 21:44:15 +0800
|
|
Subject: [PATCH] Remove the legacy whitespace
|
|
Git-commit: fd38b8ea80ff8e0317e12d1d70431148ceedd5fd
|
|
Patch-mainline: mdadm-4.1+
|
|
References: jsc#SLE-10078, jsc#SLE-9348
|
|
|
|
The whitespace between Environment= and the true value causes confusion.
|
|
To avoid confusing other people in future, remove the whitespace to keep
|
|
it a simple, unambiguous syntax
|
|
|
|
Signed-off-by: Xiao Ni <xni@redhat.com>
|
|
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
|
|
Signed-off-by: Coly Li <colyli@suse.de>
|
|
|
|
---
|
|
systemd/mdcheck_continue.service | 2 +-
|
|
systemd/mdcheck_start.service | 2 +-
|
|
systemd/mdmonitor-oneshot.service | 2 +-
|
|
3 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/systemd/mdcheck_continue.service b/systemd/mdcheck_continue.service
|
|
index aa02dde..854317f 100644
|
|
--- a/systemd/mdcheck_continue.service
|
|
+++ b/systemd/mdcheck_continue.service
|
|
@@ -11,7 +11,7 @@ ConditionPathExistsGlob = /var/lib/mdcheck/MD_UUID_*
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
-Environment= "MDADM_CHECK_DURATION=6 hours"
|
|
+Environment="MDADM_CHECK_DURATION=6 hours"
|
|
EnvironmentFile=-/run/sysconfig/mdadm
|
|
ExecStartPre=-/usr/lib/mdadm/mdadm_env.sh
|
|
ExecStart=/usr/share/mdadm/mdcheck --continue --duration ${MDADM_CHECK_DURATION}
|
|
diff --git a/systemd/mdcheck_start.service b/systemd/mdcheck_start.service
|
|
index da62d5f..3bb3d13 100644
|
|
--- a/systemd/mdcheck_start.service
|
|
+++ b/systemd/mdcheck_start.service
|
|
@@ -11,7 +11,7 @@ Wants=mdcheck_continue.timer
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
-Environment= "MDADM_CHECK_DURATION=6 hours"
|
|
+Environment="MDADM_CHECK_DURATION=6 hours"
|
|
EnvironmentFile=-/run/sysconfig/mdadm
|
|
ExecStartPre=-/usr/lib/mdadm/mdadm_env.sh
|
|
ExecStart=/usr/share/mdadm/mdcheck --duration ${MDADM_CHECK_DURATION}
|
|
diff --git a/systemd/mdmonitor-oneshot.service b/systemd/mdmonitor-oneshot.service
|
|
index fd469b1..373955a 100644
|
|
--- a/systemd/mdmonitor-oneshot.service
|
|
+++ b/systemd/mdmonitor-oneshot.service
|
|
@@ -9,7 +9,7 @@
|
|
Description=Reminder for degraded MD arrays
|
|
|
|
[Service]
|
|
-Environment= MDADM_MONITOR_ARGS=--scan
|
|
+Environment=MDADM_MONITOR_ARGS=--scan
|
|
EnvironmentFile=-/run/sysconfig/mdadm
|
|
ExecStartPre=-/usr/lib/mdadm/mdadm_env.sh
|
|
ExecStart=BINDIR/mdadm --monitor --oneshot $MDADM_MONITOR_ARGS
|
|
--
|
|
2.25.0
|
|
|