From e6d6c460cbe45ef8e87020bc775772cb71a5b861 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Tue, 2 Sep 2008 00:59:16 -0400 Subject: moved all apt repository references to archive.monkeysphere.info. --- doc/george/changelog | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'doc/george') diff --git a/doc/george/changelog b/doc/george/changelog index fcd5a12..1ed81d4 100644 --- a/doc/george/changelog +++ b/doc/george/changelog @@ -7,6 +7,11 @@ * changes to this system (first command at top, last at bottom) * ****************************************************************************** +2008-09-01 - dkg + * set up http://dkg.monkeysphere.info so that i could play around + with ikiwiki updates + * moved apt repository over to http://archive.monkeysphere.info/ + 2008-08-26 - dkg * aptitude update && aptitude full-upgrade * added account 'daniel' for Dan Scott, and set him up with a way -- cgit v1.2.3 From 76e67ee7418efcb51788e5577f3f09d28c02709a Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Tue, 2 Sep 2008 01:05:33 -0400 Subject: more updates as i pursue service-specific hostnames. --- debian/changelog | 2 ++ debian/control | 4 ++-- doc/george/changelog | 1 + website/community.mdwn | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) (limited to 'doc/george') diff --git a/debian/changelog b/debian/changelog index 9a46d9e..76e4d04 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ monkeysphere (0.12-1) UNRELEASED; urgency=low * Improved output handling. + * debian/control: switched Homepage: and Vcs-Git: to canonicalized + upstream hostnames. -- Jameson Graef Rollins Sun, 24 Aug 2008 23:49:23 -0700 diff --git a/debian/control b/debian/control index 2984464..ca07a5d 100644 --- a/debian/control +++ b/debian/control @@ -5,8 +5,8 @@ Maintainer: Daniel Kahn Gillmor Uploaders: Jameson Rollins Build-Depends: debhelper (>= 7.0), libgnutls-dev (>= 2.4.0), git-core Standards-Version: 3.8.0.1 -Homepage: http://monkeysphere.info/ -Vcs-Git: git://monkeysphere.info/monkeysphere +Homepage: http://web.monkeysphere.info/ +Vcs-Git: git://git.monkeysphere.info/monkeysphere Dm-Upload-Allowed: yes Format: 3.0 (git) diff --git a/doc/george/changelog b/doc/george/changelog index 1ed81d4..5c2f010 100644 --- a/doc/george/changelog +++ b/doc/george/changelog @@ -11,6 +11,7 @@ * set up http://dkg.monkeysphere.info so that i could play around with ikiwiki updates * moved apt repository over to http://archive.monkeysphere.info/ + * aptitude update && aptitude dist-upgrade 2008-08-26 - dkg * aptitude update && aptitude full-upgrade diff --git a/website/community.mdwn b/website/community.mdwn index 4cbd9cd..c878fc2 100644 --- a/website/community.mdwn +++ b/website/community.mdwn @@ -22,7 +22,7 @@ git](http://www.spheredev.org/wiki/Git_for_the_lazy), you can [git clone](http://www.kernel.org/pub/software/scm/git/docs/git-clone.html) from this web site: - git clone git://monkeysphere.info/monkeysphere + git clone git://git.monkeysphere.info/monkeysphere ### Individual developer repositories ### -- cgit v1.2.3 From e2e87dd0cba22432aa16151bafe5db0b145a3478 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Tue, 2 Sep 2008 01:12:52 -0400 Subject: completing the service-specific hostname canonicalization (i think). --- doc/announcement.html | 13 ++++++++----- doc/george/changelog | 2 ++ src/monkeysphere-server | 2 +- website/bugs/add-man-pages-to-website.mdwn | 2 +- 4 files changed, 12 insertions(+), 7 deletions(-) (limited to 'doc/george') diff --git a/doc/announcement.html b/doc/announcement.html index 1787142..68607ac 100644 --- a/doc/announcement.html +++ b/doc/announcement.html @@ -30,8 +30,8 @@ key) across a group of machines by disabling authentication for that user?

A group of us have been working on a public key infrastructure for -SSH. Monkeysphere makes use of -the existing OpenPGP web-of-trust to fetch and cryptographically +SSH. Monkeysphere makes use +of the existing OpenPGP web-of-trust to fetch and cryptographically validate (and revoke!) keys. This works in either directions: both authorized_keys and known_hosts are handled. Monkeysphere gives users and admins tools to deal with SSH @@ -39,14 +39,17 @@ keys by thinking about the people and machines to whom the keys belong, instead of requiring humans to do tedious (and error-prone) manual key verification.

-

We have debian packages +

We have debian packages available which should install against lenny, a mailing list, and open ears for good questions, suggestions and criticism.

-

If you have a chance to give it a try (as a user -or as an admin), it would be great to If you have a chance to give it a try (as a +user or as an +admin), it would be great to get feedback.

diff --git a/doc/george/changelog b/doc/george/changelog index 5c2f010..8b03a7f 100644 --- a/doc/george/changelog +++ b/doc/george/changelog @@ -12,6 +12,8 @@ with ikiwiki updates * moved apt repository over to http://archive.monkeysphere.info/ * aptitude update && aptitude dist-upgrade + * canonicalizing hostname for normal web access to + http://web.monkeysphere.info 2008-08-26 - dkg * aptitude update && aptitude full-upgrade diff --git a/src/monkeysphere-server b/src/monkeysphere-server index 4c8ecdc..2966f7c 100755 --- a/src/monkeysphere-server +++ b/src/monkeysphere-server @@ -469,7 +469,7 @@ revoke_hostname() { echo "WARNING: There is a known bug in this function." echo "This function has been known to occasionally revoke the wrong user ID." echo "Please see the following bug report for more information:" - echo "http://monkeysphere.info/bugs/revoke-hostname-revoking-wrong-userid/" + echo "http://web.monkeysphere.info/bugs/revoke-hostname-revoking-wrong-userid/" read -p "Are you sure you would like to proceed? (y/N) " OK; OK=${OK:=N} if [ ${OK/y/Y} != 'Y' ] ; then failure "aborting." diff --git a/website/bugs/add-man-pages-to-website.mdwn b/website/bugs/add-man-pages-to-website.mdwn index 4a8d2e2..399438a 100644 --- a/website/bugs/add-man-pages-to-website.mdwn +++ b/website/bugs/add-man-pages-to-website.mdwn @@ -1,7 +1,7 @@ [[meta title="Add man pages to web site"]] We should publish the various monkeysphere man pages in browsable form -somewhere under http://monkeysphere.info/. Ideally, this would be +somewhere under http://web.monkeysphere.info/. Ideally, this would be updated automatically from the sources for the official man pages themselves. -- cgit v1.2.3