This repository has been archived by the owner on Jan 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update node on all machines other than performance platform
They still require the older version of node to run.
- Loading branch information
1 parent
ee00159
commit d15ad17
Showing
6 changed files
with
31 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
--- | ||
|
||
nodejs::version: '0.10.37-1chl1~%{::lsbdistcodename}1' | ||
|
||
govuk::node::s_base::apps: | ||
- performanceplatform_admin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
--- | ||
|
||
nodejs::version: '0.10.37-1chl1~%{::lsbdistcodename}1' | ||
|
||
govuk::node::s_base::apps: | ||
- performanceplatform_big_screen_view | ||
- spotlight |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# == Class: nodejs::repo | ||
# | ||
# Use our own mirror of the nodejs repo. Should be used with `manage_repo` | ||
# disable of the upstream module. | ||
# | ||
# === Parameters | ||
# | ||
# [*apt_mirror_hostname*] | ||
# Hostname to use for the APT mirror. | ||
# | ||
class nodejs::repo( | ||
$apt_mirror_hostname = undef, | ||
) { | ||
apt::source { 'nodejs': | ||
location => "http://${apt_mirror_hostname}/nodejs", | ||
release => $::lsbdistcodename, | ||
architecture => $::architecture, | ||
key => '', | ||
} | ||
} |