diff --git a/doc/ja/lxc.container.conf.sgml.in b/doc/ja/lxc.container.conf.sgml.in index 370856bba..364ecd9ab 100644 --- a/doc/ja/lxc.container.conf.sgml.in +++ b/doc/ja/lxc.container.conf.sgml.in @@ -1715,7 +1715,7 @@ by KATOH Yasufumi - + diff --git a/doc/ko/lxc.container.conf.sgml.in b/doc/ko/lxc.container.conf.sgml.in index d6deb6ccb..1454addfa 100644 --- a/doc/ko/lxc.container.conf.sgml.in +++ b/doc/ko/lxc.container.conf.sgml.in @@ -1655,7 +1655,7 @@ proc proc proc nodev,noexec,nosuid 0 0 - + diff --git a/doc/lxc.container.conf.sgml.in b/doc/lxc.container.conf.sgml.in index 390f6c05c..b59d3181f 100644 --- a/doc/lxc.container.conf.sgml.in +++ b/doc/lxc.container.conf.sgml.in @@ -1242,7 +1242,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - + diff --git a/src/lxc/confile.c b/src/lxc/confile.c index 73532eccc..55917e8c4 100644 --- a/src/lxc/confile.c +++ b/src/lxc/confile.c @@ -1370,7 +1370,7 @@ static int set_config_apparmor_allow_incomplete(const char *key, return -1; if (lxc_conf->lsm_aa_allow_incomplete > 1) { - ERROR("Wrong value for lxc.lsm_aa_allow_incomplete. Can only " + ERROR("Wrong value for lxc.apparmor.allow_incomplete. Can only " "be set to 0 or 1"); return -1; } diff --git a/src/lxc/lsm/apparmor.c b/src/lxc/lsm/apparmor.c index c0b2e340d..8098fde9e 100644 --- a/src/lxc/lsm/apparmor.c +++ b/src/lxc/lsm/apparmor.c @@ -218,7 +218,7 @@ static int apparmor_process_label_set(const char *inlabel, struct lxc_conf *conf WARN("Incomplete AppArmor support in your kernel"); if (!conf->lsm_aa_allow_incomplete) { ERROR("If you really want to start this container, set"); - ERROR("lxc.aa_allow_incomplete = 1"); + ERROR("lxc.apparmor.allow_incomplete = 1"); ERROR("in your container configuration file"); return -1; } diff --git a/src/tests/lxc-test-apparmor-mount b/src/tests/lxc-test-apparmor-mount index 891cd7a7c..0523a80ae 100755 --- a/src/tests/lxc-test-apparmor-mount +++ b/src/tests/lxc-test-apparmor-mount @@ -213,7 +213,7 @@ run_cmd lxc-stop -n $cname -k echo "testing override" sed -i '/aa_profile/d' $HDIR/.local/share/lxc/$cname/config -echo "lxc.aa_allow_incomplete = 1" >> $HDIR/.local/share/lxc/$cname/config +echo "lxc.apparmor.allow_incomplete = 1" >> $HDIR/.local/share/lxc/$cname/config run_cmd lxc-start -n $cname -d run_cmd lxc-wait -n $cname -s RUNNING pid=`run_cmd lxc-info -p -H -n $cname`