mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2026-03-28 19:05:50 +00:00
This introduces a new /usr/share/lxc/config directory containing common configuration snippets. The two Ubuntu templates are then simplified to just include the relevant entries avoiding a whole lot of hardcoded cgroup, capabilities and mount points configuration. An extra comment is also added at the top of all generated configuration files telling the user to look at lxc.conf(5) for more information. Signed-off-by: Stéphane Graber <stgraber@ubuntu.com> Acked-by: Serge E. Hallyn <serge.hallyn@ubuntu.com>
16 lines
381 B
Makefile
16 lines
381 B
Makefile
configdir = $(sysconfdir)/lxc
|
|
config_DATA = default.conf
|
|
distroconf = @LXC_DISTRO_CONF@
|
|
|
|
EXTRA_DIST = default.conf.ubuntu default.conf.libvirt default.conf.unknown
|
|
|
|
default.conf:
|
|
cp $(distroconf) $@
|
|
|
|
clean-local:
|
|
@$(RM) -f default.conf
|
|
|
|
distclean-local:
|
|
@$(RM) -f default.conf
|
|
@$(RM) -f compile config.guess config.sub depcomp install-sh ltmain.sh missing Makefile.in Makefile
|