No commit activity in last 3 years
No release in over 3 years
Ruby bindings for systemd via DBUS api calls
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

= 0.11.0
 Project Readme

ruby-systemd

Provides a basic library to interact with Systemd service units.
Based on the Systemd DBUS API

NOTE: This is not feature complete. Progress can be tracked via issues.

Install

gem install systemd-bindings

Example Usage of library

systemd = Systemd::SystemdManager::new

#List all units
systemd.units.each do |a|
  puts a.name
end

#Retrive a specific unit and get it's human readable name
puts systemd.get_unit("cups.service").human_name