mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 09:58:09 +00:00
Previous commit added support for python3 in criu-coredump. For convenience, add two files (coredump-python2 and coredump-python3) that start criu-coredump with respective python version. Edit env.sh accordingly. Signed-off-by: Andrey Vyazovtsev <viazovtsev.av@phystech.edu>
7 lines
85 B
Python
Executable File
7 lines
85 B
Python
Executable File
#!/usr/bin/env python2
|
|
|
|
import coredump
|
|
|
|
if __name__ == '__main__':
|
|
coredump.main()
|