File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -14,17 +14,20 @@ def rstudio_base_scripts(r_version):
14
14
shiny_proxy_version = "1.1"
15
15
shiny_sha256sum = "80f1e48f6c824be7ef9c843bb7911d4981ac7e8a963e0eff823936a8b28476ee"
16
16
17
-
18
17
# RStudio server has different builds based on wether OpenSSL 3 or 1.1 is available in the base
19
18
# image. 3 is present Jammy+, 1.1 until then. Instead of hardcoding URLs based on distro, we actually
20
19
# check for the dependency itself directly in the code below. You can find these URLs in
21
20
# https://posit.co/download/rstudio-server/, toggling between Ubuntu 22 (for openssl3) vs earlier versions (openssl 1.1)
22
21
# you may forget about openssl, but openssl never forgets you.
23
- rstudio_openssl3_url = 'https://download2.rstudio.org/server/jammy/amd64/rstudio-server-2022.12.0-353-amd64.deb'
24
- rstudio_openssl3_sha256sum = 'a5aa2202786f9017a6de368a410488ea2e4fc6c739f78998977af214df0d6288'
22
+ rstudio_openssl3_url = "https://download2.rstudio.org/server/jammy/amd64/rstudio-server-2022.12.0-353-amd64.deb"
23
+ rstudio_openssl3_sha256sum = (
24
+ "a5aa2202786f9017a6de368a410488ea2e4fc6c739f78998977af214df0d6288"
25
+ )
25
26
26
- rstudio_openssl1_url = 'https://download2.rstudio.org/server/bionic/amd64/rstudio-server-2022.12.0-353-amd64.deb'
27
- rstudio_openssl1_sha256sum = 'bb88e37328c304881e60d6205d7dac145525a5c2aaaf9da26f1cb625b7d47e6e'
27
+ rstudio_openssl1_url = "https://download2.rstudio.org/server/bionic/amd64/rstudio-server-2022.12.0-353-amd64.deb"
28
+ rstudio_openssl1_sha256sum = (
29
+ "bb88e37328c304881e60d6205d7dac145525a5c2aaaf9da26f1cb625b7d47e6e"
30
+ )
28
31
rsession_proxy_version = "2.0.1"
29
32
30
33
return [
You can’t perform that action at this time.
0 commit comments