add bash completion for content type

This commit is contained in:
Dietmar Maurer
2015-10-01 07:12:07 +02:00
parent 37ba0aea5b
commit 98437f4c85
4 changed files with 9 additions and 0 deletions

View File

@ -1228,4 +1228,10 @@ sub complete_storage_enabled {
return $res;
}
sub complete_content_type {
my ($cmdname, $pname, $cvalue) = @_;
return [qw(rootdir images vztmpl iso backup)];
}
1;