On Mon, 01.07.13 12:14, abhishek sharma ([email protected]) wrote:
> Hi All, > > I am trying to use the systemd dbus methods and signals in my program. I am > using d-feet for analysis. However I need some information about some of > them > > 1. In the Method SetUnitControlGroup and StartUnit what does the parameter > "mode" mean? SetUnitControlGroup is removed in systemd git. http://lists.freedesktop.org/archives/systemd-devel/2013-June/011521.html SetUnitControlGroup is not documented, for this reason. The mode parameter of StartUnit() is documented here: http://www.freedesktop.org/wiki/Software/systemd/dbus/ > 2. How to simulate the UnitRemoved signal,Is there any Command shall i use > in systemctl? I have written the code for recieving theUnitRemoved Dbus > signal and I want to test the same. This is generated as soon as the unit is garbage collected, which will happen a short while after a unit is stopped and no longer referenced. There is no nice way to force this immediately. > 3.In the ListUnitFiles what is the second parameter along with the service > name? on introspection it says "static", "enabled", "disabled" etc. It's the enablement state of the unit file. It's one of "enabled", "enabled-runtime", "linked", "linked-rutime", "masked", "masked-runtime", "static", "disabled. Lennart -- Lennart Poettering - Red Hat, Inc. _______________________________________________ systemd-devel mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/systemd-devel
