The cookbook tag has no wiki summary.
0
votes
0answers
13 views
Downloading and displaying example in ios6 cookbook 6.7
The downloading and displaying example in ios6 cookbook:
dispatch_queue_t concurrentQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_async(concurrentQueue, ^{
...
1
vote
1answer
43 views
How do you modularize a Chef recipe?
Here's an example of a working recipe that loops through an array of website names and create them in IIS using the function createIisWebsite().
def createIisWebsite(websiteName)
iis_site ...
2
votes
1answer
59 views
Opscode Nagios Cookbook Not pulling Cloud IP address
I am trying to generate the nagios hosts.cfg file from the standard opscode nagios cookbook. Using the standard recipe I am continually getting the same errors from the following lines:
...
0
votes
0answers
11 views
couchdb repliaction “end of file”. whats the solution?
while replicating couchdb from one server to another,the cookbooks get replicated, but on the target server when i try to read any file i get "end of file reached". I do not know what i did wrong ...
0
votes
0answers
35 views
Create and tag an ebs volume using the aws cookbook
These are the steps i have followed
Firstly, i include all required dependencies,
then i have a piece of code for creating,attaching an ebs volume;then i have some piece of code to mount it (not ...
1
vote
1answer
80 views
Opscode Chef - way to cleanup /shared/cached-copy
We using Opscode Chef in our pipeline and we notice that the deployment (see http://docs.opscode.com/resource_deploy.html) creates a complete copy of our sourcecode to /shared/cached-copy
It already ...
0
votes
1answer
111 views
How to deploy two django projects in one git repository with chef?
I have a git repository with two Django 1.5 projects: one for a website, the other for a REST api. The git repository looks like this:
api_project/
www_project/
logs/
manage.py
my_app_1/
my_app_2/
...
2
votes
2answers
270 views
Installing a gem after native extension packages during chef execution
I am trying to install the fog gem in a chef recipe though the gem installation occurs before the native packages are being installed so the gem installation fails
package "libxslt-dev"
package ...
0
votes
1answer
166 views
How can I get chef to reboot the node, and pick up the recipe from where it left off?
I'm trying to set up an asterisk server with chef using Berkshelf and Vagrant, and I'd first like to upgrade the kernel by running
apt-get upgrade
, and rebooting my machine.
How can I trigger ...
2
votes
1answer
172 views
ruby chef directive : include_attribute vs. include_attributes
I saw this code at chef attributes file.
include_recipe "deployment"
include_attribute "postgresql"
include_attribute "redis"
include_attributes "uaa"
include_attributes "service_lifecycle"
What's ...
1
vote
0answers
298 views
Vagrant - how to print Chef's command output to stdout?
If we have in Chef cookbook code like:
if !File.exists?('/vagrant/project/target/project/WEB-INF") || node[:compile_project]
bash "build project" do
user "vagrant"
cwd "/vagrant/project"
...
0
votes
1answer
1k views
Cookbook not found : Chef Solo
I downloaded the cookbook "oc-java-master" from the chef community and now I am trying to run it using chef-solo which i have installed on a windows server 2008.
After a lot of googling and ...
0
votes
1answer
78 views
How can I trigger a chef-solo configuration change
I'm using chef-solo, to avoid the headache of having multiple instance to manage (correct me if you think this is not a good idea)
I have defined a 'database' role; I cook it with chef-solo on the ...
3
votes
1answer
145 views
Recipe not being executed in Chef
I'm making a simple recipe that apt-get upgrades the whole system.
include_recipe "apt"
execute "apt-get upgrade -y" do
command "apt-get upgrade -y"
action :nothing
end
but it ...
1
vote
1answer
73 views
Where to specify attributes when installing recipe in chef (ubuntu)?
New to Chef's world.
I found this useful recipe : https://github.com/mdxp/drupal-cookbook
I see the following default attributes :
default['drupal']['version'] = "7.14"
...
1
vote
1answer
161 views
Can I use chef as a PaaS deployment orchestrator to deploy multiple drupal sites?
"I do apologize prior to asking this dumb question "
So, my idea is to have :
A chef server
N nodes
On each node; i'll define a basic role; like "NodeRole" which will have apache,php,mysql
...
1
vote
1answer
258 views
Redis Cookbook Chat Recipe
I am a new starter to Node.Js and Redis. I got the Redis cookbook and was trying out the Chat client & Server recipe.
I was wondering if anybody got the code to work or if there is some bug in ...
1
vote
1answer
217 views
chef cookbook with embedded roles
I've created a chef cookbook, which has lot's of dependencies to other cookbooks. My main problem now is that the recipes from other cookbooks are executed in the random order. If I specify the ...
3
votes
2answers
712 views
Chef - Test for cookbook_file existence
Is there any way to test that a given cookbook_file exists in a chef recipe? I would like to do something like the following:
cookbook_file "/etc/cron.d/#{service}" do
source ...
2
votes
1answer
157 views
Are there any good design pattern cookbook / recipe resources?
i know there are tons of books out there for design patterns in almost any programming language.
and most of them will go through some examples to show you what can be done.
but i'm thinking along ...
0
votes
1answer
435 views
web.py User Authentication with PostgreSQL database example
I am trying to copy and use the example 'User Authentication with PostgreSQL database' from the web.py cookbook. I can not figure out why I am getting the following errors.
at /login
'ThreadedDict' ...
0
votes
0answers
23 views
Steps to make a Software package with Cookbook, Issue tracking, Forum etc [closed]
I don't know if this is the right place for this question but here it is.
I have a complicated product that should be used by field engineers as well as clients. I constantly get support issues and ...
0
votes
1answer
163 views
Fluent NHibernate NaturalId missing?
I have a very simple Mapping I'm trying to do. I'm following the NHibernate 3.0 Cookbook and I've come across an issue with the NaturalId() method missing from FluentNHibernate.dll. The book had me ...
5
votes
1answer
172 views
7
votes
1answer
359 views
Why is one-armed `if` missing from Racket?
In standard Scheme it is possible to write
(if (> x 2)
(set! x (- x 1)))
but this is not possible in Racket -- Racket's if always requires two arms. Why?
4
votes
1answer
65 views
When should I use syntax/loc instead of #' (aka syntax)?
A new syntax object can be constructed by both syntax/loc and syntax (also written #').
When should I use syntax/loc?
3
votes
2answers
452 views
Organizing Chef Cookbooks For Different Servers
I have several different servers used for different purposes. Everyone use mysql, but it should be configured a little bit different. => Different users, different databases.
I have a cookbook that ...
0
votes
1answer
167 views
How to use ark on a hosted chef node
i added the ark cookbook in the run list of my hosted chef node.
Now i want to use ark in another cookbook, that comes right after the ark cookbook.
I included the ark recipe in the recipe of the ...
1
vote
1answer
1k views
BookController in iOS 5 Developer's Cookbook (Erica Sadun) does not start correctly in landscape mode
The problem I'm trying to solve:
I used chapter 05 example 06 BookController in chapter 5 (C05/06-Scrubbing Pages in https://github.com/erica/iOS-5-Cookbook.git ) in a project that have a ...
0
votes
2answers
286 views
Installing cookbook on RubyMine
I am trying to import a folder(open directory) on Ruby Mine but when I do it says "Install missing gems" Everytime I click on it, it installs some and then again gives the same error.
I have Mac OS X ...
2
votes
2answers
322 views
How to remove duplicate code (in general)? [closed]
In an OO language (e.g. but not limited to Java) how do you in fix duplicate code depending on the scope of it's occurrence? It's obvious that it depends on the very detail, but in general I would ...
1
vote
1answer
243 views
Erica Saduns iPhone Developers Cookbook (3.0) Chap 08, Exercise 14 — Resize and Rotate
Regarding Erica Sadun's iPhone Developer Cookbook, in Chapter 8, Exercise 14 Resize and Rotate: the example works just fine, I am able to rotate, resize and whatever. The issue is, how do you ...
23
votes
2answers
567 views
Is there a cookbook guide for GC problems?
Almost everyone eventually runs into GC issues with Java.
Is there a cookbook guide or semi-automated tool to tune GC for Java?
My rationale is this:
Almost anyone eventually has these problems
...
0
votes
1answer
310 views
Android SDK - ActivityNotFoundException
I am working my way through the Android Developer's Cookbook. I have entered in their example code, and it compiles correctly. However, I am getting this exception at run time.
Here is the code ...
7
votes
2answers
4k views
Installing multiple packages via Vagrant + Chef
I've just discovered Vagrant + Chef and I'm trying to create a simple recipe to install multiple packages on the node. I thought something like this could work (I'm completely new tu ruby):
# (From ...
0
votes
2answers
126 views
What's the purpose of this python code snippet (unexpand tabs)
I'm reading python recipes on the Activate State website and found the following code snippet:
def unexpand(astring, tablen=8):
import re
pieces = re.split(r'( +)', astring)
lensofar = 0
...
6
votes
2answers
2k views
Chef cookbook for Solr
I tried to find a cookbook for Solr, but the one at opscode's cookbook base sets up only group and user for solr, not the solr engine itself. My question is a bit twofold. Do you know a working ...
1
vote
0answers
298 views
List of freely available C# recipes [closed]
There are a variety of web sites that purport to offer reusable code in some fashion (Krugle, Koders, byteMyCode, et al). These are great for browsing and for learning by reading other people's code, ...
0
votes
1answer
275 views
Using ModalAlert from cookbook - app does not load
I'm using iphone cookbook code to prompt a user for text in a UIAlertView. The cookbook code is available at
...
-4
votes
2answers
209 views
Where can these be posted besides the Python Cookbook?
Whitespace Assembler
#! /usr/bin/env python
"""Assembler.py
Compiles a program from "Assembly" folder into "Program" folder.
Can be executed directly by double-click or on the command line.
Give ...
5
votes
12answers
400 views
is there a website that compiles css knowledge?
I'm thinking of getting into the web designing business . I am aware that I will bump into a lot of CSS headaches , and I'm certain people have bumped into them long before I did . Is there a website ...
13
votes
4answers
73k views
automatically execute an Excel macro on a cell change
How can I automatically execute an Excel macro each time a value in a particular cell changes?
Right now, my working code is:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not ...
0
votes
2answers
6k views
Create an Excel macro which searches a heading and copy-paste the column
I am new to Excel macros. I have some columns with headings scattered in many sheets. I would like to type a heading in some column which has the cursor and have the column with that heading ...
8
votes
3answers
3k views
Postgres Best Practice
What are your set of best practices when working with PostgreSQL? I'm interested in every aspect of postgres-management/development. Configurations, rules, functions, users, ...
There are a lot of ...
16
votes
16answers
2k views
The shell dotfile cookbook
I constantly hear from other people about how much of the stuff they've used to customize their *nix setup they've shamelessly stolen from other people. So in that spirit, I'd like to start a place ...