How to remove a kickstart distribution on Spacewalk 2.3 / Satellite 5.7
- On Spacewalk or Satellite follow these steps delete kickstart distribution entries from Satellite database:
# spacewalk-sql -i
To get the id of the distribution
rhnschema=# select id,label from rhnKickstartableTree;
To remove the distribution
rhnschema=# delete from rhnKickstartableTree where ID=<kickstart_id>;
Quit from the sql
rhnschema=# \q
Comments
Post a Comment