Alvaro Leiva geisse
Alvaro Leiva geisse
but what does "slug" means?
@markhallm i think what its going to be the hardest about porting is the dependency of linux libraries like https://github.com/systemd/casync/blob/master/src/util.h#L20-L23 dont know if those are available under macos
Ultracrepidarian comment here: The character `\x0c` (a.k.a ^L) its used to reset the line count, so the only white spaces it matter are the one after the last \x0c in...
we have no plan to implement signals, because so far, we have not need it, but if you have a use case, and you would like to share it with...
@awarecan cool, so i think you can get that now with pystemd in the current state, i actually do this in `pystemd.run` if you specify the option `wait=True`, what i...
i forgot, but i actually "ported" busctl monitor to pystemd in this example `https://github.com/facebookincubator/pystemd/blob/master/examples/monitor.py` its rudimentary and only use the DBus class, you should probably stick with the example i...
@awarecan yes you have to be root, i dont think you can subscribe to the system event bus with a regular user (but i may be wrong). if your service...
cool, thanks @awarecan i will look at it in the afternoon and see if i can came up with ideas thank you for sharing this!!
hey, so the good news is that it can be done :tada: ... the bad-ish news is that i need to expose `sd_bus_match_signal` (https://github.com/systemd/systemd/blob/master/src/systemd/sd-bus.h#L362 ) from systemd/sd-bus to pystemd... i...
hey @awarecan thanks for the patience... the code has been merged, you can test it... a working example can be found in https://github.com/facebookincubator/pystemd/blob/master/examples/monitor_from_signal.py i test this, and i can see...