Update LXC container config options

OpenSUSE Leap 15.0 now ships with lxc 3.1 which changed two config
options:

1. lxc.kmsg was removed
2. lxc.pts was renamed to lxc.pty.max

This change updates these two options in the container config.

Change-Id: I7b4c657e9216b5e3926672b76cb370256b98ce3c
Depends-On: I8a94f340b8866f3369cebb5950dea873f5d2fece
Signed-off-by: Nicolas Bock <nicolas.bock@suse.com>
This commit is contained in:
Nicolas Bock 2019-05-08 06:27:04 -06:00 committed by Nicolas Bock
parent 76468f5107
commit 98d2203386
1 changed files with 4 additions and 5 deletions

View File

@ -33,11 +33,10 @@ lxc_container_map:
release: "{{ hostvars[physical_host]['ansible_distribution_version'] }}"
lxc_container_default_config_list:
- "lxc.start.auto=1"
- "lxc.start.delay=15"
- "lxc.autodev=1"
- "lxc.group=onboot"
- "lxc.group=openstack"
- "lxc.autodev=1"
- "lxc.pts=1024"
- "lxc.kmsg=0"
- "lxc.hook.autodev=/var/lib/lxc/{{ inventory_hostname }}/autodev"
- "lxc.pty.max=1024"
- "lxc.start.auto=1"
- "lxc.start.delay=15"