#!/bin/ksh93 -x # # Script to publish a single WOS package to a local repository. # # Bug number in Bugzilla that handled the change to this unbundled package. BUGNO=12999 # Build number to publish the package at. BUILDNO=126 export ARCH=`uname -p` if [[ ${ARCH} == "sparc" ]]; then platform="s" else platform="x" fi export ROOT=/export/home/richb/pkg/bugs/${BUGNO}/gate/proto/root_${ARCH} export PYTHONPATH=${ROOT}/usr/lib/python2.6/vendor-packages export REPO=http://localhost:${BUGNO}/ export NONWOS_PKGS="/net/paradise/export/integrate_dock/nv/nv_osol1002_126/${ARCH} /net/paradise/export/integrate_dock/nv/nv_osol1002_126/all" export WOS_PKGS=/net/netinstall.sfbay/export/nv/${platform}/${BUILDNO}/Solaris_11/Product/ export JUST_THESE_PKGS="SUNWiscsi" (cd src/util/distro-import ; \ make -e clobber ; \ make -e ${BUILDNO}/redist_import ) > errs.import 2>&1 &