File tree Expand file tree Collapse file tree 4 files changed +4
-13
lines changed Expand file tree Collapse file tree 4 files changed +4
-13
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ var defaultPackages []string = []string{
35
35
// defaultSnaps is the set of snaps installed for all presets.
36
36
var defaultSnaps map [string ]SnapConfig = map [string ]SnapConfig {
37
37
"charmcraft" : {Channel : "latest/stable" },
38
- "jhack" : {Channel : "latest/stable" , Connections : []string {"jhack:dot-local-share-juju" }},
39
38
"jq" : {Channel : "latest/stable" },
40
39
"yq" : {Channel : "latest/stable" },
41
40
}
@@ -134,6 +133,7 @@ var devPreset *Config = &Config{
134
133
Snaps : MergeMaps (defaultSnaps , map [string ]SnapConfig {
135
134
"rockcraft" : {Channel : "latest/stable" },
136
135
"snapcraft" : {Channel : "latest/stable" },
136
+ "jhack" : {Channel : "latest/stable" , Connections : []string {"jhack:dot-local-share-juju" }},
137
137
}),
138
138
},
139
139
}
Original file line number Diff line number Diff line change @@ -8,13 +8,10 @@ execute: |
8
8
"$SPREAD_PATH"/concierge --trace prepare -p k8s
9
9
10
10
# Check that relevant snaps are installed
11
- for s in juju k8s kubectl jq yq charmcraft rockcraft jhack ; do
11
+ for s in juju k8s kubectl jq yq charmcraft rockcraft; do
12
12
snap list "$s" | MATCH $s
13
13
done
14
14
15
- # Check jhack got it's interface connected
16
- snap connections jhack | MATCH "personal-files jhack:dot-local-share-juju :personal-files manual"
17
-
18
15
# Check the relevant debs are installed
19
16
command -v pip | MATCH /usr/bin/pip
20
17
python3 -m venv -h | head -n1 | grep -q -e "usage: venv"
Original file line number Diff line number Diff line change @@ -8,13 +8,10 @@ execute: |
8
8
"$SPREAD_PATH"/concierge --trace prepare -p machine
9
9
10
10
# Check that relevant snaps are installed
11
- for s in juju lxd jq yq charmcraft snapcraft jhack ; do
11
+ for s in juju lxd jq yq charmcraft snapcraft; do
12
12
snap list "$s" | MATCH $s
13
13
done
14
14
15
- # Check jhack got it's interface connected
16
- snap connections jhack | MATCH "personal-files jhack:dot-local-share-juju :personal-files manual"
17
-
18
15
# Check the relevant debs are installed
19
16
command -v pip | MATCH /usr/bin/pip
20
17
python3 -m venv -h | head -n1 | grep -q -e "usage: venv"
Original file line number Diff line number Diff line change @@ -8,13 +8,10 @@ execute: |
8
8
"$SPREAD_PATH"/concierge --trace prepare -p microk8s
9
9
10
10
# Check that relevant snaps are installed
11
- for s in juju microk8s kubectl jq yq charmcraft rockcraft jhack ; do
11
+ for s in juju microk8s kubectl jq yq charmcraft rockcraft; do
12
12
snap list "$s" | MATCH $s
13
13
done
14
14
15
- # Check jhack got it's interface connected
16
- snap connections jhack | MATCH "personal-files jhack:dot-local-share-juju :personal-files manual"
17
-
18
15
# Check the relevant debs are installed
19
16
command -v pip | MATCH /usr/bin/pip
20
17
python3 -m venv -h | head -n1 | grep -q -e "usage: venv"
You can’t perform that action at this time.
0 commit comments