Skip to content

Instantly share code, notes, and snippets.

@tripledes

tripledes/lxc.py Secret

Created January 2, 2015 16:20
Show Gist options
  • Save tripledes/330533a9589aed1a88d4 to your computer and use it in GitHub Desktop.
Save tripledes/330533a9589aed1a88d4 to your computer and use it in GitHub Desktop.
python-lxc issue
#!/usr/bin/env python3
import lxc
c = lxc.Container('ubuntu_test')
c.create('ubuntu')
c.start(daemonize=True,close_fds=True)
exit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment