mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-13 07:29:32 +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
28 lines
648 B
Perl
Executable File
28 lines
648 B
Perl
Executable File
#!/usr/bin/env perl
|
|
|
|
# SPDX-FileCopyrightText: 2021-2024 Pragmatic Software <pragma78@gmail.com>
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
use warnings;
|
|
use strict;
|
|
|
|
package Languages::zsh;
|
|
use parent 'Languages::_default';
|
|
|
|
sub initialize {
|
|
my ($self, %conf) = @_;
|
|
|
|
$self->{sourcefile} = 'prog.zsh';
|
|
$self->{execfile} = 'prog.zsh';
|
|
$self->{default_options} = '';
|
|
$self->{cmdline} = 'zsh $options $sourcefile';
|
|
|
|
$self->{cmdline_opening_comment} = ": <<'CMDLINE'\n";
|
|
$self->{cmdline_closing_comment} = "CMDLINE\n";
|
|
|
|
$self->{output_opening_comment} = ": << 'OUTPUT'\n";
|
|
$self->{output_closing_comment} = "OUTPUT\n";
|
|
}
|
|
|
|
1;
|