3
0
mirror of https://github.com/pragma-/pbot.git synced 2025-02-16 21:40:46 +01:00

pbot-vm: provision non-interactively

This commit is contained in:
Pragmatic Software 2024-03-30 20:48:45 -07:00
parent 0829265ef8
commit 446857ffbf
No known key found for this signature in database
GPG Key ID: CC916B6E3C84ECCE
2 changed files with 7 additions and 7 deletions

View File

@ -9,15 +9,15 @@
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
# for virt-io socket # for virt-io socket
zypper in socat zypper -n in socat
# for `cc` C language support # for `cc` C language support
zypper in libubsan1 libasan8 gdb gcc-32bit glibc-32bit zypper -n in libubsan1 libasan8 gdb gcc-32bit glibc-32bit clang
# for pbot-vm guest-server support # for pbot-vm guest-server support
zypper in perl-IPC-Run perl-JSON-XS make zypper -n in perl-IPC-Run perl-JSON-XS make
cpan i IPC::Shareable PERL_MM_USE_DEFAULT=1 cpan IPC::Shareable
# for `cc` additional languages # for `cc` additional languages
zypper in ksh zsh tcl lua php8-cli nodejs-common guile bff bc gcc-c++ zypper -n in ksh zsh tcl lua php8-cli nodejs-common guile bff bc gcc-c++
zypper in --no-recommends clisp gcc-go java java-devel zypper -n in --no-recommends clisp gcc-go java java-devel

View File

@ -25,7 +25,7 @@ use PBot::Imports;
# These are set by the /misc/update_version script # These are set by the /misc/update_version script
use constant { use constant {
BUILD_NAME => "PBot", BUILD_NAME => "PBot",
BUILD_REVISION => 4728, BUILD_REVISION => 4729,
BUILD_DATE => "2024-03-30", BUILD_DATE => "2024-03-30",
}; };