14 lines
197 B
TOML
14 lines
197 B
TOML
script = """
|
|
set -exu
|
|
|
|
cat << 'EOF' >> /etc/pacman.conf
|
|
[archzfs]
|
|
Server = https://archzfs.com/$repo/$arch
|
|
EOF
|
|
|
|
pacman-key -r F75D9D76
|
|
pacman-key --lsign-key F75D9D76
|
|
|
|
pacman -Sy archzfs-linux
|
|
"""
|