diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-02-08 16:30:17 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-02-08 16:30:17 +0100 |
commit | c7fb23258a7692e846b115afa427ea36dba02e6d (patch) | |
tree | 8c36f38c4ee65870ad8d26c15e002b270bf7f037 /etc | |
parent | dc6044526807ad086bf9ddcd4e651850e703044c (diff) |
Removed passwd-a function
Diffstat (limited to 'etc')
-rw-r--r-- | etc/functions/passwd-a | 14 |
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 - } -} |