Severity: 8192
Message: Function create_function() is deprecated
Filename: geshi/geshi.php
Line Number: 4698
Backtrace:
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4698
Function: _error_handler
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4621
Function: _optimize_regexp_list_tokens_to_string
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 1655
Function: optimize_regexp_list
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2029
Function: optimize_keyword_group
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2168
Function: build_parse_cache
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/Process.php
Line: 45
Function: parse_code
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/models/Pastes.php
Line: 517
Function: syntax
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/controllers/Main.php
Line: 693
Function: getPaste
File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/index.php
Line: 315
Function: require_once
#!/bin/bash USERID='vm' die() { echo $1; exit 1; } addr=`echo $1 | grep -Eo '([0-9]{1,3}\.){3}[0-9]{1,3}'` block="/dev/zvol/elmer/${1}" vncnum=`echo $addr | grep -Eo '[0-9]+$'` [ ! -e $block ] && die "No such device $1"; [ "$addr" == "" ] && die "can't parse ip address from $1"; mac=`echo $addr | tr '.' ' ' | awk '{printf("02:00:%.2x:%.2x:%.2x:%.2x",$1,$2,$3,$4)}'` iface=`tunctl -b -u $USERID` ip link set dev $iface up ip addr add 192.168.0.1/24 dev $iface ip route add $addr dev $iface # We need a way to flush these after... #iptables -A FORWARD -i $iface --src $addr -j ACCEPT #iptables -A FORWARD -i $iface -j DROP #iptables -A INPUT -i $iface --src $addr -j ACCEPT #iptables -A INPUT -i $iface -j DROP # start kvm with our parameters echo "Bringing up vm $block on $iface with mac address $mac and vnc number :$vncnum" echo 'needed to prevent 100% cpu' | \ qemu-system-x86_64 \ -cpu Opteron_G3 \ -enable-kvm \ -runas ${USERID} \ -drive file=$block,index=0,media=disk,if=virtio \ -m 2048 \ -netdev type=tap,id=net0,script=,ifname=${iface} \ -device virtio-net-pci,netdev=net0,mac=${mac} \ -smp 6 \ -nographic \ -vnc :$vncnum # qemu has stopped - no longer using tap interface tunctl -d $iface &> /dev/null