diff options
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 - } -} |