Skip to content
Snippets Groups Projects
Commit 7e74e7db authored by Iustin Pop's avatar Iustin Pop
Browse files

hspace: add display of instance spec

This is mostly for user-friendliness in the default mode, when we don't
specify the instance parameters.
parent e6f4f05c
No related branches found
No related tags found
No related merge requests found
......@@ -220,6 +220,11 @@ main = do
hPutStrLn stderr "Error: this program doesn't take any arguments."
exitWith $ ExitFailure 1
printf "Spec RAM: %d\n" (optIMem opts)
printf "Spec disk: %d\n" (optIDsk opts)
printf "Spec CPUs: %d\n" (optIVCPUs opts)
printf "Spec nodes: %d\n" (optINodes opts)
let verbose = optVerbose opts
(fixed_nl, il, csf) <- CLI.loadExternalData opts
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment