From: tausq <> Date: Mon, 8 Jan 2001 06:03:23 +0000 (+0000) Subject: added ssh key fields X-Git-Tag: debian_userdir-ldap_0-3-7~117 X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap.git;a=commitdiff_plain;h=c231204f05792c989c79df57ec38850e5c381f04 added ssh key fields --- diff --git a/web/machines.cgi b/web/machines.cgi index e0ee813..92deede 100755 --- a/web/machines.cgi +++ b/web/machines.cgi @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $Id: machines.cgi,v 1.8 2000/08/20 02:32:46 tausq Exp $ +# $Id: machines.cgi,v 1.9 2001/01/08 07:03:23 tausq Exp $ # (c) 1999 Randolph Chung. Licensed under the GPL. @@ -27,16 +27,18 @@ my (%attrs, @attrorder, %summaryattrs, @summaryorder); 'bandwidth' => 'Bandwidth', 'status' => 'Status', 'notes' => 'Notes', + 'sshrsahostkey' => 'SSH host key (RSA)', + 'sshdsahostkey' => 'SSH host key (DSA)', 'description' => 'Description', 'createtimestamp' => 'Entry created', 'modifytimestamp' => 'Entry modified' ); # This defines what fields are displayed, and in what order -@attrorder = ('hostname', 'admin', 'architecture', 'distribution', 'access', - 'sponsor', 'sponsor-admin', 'location', 'machine', 'memory', - 'disk', 'bandwidth', 'status', 'notes', 'description', - 'createtimestamp', 'modifytimestamp'); +@attrorder = qw(hostname admin architecture distribution access + sponsor sponsor-admin location machine memory + disk bandwidth status notes sshrsahostkey sshdsahostkey + description createtimestamp modifytimestamp); # ditto for summary %summaryattrs = ('hostname' => 'Host name',