Puppet Class: role::phorge
- Defined in:
- modules/role/manifests/phorge.pp
Overview
SPDX-License-Identifier: Apache-2.0
class: role::phorge
Sets up a simple LAMP server and then git clones phorge, the community fork of Phabricator
8 9 10 11 12 13 14 15 16 |
# File 'modules/role/manifests/phorge.pp', line 8
class role::phorge {
system::role { 'phorge':
ensure => 'present',
description => 'httpd, PHP, mariadb, phorge',
}
include profile::phorge
}
|