-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
47 lines (42 loc) · 1.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#! /bin/sh
# curl -Ls http://cloudmesh.github.io/get | sh
# <pre>
echo "#######################################################"
echo "# NOTICE - Developer install with cloudmesh-installer #"
echo "#######################################################"
echo
echo "Please use cloudmesh-installer"
echo
echo " pip install cloudmesh-installer"
echo
echo "Cloudmesh installer has a number of bundles that you can install."
echo "Now start a new terminal and test in teh new terminal the command"
echo "To list the bundles use"
echo
echo " pip install cloudmesh-installer list"
echo
echo "The minimal instalation is"
echo
echo " cloudmesh-installer get cms"
echo
echo "Now start a new terminal and test in teh new terminal the command"
echo
echo " cms help"
echo
echo "In case you work on our class you can also do other bundles such as"
echo
echo " cloudmesh-installer get openstack"
echo
echo
echo "#######################################################"
echo "# NOTICE - User installer with pip #"
echo "#######################################################"
echo
echo " pip install cloudmesh-cms"
echo " pip install cloudmesh-openstack"
echo
echo " cms help"
echo " cms init"
echo
exit 0
# </pre>