diff options
| author | root <root@hackathon1-repo.usersys.redhat.com> | 2008-06-20 14:30:57 -0400 |
|---|---|---|
| committer | root <root@hackathon1-repo.usersys.redhat.com> | 2008-06-20 14:30:57 -0400 |
| commit | 105c4cf4a6f4a4cc72edabc3d4ee4d25c4d8c1b7 (patch) | |
| tree | 9a9f64b3e50827656d003e29d690475c366f7682 /cloudmasterd/lib | |
| parent | 0ef48625bd7acd71354661219db38d94dd6bf93a (diff) | |
| download | tools-105c4cf4a6f4a4cc72edabc3d4ee4d25c4d8c1b7.tar.gz tools-105c4cf4a6f4a4cc72edabc3d4ee4d25c4d8c1b7.tar.xz tools-105c4cf4a6f4a4cc72edabc3d4ee4d25c4d8c1b7.zip | |
removed -f paramter in call to func-find-resources
Diffstat (limited to 'cloudmasterd/lib')
| -rw-r--r-- | cloudmasterd/lib/cloudmasterd.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudmasterd/lib/cloudmasterd.rb b/cloudmasterd/lib/cloudmasterd.rb index 1836630..9de3acd 100644 --- a/cloudmasterd/lib/cloudmasterd.rb +++ b/cloudmasterd/lib/cloudmasterd.rb @@ -89,7 +89,7 @@ module Cloudmasterd::Controllers # Find the best host on which to create a VM that requires # the given "disk_size" and "ram" def _get_best_host(disk_size, ram) - return `func-find-resources -m #{ram} -d #{disk_size} -f HostVolGroupImages`.split(':')[0] + return `func-find-resources -m #{ram} -d #{disk_size}`.split(':')[0] end # run the appropriate koan command to create the given "fqdn" |
