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
#!/bin/sh | |
# PROVIDE: ghost | |
# KEYWORD: shutdown | |
PATH="/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin" | |
. /etc/rc.subr | |
name="ghost" | |
rcvar=${name}_enable |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCxR6b5+s/Z4sMtSe0p23Vw8o8d7BCQdYy/PUuUloCVArz8A1wx37yOn5Rd1CtS7uGXQYQv1XtEexXv9bSqNHeTcr//ie0R/QVSXilMRlmYH92lXOGwnAaaylgiZ5de8TQ609maiZkAuyMJONRkOhFmGxnKn6VShRS30Dwrsz7zyF5eOyOhMdRPZdrSzPt8MU23OuBfVwhL1gcbAYZP/ujvqgNzv1ba31L+eRnryWaJXpI1D3N21hjVNlZlM3/P5HjpzEDobl+lH0xNtt8bPGQYErNf3jmypRLbzdBiDEa/nNC/22TWCjHeUAlfAqU26ZHPoV3//C08e/5CF9hILok3 [email protected] |
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
Handlebars.registerHelper('loc', function(keyword) { | |
var lang = navigator.language || navigator.userLanguage; | |
// If lang is not found, try without subtag and fall back to en | |
lang = locale[lang] || (lang.indexOf('-') !== -1 && locale[lang.split('-')[0]]) || locale['en'] ; | |
return lang && _.template('<%= ' + keyword + ' %>', lang) || keyword; | |
/* without underscore | |
var keys = keyword.split("."); | |
for (var i in keys) { |
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
# -*- coding: utf-8 -*- | |
''' | |
JavaScript Renderer for Salt | |
Example SLS file: | |
#!js | |
module.exports.wget = function () { | |
return { pkg: ['installed'] }; |
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
# yum update | |
Loaded plugins: fastestmirror | |
base | 3.6 kB 00:00:00 | |
epel/x86_64/metalink | 26 kB 00:00:00 | |
epel | 3.7 kB 00:00:00 | |
extras | 3.3 kB 00:00:00 | |
updates | 3.4 kB 00:00:00 | |
(1/6): base/7/x86_64/group_gz | 157 kB 00:00:00 | |
(2/6): epel/x86_64/group_gz | 163 kB 00:00:00 | |
updates/7/x86_64/primary_db FAILED |
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
# API Usage | |
RatticDB include an API that you an use to programatically acces the data you have stored. Currently the API only supports read access for credential, however we expect this to change at time progresses. | |
## Authentication | |
To authenticate to RatticDB you can choose to use either session authentication, or API Key authentication. Sessions keys require a user to have logged in with their username, password and if configured their one time pad device. API keys on the other hand are static values that are designed for systems that may not have interactive access. | |
To use the session based authentication simply use your browser to log into RatticDB and then browse to the API endpoints. Because the Accept header cannot usually be controlled in most web browsers you need to provide a hint as to the format of the request via the query string. So for example if you wanted to hit the `/api/v1/cred/1/` endpoint and get JSON data returned you would append `?format=json` which would make the URL be `/api/v1/ |
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 yum install http://download.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-2.noarch.rpm | |
sudo yum install @development qemu qemu-kvm libvirt libvirt-python wget man python-pip sqlite-devel libxml2-python libxml2-devel libxslt-devel | |
sudo systemctl enable libvirtd | |
sudo systemctl start libvirtd | |
sudo echo '[Remote libvirt SSH access] | |
Identity=unix-user:virtkick | |
Action=org.libvirt.unix.manage | |
ResultAny=yes | |
ResultInactive=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
module Middleman | |
module CoreExtensions | |
module Rendering | |
# Rendering instance methods | |
module InstanceMethods | |
def _render_with_all_renderers(path, locs, context, opts, &block) | |
# Keep rendering template until we've used up all extensions. This | |
# handles cases like `style.css.sass.erb` | |
content = nil |
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
diff --git a/pkgs/build-support/rust/default.nix b/pkgs/build-support/rust/default.nix | |
index 79e4366..aa90c23 100644 | |
--- a/pkgs/build-support/rust/default.nix | |
+++ b/pkgs/build-support/rust/default.nix | |
@@ -26,6 +26,8 @@ in stdenv.mkDerivation (args // { | |
configurePhase = args.configurePhase or "true"; | |
+ unpackPhase = args.unpackPhase or "unpackPhase"; | |
+ |
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
<!DOCTYPE html> | |
<html> | |
<body> | |
<div id="terminal" | |
style="position:relative; width:100%; height:500px"></div> | |
</body> | |
<script src="hterm_all.js"></script> | |
<script> | |
hterm.defaultStorage = new lib.Storage.Local() |
OlderNewer