Files
micromdm/cmd/mdmctl/sign.go
Victor Vrantchan c30f2806cc mdmctl: support generating appmanifest (#199)
generate an appmanifest. validates and optionally signs packages.

For #93
Closes #203
2017-06-02 00:09:13 -04:00

16 lines
384 B
Go

// +build !darwin
package main
import "fmt"
func signPackage(path, outpath, developerID string) error {
fmt.Println("[WARNING] package signing only implemented on macOS")
return nil
}
func checkSignature(pkgpath string) (bool, error) {
fmt.Println("[WARNING] package signing only implemented on macOS. An unsigned macOS package will not install with MDM.")
return true, nil
}