Ubuntu) howto "apt-get install $cmd" ;;
CentOS|RedHat*|Fedora*) howto "yum install $cmd" ;;
SUSE*) howto "yast -i $cmd" ;;
- *) echo -e "\nInstallation instructions for the package $cmd on $dist_id are not known.\nIf you know how to install the required package, please file a bug at\nbugzilla.lustre.org and include your distribution and that the output from:\n\"lsb_release -is\" is: \"$dist_id\"" ;;
+ *) echo -e "\nInstallation instructions for the package $cmd on $dist_id are not known.\nIf you know how to install the required package, please file a bug at\nhttp://bugs.whamcloud.com/ and include your distribution and the output from:\n\"lsb_release -is\" is: \"$dist_id\"" ;;
esac
exit 1
+++ /dev/null
-#!/bin/bash
-# diffatt.sh - generate inspection template for attachment
-if [ -z "$1" ]; then
- cat - 1>&2 <<- USAGE
- usage: $0 [-k] {attachment} [attachment ...]
- -k: keep attachment(s) for editing (delete otherwise)
- attachment is an attachment number or a local patch filename
- USAGE
- exit 1
-fi
-
-export LANG=C
-BUGZILLA=https://bugzilla.lustre.org/attachment.cgi
-TMP=${TMP:-/tmp}
-
-[ "$1" = "-k" ] && KEEP=yes && shift
-
-FILE=$(mktemp -t)
-
-for ATT in $*; do
- DO_KEEP=$KEEP
- if [ -f "$ATT" ]; then
- PATCH=$ATT
- BUG=N
- DO_KEEP=yes
- else
- BUG=$(wget --no-check-certificate -O - \
- $BUGZILLA?id=$ATT\&action=edit 2> /dev/null |
- perl -nle 'print $1 if /Details for Bug (\d+)/' -)
- PATCH=$TMP/att$ATT.patch
- wget --no-check-certificate -O $PATCH \
- $BUGZILLA?id=$ATT 2> /dev/null
- fi
-
- grep "not authorized" $PATCH && continue
-
- diffstat $PATCH | tee $FILE
- LOC=$(awk '/insertion/ { print $4 }' $FILE)
- [ -z "$LOC" ] && LOC=$(awk '/deletion/ { print $4 }' $FILE)
-
- # if it isn't a patch, just count all of the lines
- [ -z "$LOC" ] && $(grep -q "0 files changed" $FILE) &&
- LOC=$(cat $PATCH | wc -l)
-
- tee -a $PATCH <<- EOF
- Inspection Type: CODE
- Defect Count: N
- Size: $LOC LOC
- Developer: @sun.com
- Inspector: $USER@sun.com
- Inspection duration: N min
- Bug: $BUG
- Date: $(date +%Y-%m-%d)
- EOF
-
- [ "$DO_KEEP" = "yes" ] || rm $PATCH
-done
-AC_INIT([Lustre], [LUSTRE_VERSION], [https://bugzilla.lustre.org/], [lustre])
+AC_INIT([Lustre], [LUSTRE_VERSION], [http://bugs.whamcloud.com/], [lustre])
sinclude(lustre/autoconf/lustre-version.ac)
# Overridden in LB_PATH_LDISKFS on certain branches
# this only needs to be done if disting stand-alone (i.e. not as a
# subdir of lustre
module-dist-hook:
- if ! grep "AC_INIT(\[Lustre\], \[LUSTRE_VERSION\], \[https:\/\/bugzilla\.lustre\.org\/], \[lustre\])" ../configure.ac; then \
+ if ! grep "AC_INIT(\[Lustre\], \[LUSTRE_VERSION\], \[http:\/\/bugs\.whamcloud\.com\/], \[lustre\])" ../configure.ac; then \
if [ -f META ]; then \
cp META $(distdir)/META; \
else \
- echo -e "I have no idea how to create a META file in $(distdir).\nPlease file a bug at http://bugzilla.lustre.org/"; \
+ echo -e "I have no idea how to create a META file in $(distdir).\nPlease file a bug at http://bugs.whamcloud.com/"; \
exit 1; \
fi; \
fi
# Process this file with autoconf to produce a configure script.
-AC_INIT([Lustre ldiskfs], 3.1.50, [https://bugzilla.lustre.org/])
+AC_INIT([Lustre ldiskfs], 3.1.50, [http://bugs.whamcloud.com/])
AC_CONFIG_SRCDIR([lustre-ldiskfs.spec.in])
ldiskfs_is_ext4=yes
-To report bugs, please visit https://bugzilla.lustre.org/
+To report bugs, please visit http://bugs.whamcloud.com/
cpu_to_le32(EXT3_EXTENTS_FL | EXT3_INDEX_FL))) {
CWARN("extent-mapped directory found with "
"ext3-based ldiskfs - contact "
- "http://bugzilla.lustre.org/\n");
+ "http://bugs.whamcloud.com/\n");
warned = 1;
}
}
#ifdef CRAY_XT3
printk(KERN_INFO "Lustre: Build Version: "BUILD_VERSION"\n");
#else
- LCONSOLE_INFO("OBD class driver, http://www.lustre.org/\n");
+ LCONSOLE_INFO("OBD class driver, http://wiki.whamcloud.com/\n");
LCONSOLE_INFO(" Lustre Version: "LUSTRE_VERSION_STRING"\n");
LCONSOLE_INFO(" Build Version: "BUILD_VERSION"\n");
#endif
struct lprocfs_static_vars lvars;
int rc;
- printk(KERN_INFO "Lustre: Filtering OBD driver; http://www.lustre.org/\n");
+ printk(KERN_INFO "Lustre: Filtering OBD driver; http://wiki.whamcloud.com/\n");
lprocfs_filter_init_vars(&lvars);
LCONSOLE_ERROR("bio->bi_private is NULL! This should never "
"happen. Normally, I would crash here, but instead I "
"will dump the bio contents to the console. Please "
- "report this to <http://bugzilla.lustre.org/> , along "
+ "report this to <http://bugs.whamcloud.com/> , along "
"with any interesting messages leading up to this point "
"(like SCSI errors, perhaps). Because bi_private is "
"NULL, I can't wake up the thread that initiated this "
if (server_cksum == ~0 && rc > 0) {
CERROR("Protocol error: server %s set the 'checksum' "
"bit, but didn't send a checksum. Not fatal, "
- "but please notify on http://bugzilla.lustre.org/\n",
+ "but please notify on http://bugs.whamcloud.com/\n",
libcfs_nid2str(peer->nid));
} else if (server_cksum != client_cksum) {
LCONSOLE_ERROR_MSG(0x133, "%s: BAD READ CHECKSUM: from "
E2FSPROGS, feature);
#if !(HAVE_LDISKFSPROGS)
fprintf(stderr, "Please install the latest version of e2fsprogs from\n"
- "http://downloads.lustre.org/public/tools/e2fsprogs/\n"
+ "http://downloads.whamcloud.com/public/e2fsprogs/latest/\n"
"to enable this feature.\n");
#endif
if (make_backfs)
ret = EINVAL;
goto out;
}
- }
+
if (mountopts) {
trim_mountfsoptions(mountopts);