kalaksi / lightkeeper

LightkeeperRM (Remote Management) is a lightweight and modular drop-in replacement for maintaining servers over SSH.
GNU General Public License v3.0
122 stars 5 forks source link

Fix invalid module name in the groups.example.yml #7

Closed b1ek closed 1 year ago

b1ek commented 1 year ago

I tried to start it up at my machine, but it gave me out a panic that said Module shell is not found. I checked the modules and found this one, I hope that I didn't mistake it for something else.

Also this PR adds #![forbid(unsafe_code)] to the start of main.rs. It doesn't really have much meaning (other than banning unsafe code (a.k.a. rust memsafe) ), but I am unsure on how to selectively apply commits to a PR here so here's that.

kalaksi commented 1 year ago

Yep, that's the correct one. I just yesterday added linux-shell, but didn't notice I set it wrong in the default configuration. Forbidding unsafe code is also fine by me. Thanks!