Skip to content

Commit d60e4cc

Browse files
authored
Update autoinstall.yaml
Make sure curl is installed
1 parent 5d68da8 commit d60e4cc

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

autoinstall.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,12 @@ autoinstall:
8686

8787
# Installing 1password-cli
8888
- curtin in-target --target=/target -- bash -c '
89-
curl -sS https://downloads.1password.com/linux/keys/1password.asc |
90-
gpg --dearmor --output /usr/share/keyrings/1password-archive-keyring.gpg &&
91-
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/1password-archive-keyring.gpg] https://downloads.1password.com/linux/debian/amd64 stable main" |
92-
tee /etc/apt/sources.list.d/1password.list &&
93-
apt update &&
94-
apt install -y 1password'
89+
apt update && apt install -y curl ca-certificates gnupg;
90+
curl -fsSL https://downloads.1password.com/linux/keys/1password.asc |
91+
gpg --dearmor --output /usr/share/keyrings/1password-archive-keyring.gpg;
92+
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/1password-archive-keyring.gpg] https://downloads.1password.com/linux/debian/amd64 stable main" |
93+
tee /etc/apt/sources.list.d/1password.list;
94+
apt update && apt install -y 1password'
9595

9696
# Install docker and docker compose plugin
9797
- curtin in-target --target=/target -- bash -c '
@@ -114,4 +114,4 @@ autoinstall:
114114
# Installing Gnome extensions
115115
#- curtin in-target --target=/target -- gnome-extensions enable [email protected]
116116
#- curtin in-target --target=/target -- gnome-extensions enable [email protected]
117-
#- curtin in-target --target=/target -- gnome-extensions enable [email protected]
117+
#- curtin in-target --target=/target -- gnome-extensions enable [email protected]

0 commit comments

Comments
 (0)