masson
Version:
Module execution engine for cluster deployments.
25 lines (18 loc) • 500 B
Markdown
title: GCC
module: masson/core/gcc
layout: module
# GCC
GNU project C and C++ compiler.
module.exports = []
module.exports.push 'masson/bootstrap/'
module.exports.push 'masson/core/yum'
## Install
The package "gcc-c++" is installed.
module.exports.push name: 'GCC # Install', timeout: -1, callback: (ctx, next) ->
ctx.service
name: 'gcc-c++'
, (err, serviced) ->
return next err if err
next err, if serviced then ctx.OK else ctx.PASS