Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion base/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ prepare
sudo systemctl stop unattended-upgrades
sudo -E apt-get --assume-yes purge openssh-server unattended-upgrades

sudo -E apt-get --assume-yes install rsync ssh gcc
sudo -E apt-get --assume-yes install libtpm2-pkcs11-1 rsync ssh

sudo usermod -aG tss "$(whoami)"

cleanup
4 changes: 4 additions & 0 deletions base/ssh_config
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Use tpm2-pkcs11 if a TPM device is present and a store is set up
Match exec "test -e /dev/tpm0 -a -e ~/.tpm2_pkcs11"
PKCS11Provider /usr/lib/x86_64-linux-gnu/pkcs11/libtpm2_pkcs11.so
Comment thread
jluebbe marked this conversation as resolved.

Host ptxdist-cache
Hostname 10.0.2.2
User ptxdist-cache
Expand Down
2 changes: 1 addition & 1 deletion labgrid-client/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sudo cp "${selfdir}/20-cuskci.network" /etc/systemd/network/
sudo -E apt-get install --assume-yes --no-install-recommends \
pipx qemu-system-x86 ovmf swtpm

sudo usermod -aG kvm runner
sudo usermod -aG kvm "$(whoami)"

sudo -E pipx install --global --include-deps \
git+https://github.com/labgrid-project/labgrid
Expand Down