From 9fc4d56a2e899cd9ede2cd6460c376ff3fd42314 Mon Sep 17 00:00:00 2001 From: Cameron Miller Date: Fri, 3 Dec 2021 12:27:46 +0000 Subject: [PATCH] Update README.org --- README.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.org b/README.org index 997d055..35eb42d 100644 --- a/README.org +++ b/README.org @@ -152,13 +152,14 @@ welcome || err "User choose to exit." #+end_src * Adding the CBSH Repos to your system. +Right now nothing is signed as i'm still testing stuff between my work PC and home PC and dealing with two seperate gpg keys is a pain so for now everything is unsigned, once everything is working properly i will be signing everything. #+begin_src bash addrepos() { \ echo "####################################################" echo "## Adding the CBSH repository to /etc/pacman.conf ##" echo "####################################################" grep -qxF "[cbsh-arch-repo]" /etc/pacman.conf || - (echo "[cbsh-arch-repo]"; echo "SigLevel = Required DatabaseOptional"; \ + (echo "[cbsh-arch-repo]"; echo "SigLevel = Optional DatabaseOptional"; \ echo "Server = https://gitlab.com/cabooshyy/\$repo/-/raw/main/\$arch") | sudo tee -a /etc/pacman.conf } addrepos || err "Error adding the Repo to /etc/pacman.conf."