From 68c3502954bca1b5b63e4e1edc748fc61dd048e8 Mon Sep 17 00:00:00 2001 From: Fabian Deutsch Date: Sat, 12 Nov 2016 11:55:36 +0100 Subject: [PATCH] fc: Drop multipath.conf snippet A minimalistic multipath.conf got written, but it was useless, as it is unclear if multipathd is running and there was also no config reload triggered. This patch drops this snippet. In general it's probably a better idea to leave the multipath.conf to the component managing the host. Signed-off-by: Fabian Deutsch --- pkg/volume/fc/fc_util.go | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/pkg/volume/fc/fc_util.go b/pkg/volume/fc/fc_util.go index ab3c5ca45f8..629c56cace8 100644 --- a/pkg/volume/fc/fc_util.go +++ b/pkg/volume/fc/fc_util.go @@ -89,21 +89,6 @@ func findDisk(wwn, lun string, io ioHandler) (string, string) { return "", "" } -func createMultipathConf(path string, io ioHandler) { - if _, err := os.Lstat(path); err != nil { - data := []byte(`defaults { - find_multipaths yes - user_friendly_names yes -} - - -blacklist { -} -`) - io.WriteFile(path, data, 0664) - } -} - // rescan scsi bus func scsiHostRescan(io ioHandler) { scsi_path := "/sys/class/scsi_host/" @@ -148,8 +133,6 @@ func searchDisk(wwns []string, lun string, io ioHandler) (string, string) { break } // rescan and search again - // create multipath conf if it is not there - createMultipathConf("/etc/multipath.conf", io) // rescan scsi bus scsiHostRescan(io) rescaned = true