File: stub-lxc.py

package info (click to toggle)
python-mitogen 0.3.25~a1-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,204 kB
  • sloc: python: 21,984; sh: 183; makefile: 74; perl: 19; ansic: 18
file content (13 lines) | stat: -rwxr-xr-x 285 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python3

import sys
import os

# setns.py fetching leader PID.
if sys.argv[1] == 'info':
    print('Pid: 1')
    sys.exit(0)

os.environ['ORIGINAL_ARGV'] = repr(sys.argv)
os.environ['THIS_IS_STUB_LXC'] = '1'
os.execv(sys.executable, sys.argv[sys.argv.index('--') + 1:])