Merge remote-tracking branch 'vishwanathj/master'
diff --git a/gettingstarted.md b/gettingstarted.md
index 835abef..fa7e095 100644
--- a/gettingstarted.md
+++ b/gettingstarted.md
@@ -71,7 +71,7 @@
 
 This section will describe how to run a simple "Hello World" example.
 
-First, provide ARIA with the ARIA "hello world"(can be download [here](https://github.com/apache/incubator-ariatosca/tree/master/examples/hello-world)) service-template and name it (e.g.
+First, provide ARIA with the ARIA "hello world"(can be downloaded [here](https://github.com/apache/incubator-ariatosca/tree/master/examples/hello-world)) service-template and name it (e.g.
 ``my-service-template``)::
 
     aria service-templates store examples/hello-world/helloworld.yaml my-service-template
@@ -99,3 +99,16 @@
 
 ARIA is licensed under the
 [Apache License 2.0](https://github.com/apache/incubator-ariatosca/blob/master/LICENSE).
+
+
+Sample install/command files for different ARIA releases
+--------------------------------------------------------
+
+0.1.1                                                                                                                                          
+-----                                                                                                                                          
+                                                                                                                                               
+[Ubuntu 16.04](https://github.com/apache/incubator-ariatosca-website/samples/Ubuntu/ubuntu1604_aria011)                                        
+                                                                                                                                               
+[CenOS 7](https://github.com/apache/incubator-ariatosca-website/samples/CentOS/centos7_aria011)                                                
+                                                                                                                                               
+Docker  TBD
\ No newline at end of file
diff --git a/samples/CentOS/centos7_aria011 b/samples/CentOS/centos7_aria011
new file mode 100644
index 0000000..18e0f8f
--- /dev/null
+++ b/samples/CentOS/centos7_aria011
@@ -0,0 +1,36 @@
+#Below commands to install aria may need to be run with root priviliges
+yum -y update
+
+yum clean all
+
+yum install -y yum-plugin-ovl
+
+yum install -y python-devel gcc libffi-devel openssl-devel epel-release curl git
+
+yum install wget -y
+
+curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"
+
+python get-pip.py
+
+pip install --upgrade pip setuptools
+
+pip install apache-ariatosca[ssh]==0.1.1 --no-binary apache-ariatosca
+
+#Below commands are to ensure we get the correct example template files
+cd /tmp
+
+git clone https://github.com/apache/incubator-ariatosca.git /tmp/incubator-ariatosca
+
+cd /tmp/incubator-ariatosca
+
+git checkout tags/0.1.1
+
+#Below commands to be run from the /tmp/incubator-ariatosca directory
+aria service-templates store examples/hello-world/helloworld.yaml my-service-template
+
+aria services create my-service -t my-service-template
+
+aria executions start install -s my-service
+
+#Next launch a web browser and type http://localhost:9090
diff --git a/samples/Ubuntu/ubuntu1604_aria011 b/samples/Ubuntu/ubuntu1604_aria011
new file mode 100644
index 0000000..3916a80
--- /dev/null
+++ b/samples/Ubuntu/ubuntu1604_aria011
@@ -0,0 +1,24 @@
+#Below commands to install aria may need to be run with root priviliges
+apt-get update && apt-get install -y python-dev gcc libffi-dev libssl-dev python-pip git wget
+
+pip install --upgrade pip setuptools
+
+pip install apache-ariatosca[ssh]==0.1.1 --no-binary apache-ariatosca
+
+#Below commands are to ensure we get the correct example template files
+cd /tmp
+
+git clone https://github.com/apache/incubator-ariatosca.git /tmp/incubator-ariatosca
+
+cd /tmp/incubator-ariatosca
+
+git checkout tags/0.1.1
+
+#Below commands to be run from the /tmp/incubator-ariatosca directory
+aria service-templates store examples/hello-world/helloworld.yaml my-service-template
+
+aria services create my-service -t my-service-template
+
+aria executions start install -s my-service
+
+#Next launch a web browser and type http://localhost:9090