mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-29 13:05:46 +00:00
4f7d60ad42
Tangentially related to #987, #177, #594, #925, #505 Motivated by rebooting a launchd-controlled tailscaled and it going into SetNetworkUp(false) mode immediately because there really is no network up at system boot, but then it got stuck in that paused state forever, without a monitor implementation.
12 lines
352 B
Go
12 lines
352 B
Go
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build !linux,!freebsd,!windows,!darwin android darwin,redo
|
|
|
|
package monitor
|
|
|
|
import "tailscale.com/types/logger"
|
|
|
|
func newOSMon(logger.Logf) (osMon, error) { return nil, nil }
|