Revert the tailscale/breakglass fork and its access-control flags;
not ready to ship yet.
This reverts commit 1d82c1b3d.
Updates #1866
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
20 lines
549 B
Go
20 lines
549 B
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build for_go_mod_tidy_only
|
|
|
|
package gokrazydeps
|
|
|
|
import (
|
|
_ "github.com/bradfitz/qemu-guest-kragent"
|
|
_ "github.com/gokrazy/breakglass"
|
|
_ "github.com/gokrazy/gokrazy/cmd/dhcp"
|
|
_ "github.com/gokrazy/gokrazy/cmd/ntp"
|
|
_ "github.com/gokrazy/gokrazy/cmd/randomd"
|
|
_ "github.com/gokrazy/kernel.amd64"
|
|
_ "github.com/gokrazy/serial-busybox"
|
|
_ "github.com/tailscale/ts-gokrazy/gokrazyinit"
|
|
_ "tailscale.com/cmd/tailscale"
|
|
_ "tailscale.com/cmd/tailscaled"
|
|
)
|