/
githubmirror
/
device-mapper-multipath
Обзор
Документация
Войти
/
githubmirror
/
device-mapper-multipath
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
0016-RHBZ-554561-fix-init-error-msg.patch
23 строки
909 B
Ivan Makfinsky
srpm imported for 'GoOSe Linux 6.0
07 дек 2011, 19:36
07 дек 2011, 19:36
4613d8f
Код
Авторство
О чём код?
--- multipathd/multipathd.init.redhat | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) Index: multipath-tools/multipathd/multipathd.init.redhat =================================================================== --- multipath-tools.orig/multipathd/multipathd.init.redhat +++ multipath-tools/multipathd/multipathd.init.redhat @@ -75,9 +75,11 @@ start() { stop() { root_dev=$(awk '{ if ($1 !~ /^[ \t]*#/ && $2 == "/") { print $1; }}' /etc/mtab) - dm_num=`dmsetup info -c --noheadings -o minor $root_dev` - root_dm_device="dm-$dm_num" - [ -d $syspath/$root_dm_device ] && teardown_slaves $syspath/$root_dm_device + dm_num=`dmsetup info -c --noheadings -o minor $root_dev 2> /dev/null` + if [ $? -eq 0 ]; then + root_dm_device="dm-$dm_num" + [ -d $syspath/$root_dm_device ] && teardown_slaves $syspath/$root_dm_device + fi echo -n $"Stopping $prog daemon: " killproc $DAEMON