X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=src%2Fsubcommands%2Fma%2Fremove-certifier;h=59d3f0c3f7203ad38e5475e44ddd1f54efb33708;hb=334f15b617fd89162336697e73c7f5645f0d1d3d;hp=a4eaf548ad5c872810eeaaccd2359dccd553a203;hpb=b7e17887ac20bc5916d830f5282b07f4c0360c2a;p=monkeysphere.git diff --git a/src/subcommands/ma/remove-certifier b/src/subcommands/ma/remove-certifier old mode 100755 new mode 100644 index a4eaf54..59d3f0c --- a/src/subcommands/ma/remove-certifier +++ b/src/subcommands/ma/remove-certifier @@ -1,17 +1,20 @@ -#!/usr/bin/env bash +# -*-shell-script-*- +# This should be sourced by bash (though we welcome changes to make it POSIX sh compliant) # Monkeysphere authentication remove-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. # delete a certifiers key from the host keyring +remove_certifier() { + local keyID local fingerprint @@ -43,3 +46,4 @@ else failure "Problem removing identity certifier." fi +}