diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2016-12-05 15:55:53 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2016-12-05 15:55:53 +0000 |
commit | f76a3e169afcea1fa556686d5c9be7c38ae15a64 (patch) | |
tree | d8da5019c05d21ce97f422a7c00df607c421a450 /testing/lxd/lxd.confd | |
parent | 2dd76425f7b3b3e821ca2755da3e40952baacb8c (diff) | |
download | aports-f76a3e169afcea1fa556686d5c9be7c38ae15a64.tar.bz2 aports-f76a3e169afcea1fa556686d5c9be7c38ae15a64.tar.xz |
testing/lxd: ugprade to 2.6.2, updated initd and confd
Diffstat (limited to 'testing/lxd/lxd.confd')
-rw-r--r-- | testing/lxd/lxd.confd | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/testing/lxd/lxd.confd b/testing/lxd/lxd.confd index 086198a55c..3d553276a5 100644 --- a/testing/lxd/lxd.confd +++ b/testing/lxd/lxd.confd @@ -1,26 +1,27 @@ -LXD_OPTIONS="" - # Group which owns the shared socket -LXD_OPTIONS="${LXD_OPTIONS} --group lxd" - -# TCP address <addr:port> to listen on in addition to the unix socket (e.g., 127.0.0.1:8443) -#LXD_OPTIONS="${LXD_OPTIONS} --tcp 127.0.0.1:8443" +LXD_OPTIONS+=" --group lxd" # Enable cpu profiling into the specified file -#LXD_OPTIONS="${LXD_OPTIONS} --cpuprofile ''" +#LXD_OPTIONS+=" --cpuprofile /tmp/lxc_cpu_profile" # Enable memory profiling into the specified file -#LXD_OPTIONS="${LXD_OPTIONS} --memprofile ''" +#LXD_OPTIONS+=" --memprofile /tmp/lxc_mem_profile" # Enables debug mode -#LXD_OPTIONS="${LXD_OPTIONS} --debug" +#LXD_OPTIONS+=" --debug" # For debugging, print a complete stack trace every n seconds -#LXD_OPTIONS="${LXD_OPTIONS} --print-goroutines-every 5" +#LXD_OPTIONS+=" --print-goroutines-every 5" # Enables verbose mode -#LXD_OPTIONS="${LXD_OPTIONS} -v" +#LXD_OPTIONS+=" -v" + +# Logfile to log to +#LXD_OPTIONS+=" --logfile /var/log/lxd/lxd.log" + +# Enables syslog logging +#LXD_OPTIONS+=" --syslog" |