Unlimit the number of open files on etherpad

Change-Id: I590fd7ed4ff4c465ba4b11c500720d88f12a4b40
This commit is contained in:
Spencer Krum 2015-10-26 19:53:26 -07:00
parent 095ab35ba3
commit e737a1f533

View File

@ -49,6 +49,14 @@ class openstack_project::etherpad (
backup_user => 'bup-etherpad',
backup_server => 'ci-backup-rs-ord.openstack.org',
}
include ulimit
ulimit::conf { 'unlimit_etherpad_files':
limit_domain => 'eplite',
limit_type => 'hard',
limit_item => 'nofile',
limit_value => '10000'
}
}
# vim:sw=2:ts=2:expandtab:textwidth=79