mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-17 17:39:43 +01:00
17b69f04ff
* replace heartbeat with health-check * instead of steady stream of newlines every 5s, now awaits input and responds with `vmstat` output * more reliably use host/config/vm-exec.json to get libvirt domain name for snapshot-revert, server address, serial ports, vagrant setting, etc * use iptables/nftables to disable networking * added guest/bin/disable-network-[iptables,nftables] * added guest/bin/enable-network-[iptables,nftables] * replace ugly ___OUTPUT___ texts in sh, bash, ksh, zsh languages * documentation updates and tweaks
30 lines
844 B
Bash
Executable File
30 lines
844 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# File: tumbleweed
|
|
#
|
|
# Purpose: Provisioning script to install packages and set-up environment
|
|
# on OpenSUSE Tumbleweed for pbot-vm.
|
|
|
|
# SPDX-FileCopyrightText: 2024 Pragmatic Software <pragma78@gmail.com>
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# for virt-io socket
|
|
zypper -n in socat
|
|
|
|
# for `cc` C language support
|
|
zypper -n in libubsan1 libasan8 gdb gcc gcc-32bit glibc-32bit clang
|
|
|
|
# for `cc` additional languages
|
|
zypper -n in ksh zsh tcl lua php8-cli nodejs-common guile bff bc gcc-c++
|
|
zypper -n in --no-recommends clisp gcc-go java java-devel
|
|
|
|
# for pbot-vm guest-server support
|
|
zypper -n in perl-IPC-Run perl-JSON-XS
|
|
|
|
# disable networking
|
|
./guest/bin/disable-network-nftables
|
|
|
|
echo 'Networking disabled.'
|
|
echo 'To re-enable, run ./guest/bin/enable-networking-nftables'
|
|
echo 'To disable again, run ./guest/bin/disable-network-nftables'
|