Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .distro/backport_fix.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/zsh
#!/usr/bin/env zsh
#
# .distro/backport_fix.sh [options] DISTRO_VERSION JIRA_ISSUE DRACUT_PR [COMMIT_COUNT [COMMITS_ORIGIN_REPO]]
#
Expand Down Expand Up @@ -184,7 +184,7 @@ echo "${cis}" \

[[ -z $mod ]] || {

mod="$(echo "$mod" | tr -s ' ' | cut -d' ' -f3)"
mod=$(echo -e "$mod" | tr -s ' ' | cut -d' ' -f3)

ls -d $mod

Expand Down
2 changes: 1 addition & 1 deletion modules.d/90multipath/multipathd-configure.service
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ConditionPathExists=!/etc/multipath.conf
[Service]
Type=oneshot
ExecStartPre=-/usr/bin/mkdir -p /etc/multipath/multipath.conf.d
ExecStart=/usr/sbin/mpathconf --enable
ExecStart=/usr/sbin/mpathconf --enable --user_friendly_names n

[Install]
WantedBy=sysinit.target
3 changes: 2 additions & 1 deletion modules.d/90multipath/multipathd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

if [ "$(getarg rd.multipath)" = "default" ] && [ ! -e /etc/multipath.conf ]; then
mkdir -p /etc/multipath/multipath.conf.d
mpathconf --enable
mpathconf --enable --user_friendly_names n

fi

if getargbool 1 rd.multipath && [ -e /etc/multipath.conf ]; then
Expand Down
Loading