subspace 3.0.10 → 3.0.11
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1c77eb9c5ed9af690c41c6976b9ba324d4fe24418821b4c6121067b7c255158
|
4
|
+
data.tar.gz: 01e1baa80b61039274f258d4c26cbc4355ac711745d9b40521f30949f4dd7a6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 066ace825b18a5ad8f2b0d3c1b5a792e3863fa76ca8e9a3dc13bd27d53dbd28b29ee484fcb66f00d450b4439e8e33d57be1998b6810e33fc62b0929c42362c8d
|
7
|
+
data.tar.gz: 21656985d06485065cd6f36b32ed195691ca7f738d40e5254f4dcfc09849a436f00795900dc0a60e8b0f233c0c00fecbdd841f7efe6fd9e11bf0a96efd570015
|
data/CHANGELOG.md
CHANGED
@@ -12,6 +12,10 @@ This project attempts to follow [semantic versioning](https://semver.org/).
|
|
12
12
|
|
13
13
|
## Unreleased
|
14
14
|
|
15
|
+
## 3.0.11
|
16
|
+
* Change tailscale pinning behavior to allow install, and then pin to specific version
|
17
|
+
* Fix psycopg2 break_system_packages to work across ubuntu/python versions
|
18
|
+
|
15
19
|
## 3.0.10
|
16
20
|
* Pin tailscale to known good version
|
17
21
|
|
@@ -50,7 +50,9 @@
|
|
50
50
|
- name: Install psycopg2 (python3)
|
51
51
|
when: is_python3 is succeeded
|
52
52
|
become: yes
|
53
|
-
|
53
|
+
pip:
|
54
|
+
name: psycopg2
|
55
|
+
break_system_packages: true
|
54
56
|
|
55
57
|
- name: Install psycopg2 (python2)
|
56
58
|
when: is_python3 is failed
|
@@ -17,10 +17,10 @@
|
|
17
17
|
- maintenance
|
18
18
|
- tailscale_reauth
|
19
19
|
|
20
|
-
- name: "
|
20
|
+
- name: "Allow tailscale to be installed"
|
21
21
|
dpkg_selections:
|
22
22
|
name: tailscale
|
23
|
-
selection:
|
23
|
+
selection: install
|
24
24
|
tags:
|
25
25
|
- maintenance
|
26
26
|
- tailscale_reauth
|
@@ -35,6 +35,14 @@
|
|
35
35
|
- maintenance
|
36
36
|
- tailscale_reauth
|
37
37
|
|
38
|
+
- name: "Prevent tailscale from being upgraded"
|
39
|
+
dpkg_selections:
|
40
|
+
name: tailscale
|
41
|
+
selection: hold
|
42
|
+
tags:
|
43
|
+
- maintenance
|
44
|
+
- tailscale_reauth
|
45
|
+
|
38
46
|
- name: "Join the tailnet and force reauth"
|
39
47
|
become: true
|
40
48
|
command: tailscale up --ssh --auth-key={{tailscale_auth_key}} --hostname={{project_name | regex_replace('_', '')}}-{{hostname}} --accept-risk=lose-ssh {{tailscale_options}} --force-reauth
|
data/lib/subspace/version.rb
CHANGED