Package org.jclouds.scriptbuilder.statements.chef

Examples of org.jclouds.scriptbuilder.statements.chef.InstallChefUsingOmnibus


   @Provides
   @Named("installChefOmnibus")
   @Singleton
   Statement installChefUsingOmnibus() {
      return new InstallChefUsingOmnibus();
   }
View Full Code Here


                                .directory("/var/chef/cookbooks/" + recipe) //
                                .build());
                    }

                    // Configure Chef Solo to bootstrap the selected recipes
                    bootstrapBuilder.add(new InstallChefUsingOmnibus());
                    bootstrapBuilder.add(ChefSolo.builder() //
                            .cookbookPath("/var/chef/cookbooks") //
                            .runlist(RunList.builder().recipes(recipeList).build()) //
                            .build());
View Full Code Here

   @Provides
   @Named("installChefOmnibus")
   @Singleton
   Statement installChefUsingOmnibus() {
      return new InstallChefUsingOmnibus();
   }
View Full Code Here

TOP

Related Classes of org.jclouds.scriptbuilder.statements.chef.InstallChefUsingOmnibus

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.