diff options
author | davidovski <david@davidovski.xyz> | 2022-01-02 18:29:01 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-02 18:29:01 +0000 |
commit | 15924240bee27f17a65e77dd56cdfb91404bc9b1 (patch) | |
tree | 6214c395c9d6ad8a8a2db70b0723fc8b59e02681 /install-system.sh | |
parent | 313d7d23237c142a833e4f0e05593f50f8805b3e (diff) |
removed auto-importing keys
Diffstat (limited to 'install-system.sh')
-rwxr-xr-x | install-system.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/install-system.sh b/install-system.sh index 5eda255..aef3b72 100755 --- a/install-system.sh +++ b/install-system.sh @@ -3,6 +3,8 @@ # This is just a temporary install script that will install xilinux into a folder # recommended to run with root +KEY="davidovski https://xi.davidovski.xyz/repo/xi.pub" + R=$1 mkdir -p $R @@ -29,6 +31,7 @@ xi sync xi -nyl --root . install $(ls /var/lib/xipkg/packages/core) xi -nyl --root . install xipkg +xi -nyl --root . keyimport $KEY cd bin ln -s bash sh @@ -47,3 +50,4 @@ cat > $R/etc/resolv.conf << "EOF" nameserver 80.80.80.80 nameserver 80.80.81.81 EOF + |