X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=src%2Fsubcommands%2Fma%2Fremove-certifier;h=59d3f0c3f7203ad38e5475e44ddd1f54efb33708;hb=6923ef580f068ff535af273714e59235260ab7b6;hp=a4eaf548ad5c872810eeaaccd2359dccd553a203;hpb=f5916bc01d76a54d9c2b1738c15da588021c63f3;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 +}