From b6939bf6e772108c6afd8d610d73fc080c495255 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 18 Jan 2015 16:22:36 +0100 Subject: misc Signed-off-by: Florian Pritz --- gen-perl-pkg | 13 +++++++------ qinit | 2 +- sftp-mount.sh | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/gen-perl-pkg b/gen-perl-pkg index c63e1c9..f229520 100755 --- a/gen-perl-pkg +++ b/gen-perl-pkg @@ -1,10 +1,11 @@ #!/bin/bash set -e -pkg=$1 -export MAINTAINER="Florian Pritz " -target=~/arch/community +for pkg in "$@"; do + export MAINTAINER="Florian Pritz " + target=~/arch/community -genpkg $pkg -mkdir -p "$target/$pkg/"{trunk,repos} -cp "~/pkg/dest/$pkg/PKGBUILD" "$target/$pkg/trunk/" + genpkg $pkg + mkdir -p "$target/$pkg/"{trunk,repos} + cp "$HOME/pkg/dest/$pkg/PKGBUILD" "$target/$pkg/trunk/" +done diff --git a/qinit b/qinit index 5054763..6ca428e 100755 --- a/qinit +++ b/qinit @@ -25,7 +25,7 @@ shopt -s nullglob ### Paths ################################ #declare config_root=/mnt/levant/nfs/tmp/Florian/qemu declare config_root=/mnt/data/qemu -declare -r machines=$config_root/machines +declare -r machines=~/.config/qinit-machines declare isoroot=$config_root declare imgroot=$config_root diff --git a/sftp-mount.sh b/sftp-mount.sh index 9418146..75e8928 100755 --- a/sftp-mount.sh +++ b/sftp-mount.sh @@ -7,7 +7,7 @@ for i in "$@"; do if ! mountpoint -q $mnt; then mkdir -p $mnt - sshfs web-$i@karif: $mnt + sshfs -o reconnect,kernel_cache web-$i@karif: $mnt else fusermount -u $mnt rmdir $mnt -- cgit v1.2.3-24-g4f1b