From d97dc0ee2505e80c8e9fca89aa2001b2ec2c3695 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Mon, 18 Apr 2016 09:01:23 +0200 Subject: [PATCH] mkswap: tolerate ENOTSUP when failing to relabel It might be that the underlying filesystem just doesn't support SELinux labeling. This fixes creating swap on vfat live media: # livecd-iso-to-disk.sh --msdos --swap-size-mb 666 ... Signed-off-by: Lubomir Rintel --- disk-utils/mkswap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disk-utils/mkswap.c b/disk-utils/mkswap.c index a7c6a709b..e44d039e1 100644 --- a/disk-utils/mkswap.c +++ b/disk-utils/mkswap.c @@ -522,7 +522,7 @@ int main(int argc, char **argv) context_string = context_str(newcontext); if (strcmp(context_string, oldcontext)!=0) { - if (fsetfilecon(ctl.fd, context_string)) + if (fsetfilecon(ctl.fd, context_string) && errno != ENOTSUP) err(EXIT_FAILURE, _("unable to relabel %s to %s"), ctl.devname, context_string); }