Skip to content

Commit

Permalink
fixup! Support feature subcommand
Browse files Browse the repository at this point in the history
Signed-off-by: Kotaro Inoue <k.musaino@gmail.com>
  • Loading branch information
musaprg committed Sep 29, 2024
1 parent 79f389e commit 964755c
Showing 1 changed file with 25 additions and 3 deletions.
28 changes: 25 additions & 3 deletions crates/youki/src/commands/features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,29 +64,51 @@ fn known_hooks() -> Vec<String> {

fn known_mount_options() -> Vec<String> {
[
"acl",
"async",
"atime",
"auto",
"bind",
"defaults",
"dev",
"diratime",
"dirsync",
"exec",
"mand",
"noacl",
"noatime",
"nodev",
"nodiratime",
"noexec",
"nomand",
"norelatime",
"nosuid",
"nostrictatime",
"private",
"rbind",
"rdev",
"relatime",
"remount",
"rnoatime",
"rnodev",
"rnodiratime",
"rnoexec",
"rnorelatime",
"rnosuid",
"rnostrictatime",
"ro",
"rprivate",
"rrw",
"rshared",
"rsuid",
"rsymfollow",
"rslave",
"rstrictatime",
"runbindable",
"rw",
"shared",
"slave",
"strictatime",
"suid",
"sync",
"unbindable",
]
.iter()
.map(|s| s.to_string())
Expand Down

0 comments on commit 964755c

Please sign in to comment.