Your message dated Tue, 05 Nov 2013 16:33:35 +0000 with message-id <[email protected]> and subject line Bug#691732: fixed in open-iscsi 2.0.873+git0.3b4b4500-1 has caused the Debian Bug report #691732, regarding open-iscsi: umountiscsi.sh tries to umount / and /var to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 691732: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=691732 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: open-iscsi Version: 2.0.871.3-2squeeze1 Severity: important Tags: patch Due to the fact that our system does not receive block devices from the iSCSI target, but it is logged in, this means the the BLOCK_FILE contains the search string, since /block/ does not exist. It then tries to umount everything, making the entire system read-only :( With the change I made in umountiscsi.sh this is not happening anymore. Greetings, Dennis Leeuw -- System Information: Debian Release: 6.0.6 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-5-amd64 (SMP w/4 CPU cores) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages open-iscsi depends on: ii libc6 2.11.3-4 Embedded GNU C Library: Shared lib ii udev 164-3 /dev/ and hotplug management daemo open-iscsi recommends no packages. open-iscsi suggests no packages. -- Configuration Files: /etc/default/open-iscsi changed: LVMGROUPS="md3200_1" HANDLE_NETDEV=1 /etc/init.d/umountiscsi.sh changed: . /lib/init/vars.sh . /lib/lsb/init-functions if [ -f /etc/default/open-iscsi ]; then . /etc/default/open-iscsi fi do_stop () { log_daemon_msg "Unmounting iscsi-backed filesystems" umount_fail=0 if [ $HANDLE_NETDEV -eq 1 ]; then log_progress_msg "Unmounting all devices marked _netdev"; umount -a -O _netdev >/dev/null 2>&1 fi # Now handle iSCSI LVM Volumes if [ -n "$LVMGROUPS" ]; then log_daemon_msg "Deactivating iSCSI volume groups" for vg in "$LVMGROUPS"; do log_progress_msg $vg vgchange --available=n $vg if [ $? -ne 0 ]; then log_warning_msg "Cannot deactivate Volume Group $vg" umount_fail=1 fi done log_end_msg 0 fi for HOST_DIR in /sys/devices/platform/host*; do if ! [ -d $HOST_DIR/iscsi_host* ]; then continue fi for SESSION_DIR in $HOST_DIR/session*; do if ! [ -d $SESSION_DIR/target* ]; then continue fi for BLOCK_FILE in $SESSION_DIR/target*/*\:*/block/*; do if [ "${BLOCK_FILE}" = '/sys/devices/platform/host24/session20/target*/*:*/block/*' ]; then log_warning_msg "No block devices found for this host" return 1 fi BLOCK_DEV=`echo "$BLOCK_FILE" | sed 's/.*block\///'` DOS_PARTITIONS="`awk "/^\/dev\/$BLOCK_DEV/ { print \\$2; }" < /proc/mounts`" for DEVICE in $DOS_PARTITIONS; do #log_progress_msg $DEVICE #echo $DEVICE umount $DEVICE exit_status=$? if ! [ $exit_status -eq 0 ]; then umount_fail=1 log_warning_msg "Could not unmount $DEVICE" fi done done done done if [ $umount_fail -ne 0 ]; then log_end_msg 1 exit 1 else log_end_msg 0 exit 0 fi } case "$1" in start) # No-op ;; restart|reload|force-reload) echo "Error: argument '$1' not supported" >&2 exit 3 ;; stop|"") do_stop ;; *) echo "Usage: umountiscsi.sh [start|stop]" >&2 exit 3 ;; esac /etc/iscsi/initiatorname.iscsi changed: InitiatorName=iqn.2005-03.org.open-iscsi:es /etc/iscsi/iscsid.conf changed: node.startup = automatic node.session.auth.authmethod = None node.session.timeo.replacement_timeout = 144 node.conn[0].timeo.login_timeout = 15 node.conn[0].timeo.logout_timeout = 15 node.conn[0].timeo.noop_out_interval = 10 node.conn[0].timeo.noop_out_timeout = 15 node.session.err_timeo.abort_timeout = 15 node.session.err_timeo.lu_reset_timeout = 20 node.session.initial_login_retry_max = 8 node.session.cmds_max = 128 node.session.queue_depth = 32 node.session.xmit_thread_priority = -20 node.session.iscsi.InitialR2T = No node.session.iscsi.ImmediateData = Yes node.session.iscsi.FirstBurstLength = 262144 node.session.iscsi.MaxBurstLength = 16776192 node.conn[0].iscsi.MaxRecvDataSegmentLength = 65535 discovery.sendtargets.iscsi.MaxRecvDataSegmentLength = 32768 node.conn[0].iscsi.HeaderDigest = None node.conn[0].iscsi.DataDigest = None node.session.iscsi.FastAbort = Yes -- no debconf information ------------------------------------------------------------------------------ De informatie opgenomen in dit bericht kan vertrouwelijk zijn en is uitsluitend bestemd voor de geadresseerde. Indien u dit bericht onterecht ontvangt, wordt u verzocht de inhoud niet te gebruiken en de afzender direct te informeren door het bericht te retourneren. Het Universitair Medisch Centrum Utrecht is een publiekrechtelijke rechtspersoon in de zin van de W.H.W. (Wet Hoger Onderwijs en Wetenschappelijk Onderzoek) en staat geregistreerd bij de Kamer van Koophandel voor Midden-Nederland onder nr. 30244197. Denk s.v.p aan het milieu voor u deze e-mail afdrukt. ------------------------------------------------------------------------------ This message may contain confidential information and is intended exclusively for the addressee. If you receive this message unintentionally, please do not use the contents but notify the sender immediately by return e-mail. University Medical Center Utrecht is a legal person by public law and is registered at the Chamber of Commerce for Midden-Nederland under no. 30244197. Please consider the environment before printing this e-mail.
--- End Message ---
--- Begin Message ---Source: open-iscsi Source-Version: 2.0.873+git0.3b4b4500-1 We believe that the bug you reported is fixed in the latest version of open-iscsi, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [email protected], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Ritesh Raj Sarraf <[email protected]> (supplier of updated open-iscsi package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [email protected]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Tue, 05 Nov 2013 21:45:47 +0530 Source: open-iscsi Binary: open-iscsi open-iscsi-udeb Architecture: source amd64 Version: 2.0.873+git0.3b4b4500-1 Distribution: unstable Urgency: low Maintainer: Debian iSCSI Maintainers <[email protected]> Changed-By: Ritesh Raj Sarraf <[email protected]> Description: open-iscsi - High performance, transport independent iSCSI implementation open-iscsi-udeb - Configure iSCSI (udeb) Closes: 691732 693558 693559 700762 722562 Changes: open-iscsi (2.0.873+git0.3b4b4500-1) unstable; urgency=low . * [53a1224] Fix typo in README. Thanks to Jim Paris (Closes: #693559) * [1fcfdb8] Imported Upstream version 2.0.873+git0.3b4b4500 (Closes: #722562) * [2280fc1] Refresh Patches * [ca1c9b9] Enable standard hardening knobs * [d73fe1e] Drop patch -03_hardened-build-flags.patch * [4599ae0] Update Vcs links * [728c154] Try harder to determine an iSCSI block device. Thanks to Dennis Leeuw, Philip Freeman (Closes: #691732) * [1b68764] Call udev to settle so that network device is available. Thanks to Jim Paris (Closes: #693558) * [2478ad6] Don't allow iscsid to get killed during shutodown. Thanks to Wakko Warner (Closes: #700762) Checksums-Sha1: 5b28de7077a2709ee8203ea448fd7d067ee97053 2281 open-iscsi_2.0.873+git0.3b4b4500-1.dsc fd01000788c4a46634870ac428632a3955877b99 1213771 open-iscsi_2.0.873+git0.3b4b4500.orig.tar.gz a57bc6370fd09531ec45e5920c5454f89131181b 17351 open-iscsi_2.0.873+git0.3b4b4500-1.debian.tar.gz 188bb1f95974bbd2e7b3b25b911396af9f9907ad 293430 open-iscsi_2.0.873+git0.3b4b4500-1_amd64.deb ddf9eb18a0c1ce332a68b82d45b08898df7c716d 254076 open-iscsi-udeb_2.0.873+git0.3b4b4500-1_amd64.udeb Checksums-Sha256: 179615e39b3db94f791cedf398bb624d8f3adb64c42e527be806f954e31bbcdb 2281 open-iscsi_2.0.873+git0.3b4b4500-1.dsc cccb16b4302bc1a28edc0ad58dd7a9246391fc9b57e9b4010f39ab2fe4b0a5e1 1213771 open-iscsi_2.0.873+git0.3b4b4500.orig.tar.gz 160c46ddd3977f6a62e9b31d3466d601f19810becd4e9d6fff7491170aaa6339 17351 open-iscsi_2.0.873+git0.3b4b4500-1.debian.tar.gz 4495c4bdae1316c4c40b905c2382524b83de2c9d880babbac1423188cc71575e 293430 open-iscsi_2.0.873+git0.3b4b4500-1_amd64.deb f92700be29fb3e4fc264c85794530fd4af36ba88af2d82248e6882366f7ecec7 254076 open-iscsi-udeb_2.0.873+git0.3b4b4500-1_amd64.udeb Files: 63034f31c02ae8bca06eabc1ebea9916 2281 net optional open-iscsi_2.0.873+git0.3b4b4500-1.dsc b97bb29dd4ef7942dab5f9c14790a7ae 1213771 net optional open-iscsi_2.0.873+git0.3b4b4500.orig.tar.gz ef08c554f1655d82f7d76446df71f54f 17351 net optional open-iscsi_2.0.873+git0.3b4b4500-1.debian.tar.gz 80ebb5d6c6209ba7cd5d92b0287c2ad0 293430 net optional open-iscsi_2.0.873+git0.3b4b4500-1_amd64.deb 54d73740ea4719edfe999140a2e87cf0 254076 debian-installer optional open-iscsi-udeb_2.0.873+git0.3b4b4500-1_amd64.udeb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (GNU/Linux) iQIcBAEBCgAGBQJSeRpmAAoJEKY6WKPy4XVpc+kQAJ2g+UGKOyBpYIeWBoyseXzn 4KzzuiMUGMbJk8JoTbVB9JBNdl0ajJOSHj+r/U5o0p3rUsqG4VgycP1RZvjafVBm GeWXZnsJ6qdLuFNykcHDbwZOM9qYKEI2h5IZQ1n7ARdQwIPa3r7Xg+zpbIIhEfUq CJRhZwia2WyTPPlPEBpgmKzdel0geQTVpC8uVE6T41sLzIsIjl1iBv8EPoHEoHkj 53bX1EMqNdEAHHzP2moTBbt1Z3ubG6Z+XPvsB9owTAb6t/itNgSOSqdqw6XJlJgI 81qshcvSsAPPzpD5ij/ey71IY74aVAkErkKMq++1Itzu3FGb6OhdReFcgQIC/g0x bmfxiJJfcVXnUVqf3txTNKIdMRSXXafmwzSsIte8+YKkGxQag8cxrw62OYJvLwNA cWWshAHW11wFdGwJt0zMcNm1PKpnEiVUYSMkiBzGLu3AkPVWuetxwrSHgKX+TGq8 3NeBM2fvqv1MD979PdEKzzLAqkHnS6Ke+dnh3Hx87tLgRMHEJeP75k+XBAUWLRUI bQ/IJq8HUKpd1bQxlScR/LR6Cl2Wqo0uMXLRluxIargKXf66YdzqbAbs3ld7yR8M P9lgMln8lPycuelEe2YqjUFGyQVdqwzva1kUdn/TKevuai8eJllwxzTYagI32ccV uAKpmje6ETLwSaTF/1zE =b4vA -----END PGP SIGNATURE-----
--- End Message ---

