mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-07 09:41:39 +01:00
This is the fifth bugfix release for LXC 1.1.
https://linuxcontainers.org/lxc/news/
setproctile patch is already commited upstream:
2681c0e7ea
download-template patch fixes the download directory if /tmp is mounted separately
(& is therefore probably either a tmpfs / zram or mounted noexec).
14 lines
378 B
Diff
14 lines
378 B
Diff
### If you want the fancy proctitles, then you need to enable
|
|
### CONFIG_CHECKPOINT_RESTORE in your kernel.
|
|
--- a/src/lxc/utils.c
|
|
+++ b/src/lxc/utils.c
|
|
@@ -1458,7 +1458,7 @@ int setproctitle(char *title)
|
|
if (ret == 0)
|
|
strcpy((char*)arg_start, title);
|
|
else
|
|
- SYSERROR("setting cmdline failed");
|
|
+ INFO("setting cmdline failed - %s", strerror(errno));
|
|
|
|
return ret;
|
|
}
|