mirror of https://github.com/zulip/zulip.git
Add notes to puppet config about manually deployed symlinks.
(imported from commit 219f3b407bd83e0728f049820ad06092d6eed12a)
This commit is contained in:
parent
a18d6ff9c7
commit
a7281f7e5a
|
@ -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" }
|
||||
|
|
Loading…
Reference in New Issue