Merge commit 'dkg/master'
[monkeysphere.git] / src / subcommands / ma / update-users
old mode 100755 (executable)
new mode 100644 (file)
index a26d3fb..0335e31
@@ -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 <jrollins@fifthhorseman.net>
+# Jameson Rollins <jrollins@finestructure.net>
 # Jamie McClelland <jm@mayfirst.org>
 # Daniel Kahn Gillmor <dkg@fifthhorseman.net>
 #
-# 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
+
+}