0.01
No commit activity in last 3 years
No release in over 3 years
It provides an easy way to interact with a RedHat Satellite API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.10.0
~> 3.8
~> 2.5.0
 Project Readme

rhn_satellite¶ ↑

<img src=“https://api.travis-ci.org/duritong/ruby-rhn_satellite.png” />

RhnSatellite is a ruby api to the RedHat Satellite

It provides an easy way to interact with a RedHat Satellite API. Mainly the XMLRPC calls are wrapped with a few methods, so that talking to the API from ruby is much easier.

It is far from complete, but most methods that have been added have been tested and used in real environments with the latest satellite. The existing methods should get you an idea how to add missing methods.

Patches (including tests) are welcomed!

RedHat’s API is documented here: docs.redhat.com/docs/en-US/Red_Hat_Network_Satellite/5.4.1/html/API_Overview/index.html

Credentials¶ ↑

By default rhn_satellite will look for a yaml containing credentials in ‘~/.satellite.yaml` or in `/etc/satellite.yaml` . This file should contain the following options:

hostname: satellite.example.com
username: foobar
password: foobar
https:    true

However, you can always set later your own credentials for the whole API:

RhnSatellite::Connection::Handler.default_hostname = 'satellite2.example.com'
RhnSatellite::Connection::Handler.default_username = 'testuser'
RhnSatellite::Connection::Handler.default_password = 'testpwd'

Or different ones on subparts of the api:

RhnSatellite::Channel.hostname = 'satellite.example.com'
RhnSatellite::Channel.username = 'channel'
RhnSatellite::Channel.password = 'channel'

Examples¶ ↑

A few examples should give an idea how things should work:

Get a system¶ ↑

Fetch a system from the satellite.

satellite_system = RhnSatellite::System.get('somenode.example.com')

clone channel¶ ↑

Clone a new channel.

RhnSatellite::ChannelSoftware.clone(
  'original_label',
  'new_label',
  'new_label,
  "Some clone of original_label",
  false
)

Schedule update of all updateable packages¶ ↑

This will get all packages that can be upgraded for a system and will schedule the immediate upgrade of these packages.

satellite_system = RhnSatellite::System.get('somenode.example.com')
packages_to_update = RhnSatellite::System.latest_upgradable_packages(satellite_system['id']).inject({}) { |res,p|
  # sometimes the satellite lists some weird packages, so we check if they actually exist.
  key = "#{p['name']}-#{p['version']}-#{p['release']}.#{p['arch']}"
  res[key] = p['to_package_id'] if RhnSatellite::Packages.exists?(p['to_package_id'])
  res
}.values.compact
if packages_to_update.size > 0
  now = Time.now
  patch_time = XMLRPC::DateTime.new(now.year,now.month,now.day,now.hour,now.min, now.sec)
  RhnSatellite::System.schedule_package_install(satellite_system['id'],packages_to_update,patch_time)
end

Contributing to rhn_satellite¶ ↑

  • Check out the latest master to make sure the feature hasn’t been implemented or the bug hasn’t been fixed yet

  • Check out the issue tracker to make sure someone already hasn’t requested it and/or contributed it

  • Fork the project

  • Start a feature/bugfix branch

  • Commit and push until you are happy with your contribution

  • Make sure to add tests for it. This is important so I don’t break it in a future version unintentionally.

  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

Copyright © 2011 duritong. See LICENSE.txt for further details.