aports/main/lxc/setproctitle-info-not-warn.patch
Stuart Cardall dab48b775f main/lxc: update to 1.1.5
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).
2015-11-13 07:28:40 +00:00

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;
}