summaryrefslogtreecommitdiff
path: root/etc/functions
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-02-08 16:30:17 +0100
committerDaniel Friesel <derf@derf.homelinux.org>2009-02-08 16:30:17 +0100
commitc7fb23258a7692e846b115afa427ea36dba02e6d (patch)
tree8c36f38c4ee65870ad8d26c15e002b270bf7f037 /etc/functions
parentdc6044526807ad086bf9ddcd4e651850e703044c (diff)
Removed passwd-a function
Diffstat (limited to 'etc/functions')
-rw-r--r--etc/functions/passwd-a14
1 files changed, 0 insertions, 14 deletions
diff --git a/etc/functions/passwd-a b/etc/functions/passwd-a
deleted file mode 100644
index f1ec85a..0000000
--- a/etc/functions/passwd-a
+++ /dev/null
@@ -1,14 +0,0 @@
-## vim:ft=zsh
-## Change password on all machines
-## Copyright (C) 2008 by Daniel Friesel <derf@derf.homelinux.org>
-## License: WTFPL <http://sam.zoy.org/wtfpl>
-
-typeset host
-
-passwd
-for host in ${(k)hosts}; {
- if [[ $host != $HOST ]]; {
- echo " ---- $host ---- "
- ssh $host passwd
- }
-}