X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=src%2Fsubcommands%2Fma%2Fadd-certifier;h=9ad0515efa35af4922cb2294135b6dc75a4f679c;hb=334f15b617fd89162336697e73c7f5645f0d1d3d;hp=3bd800c25cd6ee8cd4f2c6a0899ead07e738bb60;hpb=53f4ee78f320371a0f07865b21fdb4d6707a79d6;p=monkeysphere.git diff --git a/src/subcommands/ma/add-certifier b/src/subcommands/ma/add-certifier old mode 100755 new mode 100644 index 3bd800c..9ad0515 --- a/src/subcommands/ma/add-certifier +++ b/src/subcommands/ma/add-certifier @@ -1,18 +1,21 @@ -#!/usr/bin/env bash +# -*-shell-script-*- +# This should be sourced by bash (though we welcome changes to make it POSIX sh compliant) # Monkeysphere authentication add-certifier 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. # retrieve key from web of trust, import it into the host keyring, and # ltsign the key in the host keyring so that it may certify other keys +add_certifier() { + local domain local trust local depth @@ -139,3 +142,5 @@ if echo "$ltsignCommand" | \ else failure "Problem adding identify certifier." fi + +}