commands: fix chroot method comments

It looks like the comments for CHROOT_METHOD_NSPAWN and
CHROOT_METHOD_NONE have been swapped

Signed-off-by: Daniel Sangorrin <daniel.sangorrin@toshiba.co.jp>
This commit is contained in:
Daniel Sangorrin
2019-05-22 15:34:40 +09:00
committed by Sjoerd Simons
parent 1a441c5839
commit 2764eed783

View File

@@ -13,8 +13,8 @@ import (
type ChrootEnterMethod int
const (
CHROOT_METHOD_NONE = iota // use nspawn to create the chroot environment
CHROOT_METHOD_NSPAWN // No chroot in use
CHROOT_METHOD_NONE = iota // No chroot in use
CHROOT_METHOD_NSPAWN // use nspawn to create the chroot environment
CHROOT_METHOD_CHROOT // use chroot to create the chroot environment
)