mirror of
https://github.com/Control-D-Inc/ctrld.git
synced 2026-02-03 22:18:39 +00:00
15 lines
304 B
Go
15 lines
304 B
Go
package cli
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/kardianos/service"
|
|
)
|
|
|
|
func setDependencies(svc *service.Config) {
|
|
// TODO(cuonglm): remove once https://github.com/kardianos/service/issues/359 fixed.
|
|
_ = os.MkdirAll("/usr/local/etc/rc.d", 0755)
|
|
}
|
|
|
|
func setWorkingDirectory(svc *service.Config, dir string) {}
|