summaryrefslogtreecommitdiff
path: root/Completion/Solaris/Command/_dumpadm
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/Solaris/Command/_dumpadm')
-rw-r--r--Completion/Solaris/Command/_dumpadm23
1 files changed, 23 insertions, 0 deletions
diff --git a/Completion/Solaris/Command/_dumpadm b/Completion/Solaris/Command/_dumpadm
new file mode 100644
index 000000000..37491946c
--- /dev/null
+++ b/Completion/Solaris/Command/_dumpadm
@@ -0,0 +1,23 @@
+#compdef dumpadm
+
+_dumpadm() {
+ local -a content
+
+ content=(
+ "kernel"\:"Kernel memory pages only"
+ "all"\:"All memory pages"
+ "curproc"\:"Kernel memory pages plus curproc pages"
+ )
+
+ _arguments -s \
+ '-n[Dont run savecore on reboot]' \
+ '-u[Update dump configuration from dumpadm.conf]' \
+ '-y[Run savecore on reboot]' \
+ '-c[Set dump content]:dump content:(($content))' \
+ '-d[Set dump device]:block devices:_files -g "*(-%b)"' \
+ '-m[Set minfree size ]:' \
+ '-s[Set the savecore directory]:directory:_files -/' \
+ '-r[Alternate root directory]:directory:_files -/'
+}
+
+_dumpadm "$@"