forked from chef-boneyard/cookbooks
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
COOK-814, add pill template files and template resources
- Loading branch information
jtimberman
committed
Nov 7, 2011
1 parent
1a69cd1
commit 9fedba3
Showing
5 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Bluepill.application("axfrdns") do |app| | ||
|
||
app.process("axfrdns") do |process| | ||
process.pid_file = "/var/run/axfrdns.pid" | ||
process.start_command = "<%= node[:djbdns][:axfrdns_dir] %>/run" | ||
process.working_dir = "<%= node[:djbdns][:axfrdns_dir] %>" | ||
process.uid = process.gid = "tinydns" | ||
process.start_grace_time = 5.seconds | ||
process.stop_grace_time = 5.seconds | ||
process.restart_grace_time = 30.seconds | ||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Bluepill.application("tinydns") do |app| | ||
|
||
app.process("tinydns") do |process| | ||
process.pid_file = "/var/run/tinydns.pid" | ||
process.start_command = "<%= node[:djbdns][:tinydns_dir] %>/run" | ||
process.working_dir = "<%= node[:djbdns][:tinydns_dir] %>" | ||
process.uid = process.gid = "tinydns" | ||
process.start_grace_time = 5.seconds | ||
process.stop_grace_time = 5.seconds | ||
process.restart_grace_time = 30.seconds | ||
end | ||
|
||
end |