We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cda0a2 commit 8877549Copy full SHA for 8877549
1 file changed
cmd/micromdm/serve.go
@@ -124,6 +124,9 @@ func serve(args []string) error {
124
if !*flTLS && (*flTLSCert != "" || *flTLSKey != "") {
125
return errors.New("cannot set -tls=false and supply -tls-cert or -tls-key")
126
}
127
+ if *flAPNSCertPath != "" || *flAPNSKeyPass != "" || *flAPNSKeyPath != "" {
128
+ stdlog.Println("-apns-cert, -apns-password, and -apns-key switches are deprecated. please transition to `mdmctl mdmcert upload` instead")
129
+ }
130
131
logger := log.NewLogfmtLogger(os.Stderr)
132
stdlog.SetOutput(log.NewStdlibAdapter(logger)) // force structured logs
0 commit comments