diff options
author | Peter Palfrader <peter@palfrader.org> | 2009-05-08 19:03:30 +0000 |
---|---|---|
committer | weasel <weasel@bc3d92e2-beff-0310-a7cd-cc87d7ac0ede> | 2009-05-08 19:03:30 +0000 |
commit | fcc04c9c51f229aeaa70f8ccce9f26e2872a35b3 (patch) | |
tree | a37edcf30ecdcd4d472e04da3c285a9d6b7b8dba /zshfunc/upgrade-porter-chroots | |
parent | 5cc06ca537a2f1f9373bfc91dccea38775ac4575 (diff) |
Split out functions
git-svn-id: svn+ssh://asteria.noreply.org/svn/weaselutils/trunk@388 bc3d92e2-beff-0310-a7cd-cc87d7ac0ede
Diffstat (limited to 'zshfunc/upgrade-porter-chroots')
-rw-r--r-- | zshfunc/upgrade-porter-chroots | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/zshfunc/upgrade-porter-chroots b/zshfunc/upgrade-porter-chroots new file mode 100644 index 0000000..7f22060 --- /dev/null +++ b/zshfunc/upgrade-porter-chroots @@ -0,0 +1,11 @@ +## vim:ft=zsh:foldmethod=marker + +upgrade-porter-chroots() { + cd + for i in $DEBPORTERHOSTS; do + mkdir hosts/chroot-$i 2>/dev/null || continue; + echo $i; + preexec $i; + ssh $i -t 'sudo /usr/sbin/upgrade-porter-chroots' + done +} |