Compare commits

..

No commits in common. "05b59e23d88d42ee30cfd865719161097c650ff3" and "c8853eedea90d02e8b9e1857f7451cf2cfba3d44" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -e;
source="/home/ci/sftp-root/apt-packages";
source="/home/ci/sftp-root/CIAptPackages";
destination="/srv/aptosaurus/sources";
aptosaurus="/srv/aptosaurus/aptosaurus.sh";

View file

@ -29,9 +29,9 @@
<pre><code># Add the repository
echo "deb https://apt.starbeamrainbowlabs.com/ ./ # apt.starbeamrainbowlabs.com" | sudo tee /etc/apt/sources.list.d/sbrl.list
# Import the signing key
wget -q https://apt.starbeamrainbowlabs.com/aptosaurus.asc -O- | sudo tee /etc/apt/trusted.gpg.d/sbrl.asc
wget -q https://apt.starbeamrainbowlabs.com/aptosaurus.asc -O- | sudo apt-key add -
# Alternatively, import the signing key from a keyserver:
sudo apt-key adv --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys D48D801C6A66A5D8
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys D48D801C6A66A5D8
# Update apt's cache
sudo apt update</code></pre>