diff options
author | Jesús <heckyel@hyperbola.info> | 2021-03-09 15:30:31 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-03-09 15:30:31 -0500 |
commit | ac4e9d594785f292c2c80375e7686e1c00216a9a (patch) | |
tree | d421965b22c2fd8b274f77cc1920086b0adcb40b | |
parent | dc8eed84f8d43bae410d0cf487ccb5349ce9ffb8 (diff) | |
download | hyperbola-bootstrap-ac4e9d594785f292c2c80375e7686e1c00216a9a.tar.lz hyperbola-bootstrap-ac4e9d594785f292c2c80375e7686e1c00216a9a.tar.xz hyperbola-bootstrap-ac4e9d594785f292c2c80375e7686e1c00216a9a.zip |
[hyper-bootstrap_v0.4.sh]: fix commands
-rwxr-xr-x | hyper-bootstrap_v0.4.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hyper-bootstrap_v0.4.sh b/hyper-bootstrap_v0.4.sh index 1a174b7..f38afb7 100755 --- a/hyper-bootstrap_v0.4.sh +++ b/hyper-bootstrap_v0.4.sh @@ -195,7 +195,8 @@ configure_keyring() { local DEST=$1 sed -i 's|SigLevel = Never|SigLevel = Required DatabaseOptional|' "$DEST/etc/pacman.conf" LC_ALL=C chroot "$DEST" \ - /usr/bin/pacman-key --init && /usr/bin/pacman-key --populate hyperbola --noconfirm --noprogressbar --quiet + /usr/bin/pacman-key --init && /usr/bin/pacman-key --populate hyperbola \ + && /usr/bin/pacman-key --refresh-keys } show_usage() { |