Sun Update Connection - Enterprise 1.0 User's Guide

ProcedureTo Delete Multiple Groups

  1. Login as a user with full permissions or as the admin user.

  2. In the Hosts list, hold Shift or Control while selecting groups.

  3. Do one of the following:

    • From the tool bar, click the Delete Group button.

    • Right-click the selection and choose Delete.

    • From the Hosts menu, choose Delete.

  4. In the dialog box that opens, click one of the following:

    • Delete All – Delete all selected groups at the same time.

    • Delete – Delete each selected group one at a time.


Example 4–3 Deleting a Group with the CLI

The Delete Group command in the CLI deletes a given user-defined group and its nested groups. It does not delete hosts and cannot be used to delete default groups. See Delete Group (-dg) Command.


#! /bin/bash 

echo -n “Enter your user name:” 
read user 
echo -n “Enter your password:” 
read password 

echo “The list of existing groups is:” 
uce_cli -lg -u “$user” -p “$password” 
echo -n “Copy the full path and name of the group you want to delete:” 
read delGroup 
uce_cli -dg -g “$delGroup” -u “$user” -p “$password”