mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-05 03:29:33 +01:00
compiler_vm: add-serials now uses HEREDOC for templating
This commit is contained in:
parent
e217fb15d5
commit
563dc8c70a
@ -4,12 +4,23 @@ DOMAIN="${PBOTVM_DOMAIN:-pbot-vm}"
|
||||
SERIAL="${PBOTVM_SERIAL:-5555}"
|
||||
HEART="${PBOTVM_HEART:-5556}"
|
||||
|
||||
install_serial() {
|
||||
file=$1 port=$2
|
||||
sed -i.1 "s/[\$]PORT[\$]/$port/" $file
|
||||
virsh attach-device --config $DOMAIN $file
|
||||
mv $file.1 $file
|
||||
}
|
||||
cat > serial-2.xml <<EOF
|
||||
<serial type='tcp'>
|
||||
<source mode='bind' host='127.0.0.1' service='$SERIAL' tls='no'/>
|
||||
<protocol type='raw'/>
|
||||
<target port='2'/>
|
||||
</serial>
|
||||
EOF
|
||||
|
||||
install_serial serial-2.xml $SERIAL
|
||||
install_serial serial-3.xml $HEART
|
||||
cat > serial-3.xml <<EOF
|
||||
<serial type='tcp'>
|
||||
<source mode='bind' host='127.0.0.1' service='$HEART' tls='no'/>
|
||||
<protocol type='raw'/>
|
||||
<target port='3'/>
|
||||
</serial>
|
||||
EOF
|
||||
|
||||
virsh attach-device --config $DOMAIN serial-2.xml
|
||||
virsh attach-device --config $DOMAIN serial-3.xml
|
||||
|
||||
rm serial-[23].xml
|
||||
|
@ -1,5 +0,0 @@
|
||||
<serial type='tcp'>
|
||||
<source mode='bind' host='127.0.0.1' service='$PORT$' tls='no'/>
|
||||
<protocol type='raw'/>
|
||||
<target port='2'/>
|
||||
</serial>
|
@ -1,5 +0,0 @@
|
||||
<serial type='tcp'>
|
||||
<source mode='bind' host='127.0.0.1' service='$PORT$' tls='no'/>
|
||||
<protocol type='raw'/>
|
||||
<target port='3'/>
|
||||
</serial>
|
Loading…
Reference in New Issue
Block a user