diff options
author | Florian Pritz <bluewind@xinu.at> | 2014-06-21 13:01:05 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2014-06-21 13:01:05 +0200 |
commit | 9103603c8ac76672f95771ff6597c44c9079d30c (patch) | |
tree | f43aba64c23364545ba581b0d23c26fe76c0037f | |
parent | cb286d9007d07621b7f4a3169a94135ee07aeafc (diff) | |
download | bin-9103603c8ac76672f95771ff6597c44c9079d30c.tar.gz bin-9103603c8ac76672f95771ff6597c44c9079d30c.tar.xz |
add new scripts
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rwxr-xr-x | dbrel | 3 | ||||
-rwxr-xr-x | gen-perl-pkg | 9 | ||||
-rwxr-xr-x | ssh-proxy | 3 |
3 files changed, 15 insertions, 0 deletions
@@ -0,0 +1,3 @@ +#!/bin/bash +ssh nymeria /packages/db-update +ssh nymeria /community/db-update diff --git a/gen-perl-pkg b/gen-perl-pkg new file mode 100755 index 0000000..46615e5 --- /dev/null +++ b/gen-perl-pkg @@ -0,0 +1,9 @@ +#!/bin/bash + +set -e + +pkg=$1 + +genpkg $pkg +mkdir -p ~/arch/community/$pkg/{trunk,repos} +cp ~/pkg/dest/$pkg/PKGBUILD ~/arch/community/$pkg/trunk/ diff --git a/ssh-proxy b/ssh-proxy new file mode 100755 index 0000000..2df13d7 --- /dev/null +++ b/ssh-proxy @@ -0,0 +1,3 @@ +#!/bin/bash + +ssh -o ProxyCommand="ssh $1 -W %h:%p" "${@:2}" |