Commit 7f0643f9 authored by Ivan Shapovalov's avatar Ivan Shapovalov Committed by Pavel Emelyanov

treewide: specify 'python2' instead of 'python' in shebangs of python scripts

Signed-off-by: 's avatarIvan Shapovalov <intelfx@intelfx.name>
Signed-off-by: 's avatarPavel Emelyanov <xemul@virtuozzo.com>
parent 56d563e9
#!/bin/env python #!/bin/env python2
import pycriu import pycriu
import sys import sys
......
...@@ -20,7 +20,7 @@ for i in `cat /proc/self/mounts | awk '{ print $2 }'`; do ...@@ -20,7 +20,7 @@ for i in `cat /proc/self/mounts | awk '{ print $2 }'`; do
umount -l $i umount -l $i
done done
python mounts.py python2 mounts.py
kill $INMNTNS_PID kill $INMNTNS_PID
while :; do while :; do
sleep 10 sleep 10
......
#!/usr/bin/python #!/usr/bin/python2
# Test criu errno # Test criu errno
import socket, os, imp, sys, errno import socket, os, imp, sys, errno
......
#!/usr/bin/python #!/usr/bin/python2
import socket, os, imp, sys, errno import socket, os, imp, sys, errno
import rpc_pb2 as rpc import rpc_pb2 as rpc
......
#!/usr/bin/python #!/usr/bin/python2
import socket, os, imp, sys import socket, os, imp, sys
import rpc_pb2 as rpc import rpc_pb2 as rpc
......
#!/usr/bin/python #!/usr/bin/python2
import socket, os, imp, sys import socket, os, imp, sys
import rpc_pb2 as rpc import rpc_pb2 as rpc
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment