#!/bin/bash

# This script disables Starter bundle display
UPDATE=`psql -U usgmtr  -c "update \"ProductInBundle\" set \"bundleId\"=7 where \"bundleId\"=6 and \"productId\"=3;"`
if [[ "$UPDATE" != *"UPDATE"* ]]
then
    echo "Failed to disable Starter Bundle."
else
    echo "Successfully disabled Starter Bundle."
fi