Set puppet class names to lower case
authorTony Hirst <tony.hirst@gmail.com>
Thu, 22 Jan 2015 15:06:16 +0000 (15:06 +0000)
committerTony Hirst <tony.hirst@gmail.com>
Thu, 22 Jan 2015 15:06:16 +0000 (15:06 +0000)
Vagrantfile
modules/tm351_modules/manifests/box/tm351LTS.pp

index 61da809401882413bab279b24bbecdf18917ba9d..d8819d46c91a8e25df23377146167e43f3bf64d5 100644 (file)
@@ -27,20 +27,20 @@ Vagrant.configure("2") do |config|
     /usr/local/lib/node_modules/tty.js/bin/tty.js --port 3000 --daemonize
   SH
   
-  config.vm.define :tm351LTS do |tm351LTS|
-    tm351LTS.vm.hostname = "tm351LTS"
-    tm351LTS.vm.provider :virtualbox do |virtualbox|
+  config.vm.define :tm351lts do |tm351lts|
+    tm351lts.vm.hostname = "tm351lts"
+    tm351lts.vm.provider :virtualbox do |virtualbox|
       virtualbox.name = "tm351LTS-d2-user"
       #virtualbox.memory = 2048
       #virtualbox.cpus = 1 
       # virtualbox.gui = true
     end
     #ipython notebook
-    tm351LTS.vm.network :forwarded_port, guest: 8888, host: 8888, auto_correct: true
+    tm351lts.vm.network :forwarded_port, guest: 8888, host: 8888, auto_correct: true
     #openrefine
-    tm351LTS.vm.network :forwarded_port, guest: 3334, host: 3334, auto_correct: true
+    tm351lts.vm.network :forwarded_port, guest: 3334, host: 3334, auto_correct: true
     #tty.js
-    tm351LTS.vm.network :forwarded_port, guest: 3000, host: 3000, auto_correct: true
+    tm351lts.vm.network :forwarded_port, guest: 3000, host: 3000, auto_correct: true
   end
 
 #########
index 15084ace8d816216906a1c2a8afb152a13dfc064..c83dce3928c13051700565bf13fcdf1b2b968190 100644 (file)
@@ -1,7 +1,7 @@
 #The class defined here will simply start services running and not update any libraries
 #If you want to run the build script, comment out this class and uncomment the classes below
 
-class tm351_modules::box::tm351LTS {
+class tm351_modules::box::tm351lts {
 
   file {
     '/etc/init.d/ipython3-notebook':