Sun Update Connection - Enterprise 1.0 User's Guide

To Mark Local Software as a Security Fix

In the Add Software window, select Upload as: Security Fix.

If you are using a console on Windows, use the CLI command.

Marking as a Fix in CLI

Execute the CLI -asp command with the -secure option. See Add Software Package (-asp) Command.


#! /bin/bash 

echo -n “Enter your user name:” 
read user 
echo -n “Enter your password:” 
read password 
echo “The list of active distributions is:” 
uce_cli -ld -u $user -p $password 
echo -n “Type the exact name of the distribution for this software:” 
read distro 
echo -n “Type the source path name of the file:” 
read pathname 
echo -n “Is this software a secured version of a previous one? (y | n)” 
read secure 
if [ “$secure” = “y” ]; then 
  uce_cli -asp -f “$pathname” -secure -D $distro -u “$user” -p “$password” 
else 
  uce_cli -asp -f “$pathname” -D $distro -u “$user” -p “$password” 
fi

To Handle a Series of Fixes

If you upload a package and mark it as Security Fix, consider earlier versions: