about summary refs log tree commit diff
path: root/Completion/Linux
diff options
context:
space:
mode:
authorAndrey Borzenkov <bor@users.sourceforge.net>2002-05-08 15:55:36 +0000
committerAndrey Borzenkov <bor@users.sourceforge.net>2002-05-08 15:55:36 +0000
commitae5ac5edea6f4c49e89291e4e973283c252fa59c (patch)
tree282be66a06ac6de88c680d641a7c89edd2cb5aed /Completion/Linux
parent6d73a3b843ac1961ccce067a0c191c1bcdf20d7f (diff)
downloadzsh-ae5ac5edea6f4c49e89291e4e973283c252fa59c.tar.gz
zsh-ae5ac5edea6f4c49e89291e4e973283c252fa59c.tar.xz
zsh-ae5ac5edea6f4c49e89291e4e973283c252fa59c.zip
Merge 17080,17076,17075,17074,16461,16434,16437,16258,16247,16253
Diffstat (limited to 'Completion/Linux')
-rw-r--r--Completion/Linux/Command/.distfiles4
-rw-r--r--Completion/Linux/Command/_mondo53
2 files changed, 57 insertions, 0 deletions
diff --git a/Completion/Linux/Command/.distfiles b/Completion/Linux/Command/.distfiles
new file mode 100644
index 000000000..96d9db3ed
--- /dev/null
+++ b/Completion/Linux/Command/.distfiles
@@ -0,0 +1,4 @@
+DISTFILES_SRC='
+.distfiles
+_mondo
+'
diff --git a/Completion/Linux/Command/_mondo b/Completion/Linux/Command/_mondo
new file mode 100644
index 000000000..2fc55ca33
--- /dev/null
+++ b/Completion/Linux/Command/_mondo
@@ -0,0 +1,53 @@
+#compdef mondoarchive
+
+local context state line expl ret=1
+typeset -A opt_args
+
+_arguments \
+  "(-V)-O[create backup]" \
+  "(-O)-V[verify backup]" \
+  "(-c -C -i -n -w)-c[use CD-R as backup media]:CD-R burn speed: " \
+  "(-c -C -i -n -w)-C[use CD-R as streaming device (experimental)]:CD-R burn speed: " \
+  "(-c -C -i -n -w)-i[use ISO image as backup media]" \
+  "(-c -C -i -n -w)-n[use NFS mountpoint as backup media]:NFS mountpoint: " \
+  "(-c -C -i -n -w)-w[use CD-RW as backup media]:CD-RW burn speed: " \
+  "-D[differential backup]" \
+  "-E[exclude path(s) from backup]:paths to exclude from backup:->quoted_path" \
+  "-I[path(s) to backup]:paths to inlcude in backup:->quoted_path" \
+  "-d[backup device]:backup device: " \
+  "-g[run in fullscreen mode]" \
+  "-k[path to kernel]:path to kernel:->kernel_or_magic" \
+  "-m[manual eject]" \
+  "-s[media size]:media size]: " \
+  "-x[non-linux partition]:non-linux partition:_files -g '*(%b)'" \
+  "(-1 -2 -3 -4 -5 -6 -7 -8 -9)-"{1,2,3,4,5,6,7,8,9}"[compression level]" \
+  "-A[post ISO-creation command]:pre ISO-creation command: " \
+  "-B[pre iSO-creation command]:post ISO-creation command: " \
+  "-F[do not create floppy]" \
+  "-H[create autorestore image]" \
+  "-L[use lzo instead of bzip2]" \
+  "-P[post-nuke tarball]:post-nuke tarball:_files -g '*.(#i)(tar.gz|tgz)'" \
+  "-S[scratch directory]:scratch directory:_files -/" \
+  "-T[temporary directory]:temporary directory:_files -/" \
+  "-f[device with MBR]:device with MBR:_files -g '*(%b)'" \
+  "-l[bootloader type]:bootloader type:(GRUB LILO)" \
+  && ret=0
+
+case $state in
+  quoted_path )
+    local suf="/ \t\n"
+    [[ -n $compstate[quote] ]] && { suf="$compstate[quote]$suf"; compset -q; }
+    _files -r $suf && ret=0
+  ;;
+  kernel_or_magic )
+    _tags kernel magic
+    while _tags; do
+      _requested magic expl "keywords" \
+	compadd -- FAILSAFE && ret=0
+      _requested kernel expl "path to kernel image" \
+	_files  && ret=0
+    done
+  ;;
+esac
+
+return $ret