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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
require 'yaml' | |
ansible_vars = YAML.load_file('provisioning/vars.yml') | |
app_name = "couchdb" | |
app_directory = "/home/vagrant/sync" |
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
[ | |
{ | |
"sha": "718b599668e2350966a7a002ba776fe6c798ac2a", | |
"commit": { | |
"author": { | |
"name": "Kasper Markus", | |
"email": "[email protected]", | |
"date": "2016-03-30T12:34:49Z" | |
}, | |
"committer": { |
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
--- | |
- hosts: localhost | |
user: root | |
vars_files: | |
- vars.yml | |
pre_tasks: | |
- include_vars: secrets.yml | |
ignore_errors: yes |
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
--- | |
- hosts: localhost | |
user: root | |
tasks: | |
- name: Install nginx | |
dnf: | |
name: nginx | |
state: latest |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
require 'yaml' | |
ansible_vars = YAML.load_file('provisioning/vars.yml') | |
app_name = ansible_vars["nodejs_app_name"] | |
app_directory = ansible_vars["nodejs_app_install_dir"] |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
require 'yaml' | |
ansible_vars = YAML.load_file('provisioning/vars.yml') | |
app_name = ansible_vars["nodejs_app_name"] | |
app_directory = ansible_vars["nodejs_app_install_dir"] |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
require 'yaml' | |
ansible_vars = YAML.load_file('provisioning/vars.yml') | |
# By default this VM will use 1 processor core and 1GB of RAM. The 'VM_CPUS' and | |
# "VM_RAM" environment variables can be used to change that behaviour. | |
cpus = ENV["VM_CPUS"] || 1 |
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
$ rpm -qpR nodejs-0.10.36-4.fc22.x86_64.rpm | |
/bin/sh | |
ca-certificates | |
libc.so.6()(64bit) | |
libc.so.6(GLIBC_2.14)(64bit) | |
libc.so.6(GLIBC_2.2.5)(64bit) | |
libc.so.6(GLIBC_2.3.4)(64bit) | |
libc.so.6(GLIBC_2.4)(64bit) | |
libcares.so.2()(64bit) | |
libcrypto.so.10()(64bit) |
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
$ sudo dnf install node-gyp | |
Last metadata expiration check performed 0:57:39 ago on Mon Oct 5 17:23:56 2015. | |
Dependencies resolved. | |
============================================================================================================================== | |
Package Arch Version Repository Size | |
============================================================================================================================== | |
Installing: | |
node-gyp noarch 0.10.6-4.fc22 fedora 30 k | |
nodejs-abbrev noarch 1.0.4-8.fc21 fedora 7.8 k | |
nodejs-ansi noarch 0.2.1-2.fc21 fedora 13 k |
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
- job: | |
name: gpii-linux-framework | |
project-type: freestyle | |
node: jenkins-builder | |
concurrent: false | |
scm: | |
- git: | |
url: https://github.com/avtar/linux.git | |
branches: | |
- GPII-1258 |