enable services via cli

This commit is contained in:
2023-06-04 15:44:11 +02:00
parent 30304ec5e6
commit cd6808e62c
2 changed files with 10 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ class ServiceManager {
/**
Add a service to be automatically started.
**/
private function enable(name: String) {
public function enable(name: String) {
if (!this.services.exists(name)){
return; // Service must be started
}