Commit af312800 authored by Scotty Logan's avatar Scotty Logan
Browse files

initial commit

parents
Loading
Loading
Loading
Loading

LICENSE

0 → 100644
+20 −0
Original line number Diff line number Diff line
Copyright (c) 2017, Board of Trustees, Leland Stanford Jr. University

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to permit
persons to whom the Software is furnished to do so, subject to the
following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

0 → 100644
+20 −0
Original line number Diff line number Diff line
# node

#### Table of Contents

1. [Overview](#overview)
2. [Module Description](#module-description)
3. [Limitations](#limitations)

## Overview

Base module for installing Node on a Debian or Ubuntu system

## Module Description

Currently it installs the latest version of Node 6.x

## Limitations


data/common.yaml

0 → 100644
+4 −0
Original line number Diff line number Diff line
# data/common.yaml
# really generic defaults
---
node::version: latest
 No newline at end of file

hiera.yaml

0 → 100644
+14 −0
Original line number Diff line number Diff line
# lamp/hiera.yaml
#
---
version: 5

defaults:
  datadir: data
  data_hash: yaml_data

hierarchy:
  - name: "OS Code Name"
    path: "%{os.distro.codename}.yaml"
  - name: "Common"
    path: "common.yaml"

manifests/init.pp

0 → 100644
+12 −0
Original line number Diff line number Diff line
# configure an Emerging Technology Node server

class node (
  $version
) {

  package { 'nodejs':
    ensure  => $version,
  }

}
Loading