From 04a91bbd9bf08ad9c843a253ea0e61748ca62ff2 Mon Sep 17 00:00:00 2001 From: Alexandre Pujol Date: Mon, 27 May 2024 23:44:23 +0100 Subject: [PATCH] feat(aa): updaqte mount flags order. --- pkg/aa/mount.go | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkg/aa/mount.go b/pkg/aa/mount.go index 7d2e0388..03b758cc 100644 --- a/pkg/aa/mount.go +++ b/pkg/aa/mount.go @@ -18,12 +18,13 @@ const ( func init() { requirements[tokMOUNT] = requirement{ "flags": { - "acl", "async", "atime", "bind", "dev", "diratime", "dirsync", "exec", - "iversion", "loud", "mand", "move", "noacl", "noatime", "nodev", - "nodiratime", "noexec", "noiversion", "nomand", "norelatime", "nosuid", - "nouser", "private", "rbind", "relatime", "remount", "ro", "rprivate", - "rshared", "rslave", "runbindable", "rw", "shared", "silent", "slave", - "strictatime", "suid", "sync", "unbindable", "user", "verbose", + "acl", "async", "atime", "ro", "rw", "bind", "rbind", "dev", + "diratime", "dirsync", "exec", "iversion", "loud", "mand", "move", + "noacl", "noatime", "nodev", "nodiratime", "noexec", "noiversion", + "nomand", "norelatime", "nosuid", "nouser", "private", "relatime", + "remount", "rprivate", "rshared", "rslave", "runbindable", "shared", + "silent", "slave", "strictatime", "suid", "sync", "unbindable", + "user", "verbose", }, } }