We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03b6da4 commit 6032baaCopy full SHA for 6032baa
usr/bin/calamares-biglinux
@@ -244,12 +244,17 @@ passwordRequirements:
244
nonempty: true" > /etc/calamares/modules/users.conf
245
246
247
+# Clean postcfg
248
echo '---
-keyrings:
249
- - archlinux
250
- - manjaro
251
- - biglinux' > /etc/calamares/modules/postcfg.conf
252
-
+keyrings:' > /etc/calamares/modules/postcfg.conf
+
+# Add all keys except puring and trustdb in postcfg
+cd /usr/share/pacman/keyrings
253
+for keyfile in $(ls -1 *.gpg | grep -v -e pubring.gpg -e trustdb.gpg); do
254
+ echo " - ${keyfile%%.gpg}" >> /etc/calamares/modules/postcfg.conf
255
+done
256
+cd -
257
258
259
#sed -i 's|initialSwapChoice: none|initialSwapChoice: small|g' /etc/calamares/modules/partition.conf
260
0 commit comments