I hereby claim:
- I am pepa65 on github.
- I am pepa65 (https://keybase.io/pepa65) on keybase.
- I have a public key ASBmtXsKyvpsZ4eoY4-UBQNBb5VROMBinO1CIz6TDLuCbgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env node | |
'use strict'; | |
const fs = require('fs'); | |
const parser = require('./grammar.js').parse; | |
function main() { | |
const args = require('process').argv; | |
if (args.length != 3) { | |
console.error("Only 1 argument needed: file-path") |
#!/usr/bin/env node | |
'use strict'; | |
const fs = require('fs'); | |
const parser = require('./grammar.js').parse; | |
function main() { | |
const args = require('process').argv; | |
if (args.length != 3) { | |
console.error("Only 1 argument needed: file-path") |
#!/bin/bash | |
### Gandi API access | |
## Default values for APIKEY | |
APIKEY='' | |
Usage(){ ## $1: optional error message | |
cat <<-EOF | |
Usage: $0 <method> <parameter> ... [-l] [-v] [-t] [-h] [-a <APIKEY>] |
10_linux | |
10_linux.new | |
10_linux.old | |
30_os-prober | |
30_os-prober.new | |
30_os-prober.old |
#!/bin/bash | |
## Unlocking LUKS with cryptsetup by entering a password through ssh | |
#### For Ubuntu 16.04.1 and friends or Ubuntu 14.04.5 | |
### Areas of modification: | |
## 1. Start networking early: /etc/default/grub | |
## 2. Install dropbear | |
## 3. Modify initramfs: /etc/initramfs-tools | |
## a. Add ssh-keys: /etc/initramfs-tools/root/.ssh/authorized_keys |