aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorLeonardo Arena <rnalrd@gmail.com>2010-11-01 11:05:14 +0000
committerLeonardo Arena <rnalrd@gmail.com>2010-11-01 11:05:40 +0000
commit0d8cb20c55849b5054bba180a9db7e1a6978ecce (patch)
treebdcd114e68021ee7ce1f855ff44a22e336f7002e /testing
parent13904e0aa59dc54824925ab0f113c6a6511cfb5d (diff)
downloadaports-0d8cb20c55849b5054bba180a9db7e1a6978ecce.tar.bz2
aports-0d8cb20c55849b5054bba180a9db7e1a6978ecce.tar.xz
testing/multipath-tools: remove old files
Diffstat (limited to 'testing')
-rw-r--r--testing/multipath-tools/multipath.conf113
-rw-r--r--testing/multipath-tools/multipathd.init19
2 files changed, 0 insertions, 132 deletions
diff --git a/testing/multipath-tools/multipath.conf b/testing/multipath-tools/multipath.conf
deleted file mode 100644
index 11194176df..0000000000
--- a/testing/multipath-tools/multipath.conf
+++ /dev/null
@@ -1,113 +0,0 @@
-##
-## This is a template multipath-tools configuration file
-## Uncomment the lines relevent to your environment
-##
-#defaults {
-# udev_dir /dev
-# polling_interval 10
-# selector "round-robin 0"
-# path_grouping_policy multibus
-# getuid_callout "/lib/udev/scsi_id -g -u -s /block/%n"
-# prio_callout /bin/true
-# path_checker directio
-# rr_min_io 100
-# rr_weight priorities
-# failback immediate
-# no_path_retry fail
-# user_friendly_names no
-#}
-#blacklist {
-# wwid 26353900f02796769
-# devnode "^(ram|raw|loop|fd|md|dm-|sr|scd|st)[0-9]*"
-# devnode "^hd[a-z][[0-9]*]"
-# devnode "^cciss!c[0-9]d[0-9]*[p[0-9]*]"
-# device {
-# vendor DEC.*
-# product MSA[15]00
-# }
-#}
-#blacklist_exceptions {
-# devnode "^dasd[c-d]+[0-9]*"
-# wwid "IBM.75000000092461.4d00.34"
-#}
-#multipaths {
-# multipath {
-# wwid 3600508b4000156d700012000000b0000
-# alias yellow
-# path_grouping_policy multibus
-# path_checker directio
-# path_selector "round-robin 0"
-# failback manual
-# rr_weight priorities
-# no_path_retry 5
-# rr_min_io 100
-# }
-# multipath {
-# wwid 1DEC_____321816758474
-# alias red
-# }
-#}
-#devices {
-# device {
-# vendor "COMPAQ "
-# product "HSV110 (C)COMPAQ"
-# path_grouping_policy multibus
-# getuid_callout "/lib/udev/scsi_id -g -u -s /block/%n"
-# path_checker directio
-# path_selector "round-robin 0"
-# hardware_handler "0"
-# failback 15
-# rr_weight priorities
-# no_path_retry queue
-# rr_min_io 100
-# product_blacklist LUN_Z
-# }
-# device {
-# vendor "COMPAQ "
-# product "MSA1000 "
-# path_grouping_policy multibus
-# }
-#}
-
-#defaults {
-# udev_dir /dev
-# user_friendly_names yes
-#}
-
-#blacklist {
-# devnode "^(ram|raw|loop|fd|md|dm-|sr|scd|st)[0-9]*"
-# devnode "^hd[a-z]"
-# devnode "^sda"
-# devnode "^sdb"
-# devnode "^sdc"
-# devnode "^sdd"
-# devnode "^sda[0-9]"
-# devnode "^sdb[0-9]"
-# device {
-# vendor DELL
-# product "PERC|Universal"
-# }
-#}
-
-#devices {
-# device {
-# vendor DELL
-# product MD3000i
-# hardware_handler "1 rdac"
-# path_checker rdac
-# path_grouping_policy group_by_prio
-# prio_callout "/sbin/mpath_prio_rdac /dev/%n"
-# failback immediate
-# getuid_callout "/lib/udev/scsi_id -g -u -s /block/%n"
-# }
-#}
-
-#multipaths {
-# multipath {
-# device {
-# vendor DELL
-# product MD3000i
-# }
-# }
-#}
-
diff --git a/testing/multipath-tools/multipathd.init b/testing/multipath-tools/multipathd.init
deleted file mode 100644
index dffbef04bf..0000000000
--- a/testing/multipath-tools/multipathd.init
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/www/viewcvs.gentoo.org/raw_cvs/gentoo-x86/sys-fs/multipath-tools/files/rc-multipathd,v 1.5 2009/03/17 22:48:13 solar Exp $
-
-depend() {
-}
-
-start() {
- ebegin "Starting multipathd"
- start-stop-daemon --start --quiet --exec /sbin/multipathd
- eend $?
-}
-
-stop() {
- ebegin "Stopping multipathd"
- start-stop-daemon --stop --quiet --pidfile /var/run/multipathd.pid
- eend $?
-}