mirror of
https://github.com/openoms/joininbox.git
synced 2026-08-16 13:00:51 +02:00
* contain verification in the build script * build with the latest commit * build with ubuntu-22.04 * fix bootstrap.sh path
11 lines
354 B
Bash
11 lines
354 B
Bash
#!/bin/sh -eux
|
|
|
|
echo 'Download the build_joininbox.sh script ...'
|
|
wget https://raw.githubusercontent.com/${github_user}/joininbox/${branch}/build_joininbox.sh
|
|
|
|
echo 'Build Joininbox ...'
|
|
sudo bash build_joininbox.sh "${github_user}" "${branch}" "commit"
|
|
|
|
echo 'Delete SSH keys (will be recreated on the first boot)'
|
|
sudo rm /etc/ssh/ssh_host_*
|
|
echo 'OK'
|