]> git.proxmox.com Git - pve-storage.git/commitdiff
pvesm add: pass storage type as first argument
authorDietmar Maurer <dietmar@proxmox.com>
Fri, 20 Mar 2015 15:52:18 +0000 (16:52 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Fri, 20 Mar 2015 16:02:13 +0000 (17:02 +0100)
pvesm

diff --git a/pvesm b/pvesm
index 79213e0ecde75417459d78df2c276d32f87592a5..60e71dc957454ed41261fe49c1072eb61cee35d7 100755 (executable)
--- a/pvesm
+++ b/pvesm
@@ -117,7 +117,7 @@ my $print_status = sub {
 my $nodename = PVE::INotify::nodename();
 
 my $cmddef = {
-    add => [ "PVE::API2::Storage::Config", 'create', ['storage'] ],
+    add => [ "PVE::API2::Storage::Config", 'create', ['type', 'storage'] ],
     set => [ "PVE::API2::Storage::Config", 'update', ['storage'] ],
     remove => [ "PVE::API2::Storage::Config", 'delete', ['storage'] ],
     status => [ "PVE::API2::Storage::Status", 'index', [],
@@ -238,11 +238,11 @@ To get the filesystem path for a <VOLUME_ID> use:
  pvesm scan nfs <HOST>
 
  # add storage pools
- pvesm add <STORAGE_ID> <TYPE> <OPTIONS>
- pvesm add <STORAGE_ID> dir --path <PATH>
- pvesm add <STORAGE_ID> nfs --path <PATH> --server <SERVER> --export <EXPORT>
- pvesm add <STORAGE_ID> lvm --vgname <VGNAME>
- pvesm add <STORAGE_ID> iscsi --portal <HOST[:PORT]> --target <TARGET>
+ pvesm add <TYPE> <STORAGE_ID> <OPTIONS>
+ pvesm add dir <STORAGE_ID> --path <PATH>
+ pvesm add nfs <STORAGE_ID> --path <PATH> --server <SERVER> --export <EXPORT>
+ pvesm add lvm <STORAGE_ID> --vgname <VGNAME>
+ pvesm add iscsi <STORAGE_ID> --portal <HOST[:PORT]> --target <TARGET>
 
  # disable storage pools
  pvesm set <STORAGE_ID> --disable 1