From 8001b4523c665ee7d9ded64cbdb7081b023b75c1 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Sat, 31 Jan 2009 18:57:38 -0500 Subject: remove executable bit, remove shebang line, update copyright on subcommands. --- src/subcommands/mh/add-hostname | 9 +++++---- src/subcommands/mh/add-revoker | 5 +++-- src/subcommands/mh/diagnostics | 9 +++++---- src/subcommands/mh/extend-key | 9 +++++---- src/subcommands/mh/gen-key | 9 +++++---- src/subcommands/mh/import-key | 9 +++++---- src/subcommands/mh/publish-key | 7 ++++--- src/subcommands/mh/revoke-hostname | 9 +++++---- src/subcommands/mh/revoke-key | 9 +++++---- 9 files changed, 42 insertions(+), 33 deletions(-) mode change 100755 => 100644 src/subcommands/mh/add-hostname mode change 100755 => 100644 src/subcommands/mh/add-revoker mode change 100755 => 100644 src/subcommands/mh/diagnostics mode change 100755 => 100644 src/subcommands/mh/extend-key mode change 100755 => 100644 src/subcommands/mh/gen-key mode change 100755 => 100644 src/subcommands/mh/import-key mode change 100755 => 100644 src/subcommands/mh/publish-key mode change 100755 => 100644 src/subcommands/mh/revoke-hostname mode change 100755 => 100644 src/subcommands/mh/revoke-key (limited to 'src/subcommands/mh') diff --git a/src/subcommands/mh/add-hostname b/src/subcommands/mh/add-hostname old mode 100755 new mode 100644 index 591f52e..10d5f58 --- a/src/subcommands/mh/add-hostname +++ b/src/subcommands/mh/add-hostname @@ -1,14 +1,15 @@ -#!/usr/bin/env bash +# -*-shell-script-*- +# This should be sourced by bash (though we welcome changes to make it POSIX sh compliant) # Monkeysphere host add-hostname 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. # add hostname user ID to server key diff --git a/src/subcommands/mh/add-revoker b/src/subcommands/mh/add-revoker old mode 100755 new mode 100644 index 8c4651e..f9d0bb6 --- a/src/subcommands/mh/add-revoker +++ b/src/subcommands/mh/add-revoker @@ -1,9 +1,10 @@ -#!/usr/bin/env bash +# -*-shell-script-*- +# This should be sourced by bash (though we welcome changes to make it POSIX sh compliant) # Monkeysphere host add-revoker subcommand # # The monkeysphere scripts are written by: -# Jameson Rollins +# Jameson Rollins # Jamie McClelland # Daniel Kahn Gillmor # diff --git a/src/subcommands/mh/diagnostics b/src/subcommands/mh/diagnostics old mode 100755 new mode 100644 index 5b04b14..7e76da6 --- a/src/subcommands/mh/diagnostics +++ b/src/subcommands/mh/diagnostics @@ -1,14 +1,15 @@ -#!/usr/bin/env bash +# -*-shell-script-*- +# This should be sourced by bash (though we welcome changes to make it POSIX sh compliant) # Monkeysphere host diagnostics 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. # check on the status and validity of the key and public certificates diff --git a/src/subcommands/mh/extend-key b/src/subcommands/mh/extend-key old mode 100755 new mode 100644 index 8f1ecc2..ccbaf0e --- a/src/subcommands/mh/extend-key +++ b/src/subcommands/mh/extend-key @@ -1,14 +1,15 @@ -#!/usr/bin/env bash +# -*-shell-script-*- +# This should be sourced by bash (though we welcome changes to make it POSIX sh compliant) # Monkeysphere host extend-key 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. # extend the lifetime of a host key: diff --git a/src/subcommands/mh/gen-key b/src/subcommands/mh/gen-key old mode 100755 new mode 100644 index 72b9138..aad213a --- a/src/subcommands/mh/gen-key +++ b/src/subcommands/mh/gen-key @@ -1,14 +1,15 @@ -#!/usr/bin/env bash +# -*-shell-script-*- +# This should be sourced by bash (though we welcome changes to make it POSIX sh compliant) # Monkeysphere host gen-key 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. gen_key() { diff --git a/src/subcommands/mh/import-key b/src/subcommands/mh/import-key old mode 100755 new mode 100644 index 9ba51d2..386e02d --- a/src/subcommands/mh/import-key +++ b/src/subcommands/mh/import-key @@ -1,14 +1,15 @@ -#!/usr/bin/env bash +# -*-shell-script-*- +# This should be sourced by bash (though we welcome changes to make it POSIX sh compliant) # Monkeysphere host import-key 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. import_key() { diff --git a/src/subcommands/mh/publish-key b/src/subcommands/mh/publish-key old mode 100755 new mode 100644 index 8b36a18..6c69569 --- a/src/subcommands/mh/publish-key +++ b/src/subcommands/mh/publish-key @@ -1,13 +1,14 @@ -#!/usr/bin/env bash +# -*-shell-script-*- +# This should be sourced by bash (though we welcome changes to make it POSIX sh compliant) # Monkeysphere host publish-key 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 +# They are Copyright 2008-2009, and are all released under the GPL, version 3 # or later. # publish server key to keyserver diff --git a/src/subcommands/mh/revoke-hostname b/src/subcommands/mh/revoke-hostname old mode 100755 new mode 100644 index 01f6ee0..b519cf6 --- a/src/subcommands/mh/revoke-hostname +++ b/src/subcommands/mh/revoke-hostname @@ -1,14 +1,15 @@ -#!/usr/bin/env bash +# -*-shell-script-*- +# This should be sourced by bash (though we welcome changes to make it POSIX sh compliant) # Monkeysphere host revoke-hostname 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. # revoke hostname user ID from host key diff --git a/src/subcommands/mh/revoke-key b/src/subcommands/mh/revoke-key old mode 100755 new mode 100644 index 3810a0b..cccdc22 --- a/src/subcommands/mh/revoke-key +++ b/src/subcommands/mh/revoke-key @@ -1,14 +1,15 @@ -#!/usr/bin/env bash +# -*-shell-script-*- +# This should be sourced by bash (though we welcome changes to make it POSIX sh compliant) # Monkeysphere host revoke-key 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. # revoke host key -- cgit v1.2.3