major overhaul initiated

This commit is contained in:
afeiszli
2021-05-25 12:48:04 -04:00
parent 82d430d09e
commit 78ae219b03
37 changed files with 2971 additions and 1754 deletions

View File

@@ -0,0 +1,21 @@
package functions
import (
"github.com/gravitl/netmaker/netclient/config"
"github.com/gravitl/netmaker/netclient/local"
)
func Install(cfg config.ClientConfig) error {
var err error
err = local.ConfigureSystemD(cfg.Network)
return err
}
func getOS() (config.ClientConfig, error) {
var cfg config.ClientConfig
return cfg, nil
}