RHN_INSTALL_SATELLITE
Arguments:
| Name | Data Type | Default Value | In/Out |
|---|
| COMMAND_INSTANCE_ID | NUMBER(12) | | IN |
| SATELLITE_ID | NUMBER(12) | | IN |
DDL scriptSource
Legend: string keyword reserved word operator
1: procedure
2: rhn_install_satellite
3: (
4: command_instance_id in rhn_command_queue_instances.recid%type,
5: satellite_id in rhn_sat_cluster.recid%type
6: )
7: is
8:
9: begin
10: insert into rhn_command_queue_execs (
11: instance_id,
12: netsaint_id,
13: target_type)
14: values (command_instance_id, satellite_id, 'cluster');
15: end rhn_install_satellite;