X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=src%2Fsubcommands%2Fma%2Fupdate-users;h=0335e31448f9b3dbc409bf71af406f62ff5cc27f;hb=6923ef580f068ff535af273714e59235260ab7b6;hp=a26d3fbdd0d5732935787fee50e75dcf2f955e07;hpb=53fdf9b3e431d9f3538c1b2196276492bec2fc7e;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 + +}