A PHP Error was encountered

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

Untitled - Stikked
From Whipped Pudu, 11 Years ago, written in Bash.
Embed
  1. #!/bin/bash
  2. USERID='vm'
  3.  
  4. die() {
  5.     echo $1;
  6.     exit 1;
  7. }
  8.  
  9. addr=`echo $1 | grep -Eo '([0-9]{1,3}\.){3}[0-9]{1,3}'`
  10. block="/dev/zvol/elmer/${1}"
  11. vncnum=`echo $addr | grep -Eo '[0-9]+$'`
  12.  
  13. [ ! -e $block ] && die "No such device $1";
  14. [ "$addr" == "" ] && die "can't parse ip address from $1";
  15.  
  16. mac=`echo $addr | tr '.' ' ' | awk '{printf("02:00:%.2x:%.2x:%.2x:%.2x",$1,$2,$3,$4)}'`
  17. iface=`tunctl -b -u $USERID`
  18.  
  19. ip link set dev $iface up
  20. ip addr add 192.168.0.1/24 dev $iface
  21. ip route add $addr dev $iface
  22.  
  23. # We need a way to flush these after...
  24. #iptables -A FORWARD -i $iface --src $addr -j ACCEPT
  25. #iptables -A FORWARD -i $iface -j DROP
  26. #iptables -A INPUT -i $iface --src $addr -j ACCEPT
  27. #iptables -A INPUT -i $iface -j DROP
  28.  
  29. # start kvm with our parameters
  30. echo "Bringing up vm $block on $iface with mac address $mac and vnc number :$vncnum"
  31.  
  32. echo 'needed to prevent 100% cpu' | \
  33. qemu-system-x86_64 \
  34.     -cpu Opteron_G3 \
  35.     -enable-kvm \
  36.     -runas ${USERID} \
  37.     -drive file=$block,index=0,media=disk,if=virtio \
  38.     -m 2048 \
  39.     -netdev type=tap,id=net0,script=,ifname=${iface} \
  40.     -device virtio-net-pci,netdev=net0,mac=${mac} \
  41.     -smp 6 \
  42.     -nographic \
  43.     -vnc :$vncnum
  44.  
  45.  
  46. # qemu has stopped - no longer using tap interface
  47. tunctl -d $iface &> /dev/null