- 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 3 commits
-
-
Stéphane Graber authored
cgroups: initialize cgroup root directory
-
Christian Brauner authored
Signed-off-by:Christian Brauner <christian.brauner@ubuntu.com>
-
Christian Brauner authored
try to fix search user instead of search substring
-
- 27 Aug, 2019 6 commits
-
-
Christian Brauner authored
Use file/directory names from macro.h
-
Stéphane Graber authored
cgroups: support cgroup2 freezer
-
Stéphane Graber authored
suppress false-negative error in templates and nvidia hook
-
Stéphane Graber authored
lxc-attach: make sure exit status of command is returned
-
Stéphane Graber authored
[aa-profile] Deny access to /proc/acpi/**
-
Pierre-Elliott Bécue authored
Signed-off-by:Pierre-Elliott Bécue <becue@crans.org>
-
- 26 Aug, 2019 3 commits
-
-
Antonio Terceiro authored
Commit ae68cad7 introduced a regression that makes lxc-attach ignore the exit status of the executed command. This was first identified in 3.0.4 LTS, while it worked on 3.0.3. # lxc-attach --version 3.0.4 # lxc-attach -n test false; echo $? 0 Signed-off-by:
Antonio Terceiro <terceiro@debian.org> Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=934983
-
Christian Brauner authored
lxc-create: check absoule path for param '--dir'
-
Christian Brauner authored
When pure cgroup unified mode is used we cannot pre-mount a tmpfs as this confuses systemd. Users should also set lxc.mount.auto = cgroup:force to ensure that systemd in the container and on the host use identical cgroup layouts. Signed-off-by:Christian Brauner <christian.brauner@ubuntu.com>
-
- 19 Aug, 2019 1 commit
-
-
qianfan Zhao authored
Fix: #3123 Signed-off-by:qianfan Zhao <qianfanguijin@163.com>
-
- 15 Aug, 2019 1 commit
-
-
Christian Brauner authored
Signed-off-by:Christian Brauner <christian.brauner@ubuntu.com>
-
- 13 Aug, 2019 2 commits
-
-
Christian Brauner authored
attach: don't close stdout of getent
-
Wolfgang Bumiller authored
Signed-off-by:Wolfgang Bumiller <w.bumiller@proxmox.com>
-
- 03 Aug, 2019 2 commits
-
-
Christian Brauner authored
utils: Fix wrong integer of a function parameter.
-
Julio Faracco authored
If SSL is enabled, utils will include function `do_sha1_hash()` to generate a sha1 encrypted buffer. Last function argument of `EVP_DigestFinal_ex()` requires a `unsigned int` but the current parameter is an `integer` type. See error: utils.c:350:38: error: passing 'int *' to parameter of type 'unsigned int *' converts between pointers to integer types with different sign [-Werror,-Wpointer-sign] EVP_DigestFinal_ex(mdctx, md_value, md_len); ^~~~~~ /usr/include/openssl/evp.h:549:49: note: passing argument to parameter 's' here unsigned int *s); Signed-off-by:Julio Faracco <jcfaracco@gmail.com>
-
- 30 Jul, 2019 1 commit
-
-
Alexander Kriventsov authored
Signed-off-by:Alexander Kriventsov <akriventsov@nic.ru>
-
- 29 Jul, 2019 2 commits
-
-
Christian Brauner authored
lxccontainer: do_lxcapi_detach_interface to support detaching wlan devs
-
Thomas Parrott authored
Signed-off-by:Thomas Parrott <thomas.parrott@canonical.com>
-