I hereby claim:
- I am tongpu on github.
- I am tongpu (https://keybase.io/tongpu) on keybase.
- I have a public key whose fingerprint is 1E96 34C1 837F F412 EB1A D7AB D807 26D9 F4F0 14C4
To claim this, I am signing this object:
#!/usr/bin/env python | |
from email.mime.text import MIMEText | |
import os | |
import re | |
import smtplib | |
mailfrom = '[email protected]' | |
mailto = '[email protected]' | |
mailerr = '[email protected]' |
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: taskd | |
# Required-Start: $local_fs $remote_fs $network $syslog | |
# Required-Stop: $local_fs $remote_fs $network $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Starts Taskserver | |
# Description: Starts Taskserver using start-stop-daemon |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
uci batch << EOF | |
add network switch_vlan | |
set network.@switch_vlan[-1].device='switch0' | |
set network.@switch_vlan[-1].ports='1t 5t' | |
set network.@switch_vlan[-1].vlan='2' | |
set network.guest='interface' | |
set network.guest.type='bridge' |
/** | |
* PhantomJS script to capture/render screenshots of the slides of a Reveal.js powered slideshow. | |
*/ | |
var page = require('webpage').create(); | |
var args = require('system').args; | |
// Get url to render from command line. | |
var url; | |
if (args.length < 2) { |
--- PKGBUILD 2017-06-17 14:26:50.520424308 +0200 | |
+++ PKGBUILD.completion 2017-06-17 14:29:26.654709540 +0200 | |
@@ -17,4 +17,8 @@ | |
package() { | |
install -Dm 755 "$srcdir/$_kubectl_file" "$pkgdir/usr/bin/kubectl" | |
+ install -d 755 "$pkgdir/usr/share/bash-completion/completions" | |
+ "$pkgdir/usr/bin/kubectl" completion bash > "$pkgdir/usr/share/bash-completion/completions/kubectl" | |
+ install -d 755 "$pkgdir/usr/share/zsh/site-functions" | |
+ "$pkgdir/usr/bin/kubectl" completion zsh > "$pkgdir/usr/share/zsh/site-functions/_kubectl" |
--- a/PKGBUILD | |
+++ b/PKGBUILD | |
@@ -5,12 +5,12 @@ | |
pkgname=sysbench | |
pkgver=1.0.9 | |
-pkgrel=2 | |
+pkgrel=3 | |
pkgdesc="Benchmark tool for evaluating OS parameters that are important for a system running a database under intensive load." | |
url="https://github.com/akopytov/sysbench" |
#!/usr/bin/env bash | |
set -o errexit | |
set -o pipefail | |
set -o nounset | |
if [ ${#} = 0 ]; then | |
profile=default | |
else | |
profile=${1} |
#!/usr/bin/env python | |
import click | |
import configparser | |
import json | |
import os | |
import requests | |
import webbrowser | |
from boto.sts import STSConnection | |
# Maintainer: Simon Weald <simon[at]simonweald[dot]com> | |
pkgname=stern-bin | |
pkgdesc="Multi pod and container log tailing for Kubernetes" | |
pkgver=1.6.0 | |
pkgrel=2 | |
arch=('x86_64') | |
url="https://github.com/wercker/stern" | |
license=('apache') | |
_stern_file=stern_linux_amd64 |