- 09 May, 2016 5 commits
-
-
Christian Brauner authored
Unshare netns after setting the userns mappings
-
Serge Hallyn authored
so that there is a root uid mapping for the /proc/net files. Signed-off-by:Serge Hallyn <serge.hallyn@ubuntu.com>
-
Christian Brauner authored
Added OR statement for cases of ID = rhel in RHEL 7+
-
Hartnell Foster authored
Signed-off-by:Hartnell Foster <hartnell.foster@bbc.co.uk>
-
Serge Hallyn authored
sync.c: use correct types
-
- 08 May, 2016 3 commits
-
-
Christian Brauner authored
Signed-off-by:Christian Brauner <christian.brauner@mailbox.org>
-
Christian Brauner authored
Change sys_resources to sys_resource.
-
Karl-Johan Karlsson authored
gentoo.moresecure.conf tries to drop the capability CAP_SYS_RESOURCES. However, that capability doesn't exist, so the container doesn't start. Change it to CAP_SYS_RESOURCE, according to capabilities(7). Also correct the same typo in a comment in slackware.common.conf. Signed-off-by:Karl-Johan Karlsson <creideiki@ferretporn.se>
-
- 06 May, 2016 2 commits
-
-
Serge Hallyn authored
sync: fail on unexpected message sizes
-
Tycho Andersen authored
I think (?) this may be related to our hanging monitor bug. Let's do this anyway, as it's probably a good idea. Signed-off-by:Tycho Andersen <tycho.andersen@canonical.com>
-
- 05 May, 2016 2 commits
-
-
Christian Brauner authored
Force DHCP client to send hostname
-
Lisio authored
Required for proper applying dnsmasq config entries. Signed-off-by:Andrey Kostin <andrey@kostin.email>
-
- 02 May, 2016 4 commits
-
-
Christian Brauner authored
Improve on the case where default networking config is incomplete
-
Thomas Tanaka authored
Signed-off-by:Thomas Tanaka <thomas.tanaka@oracle.com>
-
Christian Brauner authored
Update Korean manuals
-
Sungbae Yoo authored
Update for commit f43d63bcSigned-off-by:
Sungbae Yoo <sungbae.yoo@samsung.com>
-
- 01 May, 2016 6 commits
-
-
Christian Brauner authored
set PyErr when Container.__init__ fails
-
Christian Brauner authored
Expose lxc.network.type through lxc_list_nicconfigs()
-
Aron Podrigal authored
Signed-off-by:Aron Podrigal <aronp@guaranteedplus.com>
-
Aron Podrigal authored
When container init failed for whatever reason, previously it resulted in a `SystemError: NULL result without error in PyObject_Call` This will now result in a RuntimeError with the error message previously printed to stderr. Signed-off-by:Aron Podrigal <aronp@guaranteedplus.com>
-
Stéphane Graber authored
Check if the stdout is a terminal in lxc-checkconfig
-
walkerning authored
Let lxc-checkconfig write to non-tty stdout without color control characters Signed-off-by:walkerning <foxdoraame@gmail.com>
-
- 29 Apr, 2016 1 commit
-
-
Serge Hallyn authored
2016 04 28/less syscall for lxc ls
-
- 28 Apr, 2016 2 commits
-
-
Christian Brauner authored
Signed-off-by:Christian Brauner <christian.brauner@mailbox.org>
-
Christian Brauner authored
Signed-off-by:Christian Brauner <christian.brauner@mailbox.org>
-
- 25 Apr, 2016 3 commits
-
-
Stéphane Graber authored
don't make sysv init scripts dependant on distribution specifics
-
Christian Brauner authored
doc: Add logging option to Japanese lxc-attach(1)
-
KATOH Yasufumi authored
Update for commit f43d63bcSigned-off-by:
KATOH Yasufumi <karma@jazz.email.ne.jp>
-
- 24 Apr, 2016 1 commit
-
-
Stéphane Graber authored
Signed-off-by:Stéphane Graber <stgraber@ubuntu.com>
-
- 22 Apr, 2016 1 commit
-
-
Leonid Isaev authored
gcc -Wall warns about uninitialized variables (-Wmaybe-uninitialized), and -Werror makes it fatal. This change allows the build to succeed by NULL'ifying the pointer passed to strtok_r(). Note that strtok_r(3) anyway ignores a non-NULL arg3 pointer on the 1st call with non-NULL arg1 string. Signed-off-by:
Leonid Isaev <leonid.isaev@jila.colorado.edu> Acked-by:
Serge Hallyn <serge.hallyn@ubuntu.com>
-
- 19 Apr, 2016 2 commits
-
-
Serge Hallyn authored
use raw settings of ssh for pty
-
Christian Brauner authored
Signed-off-by:Christian Brauner <christian.brauner@mailbox.org>
-
- 18 Apr, 2016 2 commits
-
-
Christian Brauner authored
Switch console pty to raw mode.
-
Andrey Jr. Melnikov authored
Signed-off-by:Andrey Jr. Melnikov <temnota.am@gmail.com>
-
- 15 Apr, 2016 2 commits
-
-
Evgeni Golov authored
- /etc(/rc.d)?/init.d/functions does not exist on all distributions - LSB does not define a message function without an explicit status - Debian-derived systems add a log_daemon_msg for that lets define an own log_daemon_msg as echo and try to load LSB init functions afterwards, which might overload it with a nicer version that way the init scripts should work on any system, without hard dependencies on neither LSB nor /etc/init.d/functions Closes #309 #310 #311 Signed-off-by:Evgeni Golov <evgeni@debian.org>
-
Christian Brauner authored
drop obsolete syslog.target from lxc.service.in
-
- 14 Apr, 2016 3 commits
-
-
Evgeni Golov authored
the target is obsolete since systemd v38 which everybody should have. original patch by Daniel Baumann Signed-off-by:Evgeni Golov <evgeni@debian.org>
-
Stéphane Graber authored
Fixed python-lxc reference to var before assignment
-
Aron Podrigal authored
``` >>> c = lxc.Container('ct') >>> c.create('debian', args=('-r', 'jessie')) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python3/dist-packages/lxc/__init__.py", line 229, in create template_args['args'] = tuple(tmp_args) UnboundLocalError: local variable 'tmp_args' referenced before assignment ``` Signed-off-by:Aron Podrigal <aronp@guaranteedplus.com>
-
- 13 Apr, 2016 1 commit
-
-
Stéphane Graber authored
add missing lsb headers to sysvinit scripts
-