Add notes to puppet config about manually deployed symlinks.

(imported from commit 219f3b407bd83e0728f049820ad06092d6eed12a)
This commit is contained in:
Tim Abbott 2013-02-01 16:03:38 -05:00
parent a18d6ff9c7
commit a7281f7e5a
1 changed files with 12 additions and 0 deletions

View File

@ -243,6 +243,9 @@ class humbug_app_frontend {
command => "pip install django-pipeline",
onlyif => "test ! -d /usr/local/lib/python2.6/dist-packages/django-pipeline"
}
# TODO: Add /usr/lib/nagios/plugins/check_send_receive_time ->
# /home/humbug/humbug/api/humbug/bots/check_send_receive.py symlink
}
# TODO: Setup dotdeb repository for this, including apt preferences to
@ -396,6 +399,15 @@ class humbug_postgres {
}
}
class humbug_git {
$git_packages = [ ]
package { $git_packages: ensure => "installed" }
# TODO: Should confirm git repos at /srv/git and then setup
# /srv/git/humbug.git/hooks/post-receive ->
# /home/humbug/humbug/tools/post-receive
}
class humbug_rabbit {
$rabbit_packages = [ "rabbitmq-server" ]
package { $rabbit_packages: ensure => "installed" }