Updates readme to reflect implementation

This commit is contained in:
Tai Groot 2021-05-15 20:06:27 -07:00
parent 58970695b4
commit e7bbc166c3
Signed by: taigrr
GPG Key ID: D00C269A87614812

View File

@ -14,19 +14,19 @@ In fact, if `systemctl` isn't found in the `PATH`, this library will panic.
## Supported systemctl functions ## Supported systemctl functions
- [ ] `systemctl daemon-reload` - [x] `systemctl daemon-reload`
- [x] `systemctl disable` - [x] `systemctl disable`
- [x] `systemctl enable` - [x] `systemctl enable`
- [ ] `systemctl is-active` - [x] `systemctl is-active`
- [ ] `systemctl is-enabled` - [x] `systemctl is-enabled`
- [ ] `systemctl is-failed` - [x] `systemctl is-failed`
- [ ] `systemctl mask` - [x] `systemctl mask`
- [ ] `systemctl restart` - [x] `systemctl restart`
- [ ] `systemctl show` - [x] `systemctl show`
- [ ] `systemctl start` - [x] `systemctl start`
- [ ] `systemctl status` - [x] `systemctl status`
- [ ] `systemctl stop` - [x] `systemctl stop`
- [ ] `systemctl unmask` - [x] `systemctl unmask`
## Helper functionality ## Helper functionality
@ -46,7 +46,6 @@ Therefore, blocking calls can time out according to the callee's needs, and the
## TODO ## TODO
- [ ] Add additional bindings for systemctl options I (the author) don't use frequently (or ever) for others to use.
- [ ] Set up `go test` testing - [ ] Set up `go test` testing
## Simple example ## Simple example