]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
bash-completion: (mkswap) add missing long options
authorChristian Goeschel Ndjomouo <cgoesc2@wgu.edu>
Fri, 31 Oct 2025 17:15:58 +0000 (13:15 -0400)
committerChristian Goeschel Ndjomouo <cgoesc2@wgu.edu>
Fri, 31 Oct 2025 17:15:58 +0000 (13:15 -0400)
Signed-off-by: Christian Goeschel Ndjomouo <cgoesc2@wgu.edu>
bash-completion/mkswap

index 46939c0102cd39ba57d9e10ba2c13d22fb02637a..693347516d37e7138cc2396134f78351b5b94e9b 100644 (file)
@@ -35,7 +35,21 @@ _mkswap_module()
        esac
        case $cur in
                -*)
-                       OPTS="--check --force --pagesize --lock --label --swapversion --uuid --offset --verbose --version --help --size --file"
+                       OPTS="--check
+                                               --endianness
+                                               --quiet
+                                               --force
+                                               --pagesize
+                                               --lock
+                                               --label
+                                               --swapversion
+                                               --uuid
+                                               --offset
+                                               --verbose
+                                               --version
+                                               --help
+                                               --size
+                                               --file"
                        COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
                        return 0
                        ;;