File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 30
30
},
31
31
"tailscale_operator" : {
32
32
"image" : " ubuntu:latest" ,
33
+ "containerEnv" : {
34
+ "TS_AUTH_KEY" : " test-auth-key"
35
+ },
33
36
"features" : {
34
37
"tailscale" : {
35
38
"operator" : " $USER"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ # Copyright (c) 2025 Tailscale Inc & AUTHORS All rights reserved.
3
+ # Use of this source code is governed by a BSD-style
4
+ # license that can be found in the LICENSE file.
5
+
6
+ set -e
7
+
8
+ source dev-container-features-test-lib
9
+
10
+ tailscale debug prefs | grep -q OperatorUser
11
+
12
+ check " tailscale operator is set" bash -c ' tailscale debug prefs | grep -q OperatorUser'
13
+
14
+ reportResults
Original file line number Diff line number Diff line change @@ -13,4 +13,6 @@ if [[ -n "$VERSION" ]]; then
13
13
check " version is correct" bash -c " tailscale version --daemon | grep -q $VERSION "
14
14
fi
15
15
16
- reportResults
16
+ check " tailscale operator is not set" bash -c ' ! ( tailscale debug prefs | grep -q OperatorUser )'
17
+
18
+ reportResults
You can’t perform that action at this time.
0 commit comments