Ignore:
Timestamp:
Feb 17, 2009, 1:54:26 AM (15 years ago)
Author:
iannucci
Message:

Added all the other quotas for great win.

Location:
trunk/packages/invirt-base
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/packages/invirt-base/debian/changelog

    r2132 r2134  
    33  * added invirt-setquota script (self-documenting)
    44
    5  -- Peter A. Iannucci <iannucci@mit.edu>  Mon, 16 Feb 2009 23:48:25 -0500
     5 -- Peter A. Iannucci <iannucci@mit.edu>  Tue, 17 Feb 2009 01:43:54 -0500
    66
    77invirt-base (0.0.20) unstable; urgency=low
  • trunk/packages/invirt-base/scripts/invirt-setquotas

    r2132 r2134  
    22
    33"""
    4 invirt-setquota allows an administrator to set the RAM quotas for an owner.
    5 Invoking with only an owner name returns the current quotas for that owner.
    6 Setting a parameter to -1 restores the default.
     4invirt-setquota allows an administrator to set memory, disk, and VM quotas
     5for an owner.  Invoking with only an owner name returns the current quotas for
     6that owner.  Setting a parameter to -1 restores the default.
    77
    88Examples:
    99
    10     invirt-setquota joeuser -t 512 -s None
     10    invirt-setquota joeuser -mt 512 -ms None
    1111"""
    1212
     
    2121        parser = OptionParser(usage = '%prog owner [options]',
    2222                description = __doc__.strip().split('\n\n')[0])
    23         parser.add_option('-t', '--total',
     23        parser.add_option('-m', '--mem-total',
    2424                type = 'int',
    25                 dest = 'total',
    26                 help = 'set the total concurrent RAM quota')
    27         parser.add_option('-s', '--single',
     25                dest = 'memtotal',
     26                help = 'set total concurrent RAM quota')
     27        parser.add_option('-n', '--mem-single',
    2828                type = 'int',
    29                 dest = 'single',
    30                 help = 'set the single VM RAM quota')
     29                dest = 'memsingle',
     30                help = 'set single VM RAM quota')
     31        parser.add_option('-d', '--disk-total',
     32                type = 'int',
     33                dest = 'disktotal',
     34                help = 'set total disk quota')
     35        parser.add_option('-e', '--disk-single',
     36                type = 'int',
     37                dest = 'disksingle',
     38                help = 'set single VM disk quota')
     39        parser.add_option('-v', '--vms-total',
     40                type = 'int',
     41                dest = 'vmstotal',
     42                help = 'set total VM quota')
     43        parser.add_option('-w', '--vms-active',
     44                type = 'int',
     45                dest = 'vmsactive',
     46                help = 'set active VM quota')
    3147        opts, args = parser.parse_args()
    3248
     49        print opts
    3350        if len(args) != 1:
    3451            raise invirt_exception(__doc__.strip())
     
    4057
    4158        edited = False
    42         if opts.total != None:
    43             total = int(opts.total)
     59        if opts.memtotal != None:
     60            total = int(opts.memtotal)
    4461            if total == -1:
    4562                x.ram_quota_total = None
     
    4865            edited = True
    4966
    50         if opts.single != None:
    51             single = int(opts.single)
     67        if opts.memsingle != None:
     68            single = int(opts.memsingle)
    5269            if single == -1:
    5370                x.ram_quota_single = None
    5471            else:
    5572                x.ram_quota_single = single
     73            edited = True
     74
     75        if opts.disktotal != None:
     76            total = int(opts.disktotal)
     77            if total == -1:
     78                x.disk_quota_total = None
     79            else:
     80                x.disk_quota_total = total
     81            edited = True
     82
     83        if opts.disksingle != None:
     84            single = int(opts.disksingle)
     85            if single == -1:
     86                x.disk_quota_single = None
     87            else:
     88                x.disk_quota_single = single
     89            edited = True
     90
     91        if opts.vmstotal != None:
     92            total = int(opts.vmstotal)
     93            if total == -1:
     94                x.vms_quota_total = None
     95            else:
     96                x.vms_quota_total = total
     97            edited = True
     98
     99        if opts.vmsactive != None:
     100            active = int(opts.vmsactive)
     101            if active == -1:
     102                x.vms_quota_active = None
     103            else:
     104                x.vms_quota_active = active
    56105            edited = True
    57106
Note: See TracChangeset for help on using the changeset viewer.