X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=src%2Fsubcommands%2Fma%2Fupdate-users;h=0335e31448f9b3dbc409bf71af406f62ff5cc27f;hb=8001b4523c665ee7d9ded64cbdb7081b023b75c1;hp=a26d3fbdd0d5732935787fee50e75dcf2f955e07;hpb=f5916bc01d76a54d9c2b1738c15da588021c63f3;p=monkeysphere.git diff --git a/src/subcommands/ma/update-users b/src/subcommands/ma/update-users old mode 100755 new mode 100644 index a26d3fb..0335e31 --- a/src/subcommands/ma/update-users +++ b/src/subcommands/ma/update-users @@ -1,14 +1,17 @@ -#!/usr/bin/env bash +# -*-shell-script-*- +# This should be sourced by bash (though we welcome changes to make it POSIX sh compliant) # Monkeysphere authentication update-users subcommand # # The monkeysphere scripts are written by: -# Jameson Rollins +# Jameson Rollins # Jamie McClelland # Daniel Kahn Gillmor # -# They are Copyright 2008, and are all released under the GPL, version 3 -# or later. +# They are Copyright 2008-2009, and are all released under the GPL, +# version 3 or later. + +update_users() { if [ "$1" ] ; then # get users from command line @@ -141,4 +144,6 @@ for uname in $unames ; do # destroy temporary directory rm -rf "$TMPLOC" - done +done + +}