diff --git a/scripts/bugzilla-create b/scripts/bugzilla-create index 5d6de3c..c643f39 100755 --- a/scripts/bugzilla-create +++ b/scripts/bugzilla-create @@ -1,6 +1,5 @@ #!/bin/bash -URL="https://apibugzilla.suse.com/xmlrpc.cgi" COMPONENT="Kernel" COMMENT="This is an automated report for a proactive fix, documented below." @@ -176,7 +175,7 @@ if [ ! -e "${DIR}/bugzilla-cli" ]; then exit 1 fi -BUGZILLA="${DIR}/bugzilla-cli --bugzilla ${URL} --ensure-logged-in" +BUGZILLA="${DIR}/bugzilla-cli --ensure-logged-in" cleanup () { rm -rf ${tmpdir} diff --git a/scripts/bugzilla-resolve b/scripts/bugzilla-resolve index 7fd6237..f2d1fd6 100755 --- a/scripts/bugzilla-resolve +++ b/scripts/bugzilla-resolve @@ -1,7 +1,5 @@ #!/bin/bash -URL="https://apibugzilla.suse.com/xmlrpc.cgi" - resolve_one() { ${BUGZILLA} modify -l "Automated update: This patch was committed to the kernel git repository. Closing as FIXED." -k FIXED $1 } @@ -12,7 +10,7 @@ if [ ! -e "${DIR}/bugzilla-cli" ]; then exit 1 fi -BUGZILLA="${DIR}/bugzilla-cli --bugzilla ${URL} --ensure-logged-in" +BUGZILLA="${DIR}/bugzilla-cli --ensure-logged-in" if [ "$#" -eq 0 ]; then echo "usage: $(basename $0) [bug ids ...]" >&2