- 12 Oct, 2019 4 commits
-
-
Stéphane Graber authored
Update lxc.containers.conf(5) in Japanese
-
KATOH Yasufumi authored
Update for commit 767bd70aSigned-off-by:
KATOH Yasufumi <karma@jazz.email.ne.jp>
-
Stéphane Graber authored
Bad sgml/man translation
-
Rachid Koucha authored
When calling "man lxc.container.conf", an internal "man" keyword is displayed : $ man lxc.container.conf [...] lxc.mount.entry Specify a mount point corresponding to a line in the fstab format. Moreover lxc supports mount propagation, such as rslave or rprivate, and adds three additional mount options. optional don't fail if mount does not work. create=dir or create=file to create dir (or file) when the point will be mounted. relative source path is taken to be relative to the mounted container root. For instance, dev/null proc/kcore none bind,relative 0 0 .fi <-----------------------------------UNEXPECTED KEYWORD !!!! The problem seems to come from the missing blanks before "dev/null proc/kcore none bind,relative 0 0" Moreover, for homogeneity purposes, it is better to use the "programlisting" tag used in the rest of the text instead of "screen". Signed-off-by:Rachid Koucha <rachid.koucha@gmail.com>
-
- 11 Oct, 2019 3 commits
-
-
Christian Brauner authored
Update Japanese lxc.container.conf(5)
-
KATOH Yasufumi authored
Update for commit 0684250fSigned-off-by:
KATOH Yasufumi <karma@jazz.email.ne.jp>
-
KATOH Yasufumi authored
Update for commit 63012bddSigned-off-by:
KATOH Yasufumi <karma@jazz.email.ne.jp>
-
- 10 Oct, 2019 1 commit
-
-
Christian Brauner authored
Send successful output messages to log info instead of error
-
- 09 Oct, 2019 3 commits
-
-
Caio B. Silva authored
Signed-off-by:Caio B. Silva <caioboffo@gmail.com>
-
Stéphane Graber authored
doc: Add more info about 'lxc.start.order'
-
Lukas Jelinek authored
Signed-off-by:Lukas Jelinek <lukas.jelinek@nic.cz>
-
- 07 Oct, 2019 2 commits
-
-
Christian Brauner authored
Autoconf 2.69 conformance II
-
Caio B. Silva authored
Signed-off-by:Caio B. Silva <caioboffo@gmail.com>
-
- 04 Oct, 2019 6 commits
-
-
Serge Hallyn authored
Add config parameter for /dev tmpfs size
-
Claudio Kuenzler authored
Signed-off-by:Claudio Kuenzler <ck@claudiokuenzler.com>
-
Serge Hallyn authored
start: handle setting pdeath signal in new pidns
-
Christian Brauner authored
In the usual case the child runs in a separate pid namespace. So far we haven't been able to reliably set the pdeath signal. When we set the pdeath signal we need to verify that we haven't lost a race whereby we have been orphaned and though we have set a pdeath signal it won't help us since, well, the parent is dead. We were able to correctly handle this case when we were in the same pidns since getppid() will return a valid pid. When we are in a separate pidns 0 will be returned since the parent doesn't exist in our pidns. A while back, while Jann and I were discussing other things he came up with a nifty idea: simply pass an fd for the parent's status file and check the "State:" field. This is the implementation of that idea. Suggested-by:
Jann Horn <jann@thejh.net> Signed-off-by:
Christian Brauner <christian.brauner@ubuntu.com>
-
Serge Hallyn authored
start: pidfds obviously start - like any fd - at 0
-
Christian Brauner authored
Signed-off-by:Christian Brauner <christian.brauner@ubuntu.com>
-
- 03 Oct, 2019 2 commits
-
-
Christian Brauner authored
Fix lxc-update-config in network.address
-
Alban VIDAL authored
Signed-off-by:Alban VIDAL <zordhak@debian.org>
-
- 01 Oct, 2019 1 commit
-
-
Christian Brauner authored
Autoconf 2.69 conformance
-
- 30 Sep, 2019 1 commit
-
-
Caio B. Silva authored
allow users to configure the option --enable-feature or --with-package, if an option is given run shell commands action-if-given Signed-off-by:Caio B. Silva <caioboffo@gmail.com>
-
- 27 Sep, 2019 1 commit
-
-
Caio B. Silva authored
Signed-off-by:Caio B. Silva <caioboffo@gmail.com>
-
- 24 Sep, 2019 1 commit
-
-
Christian Brauner authored
Ensures OpenSSL compatibility with older versions of EVP API.
-
- 20 Sep, 2019 2 commits
-
-
Stéphane Graber authored
Update Japanese man pages
-
KATOH Yasufumi authored
Signed-off-by:KATOH Yasufumi <karma@jazz.email.ne.jp>
-
- 19 Sep, 2019 1 commit
-
-
KATOH Yasufumi authored
* translate pam_cgfs(8) * support --{enable,disable}-{commands,tools} in doc/ja Signed-off-by:KATOH Yasufumi <karma@jazz.email.ne.jp>
-
- 18 Sep, 2019 2 commits
-
-
Stéphane Graber authored
doc: add man page for pam_cgfs
-
Venkata Harshavardhan Reddy Allu authored
Signed-off-by:Venkata Harshavardhan Reddy Allu <venkataharshavardhan_ven@srmuniv.edu.in>
-
- 16 Sep, 2019 1 commit
-
-
Caio B. Silva authored
Signed-off-by:Caio B. Silva <caioboffo@gmail.com>
-
- 06 Sep, 2019 1 commit
-
-
Christian Brauner authored
utils: Copying source filename to avoid missing info
-
- 05 Sep, 2019 1 commit
-
-
Julio Faracco authored
Some applications use information from LOOP_GET_STATUS64. The file associated with loop device is pointed inside structure field `lo_file_name`. The current code is setting up a loop device without this information. A legacy example of code checking this is cryptsetup: static char *_ioctl_backing_file(const char *loop) { struct loop_info64 lo64 = {0}; int loop_fd; loop_fd = open(loop, O_RDONLY); if (loop_fd < 0) return NULL; if (ioctl(loop_fd, LOOP_GET_STATUS64, &lo64) < 0) { close(loop_fd); return NULL; } lo64.lo_file_name[LO_NAME_SIZE-2] = '*'; lo64.lo_file_name[LO_NAME_SIZE-1] = 0; close(loop_fd); return strdup((char*)lo64.lo_file_name); } It will return an empty string because lo_file_name was not set. Signed-off-by:Julio Faracco <jcfaracco@gmail.com>
-
- 03 Sep, 2019 1 commit
-
-
Stéphane Graber authored
cgroups: unify cgfsng_{un}freeze()
-
- 02 Sep, 2019 1 commit
-
-
Christian Brauner authored
Signed-off-by:Christian Brauner <christian.brauner@ubuntu.com>
-
- 29 Aug, 2019 3 commits
-
-
Stéphane Graber authored
cgroup: bugfixes
-
Christian Brauner authored
Signed-off-by:Christian Brauner <christian.brauner@ubuntu.com>
-
Christian Brauner authored
Signed-off-by:Christian Brauner <christian.brauner@ubuntu.com>
-
- 28 Aug, 2019 2 commits
-
-
Stéphane Graber authored
cgroups: initialize cgroup root directory
-
Christian Brauner authored
Signed-off-by:Christian Brauner <christian.brauner@ubuntu.com>
-