summaryrefslogtreecommitdiff
path: root/doc/plugins/contrib
diff options
context:
space:
mode:
authorhttp://schmonz.livejournal.com/ <http://schmonz.livejournal.com/@web>2009-08-24 04:20:31 -0400
committerJoey Hess <joey@kitenet.net>2009-08-24 04:20:31 -0400
commit8d504e6b3dcacd333c0b07387e7acd3bf8a65d9c (patch)
tree8eaacd33dcf30770b1f641f2aeae1f26dcac17fc /doc/plugins/contrib
parenta27861c512bcf5808c59d9bc2b38c80b559d6d69 (diff)
response
Diffstat (limited to 'doc/plugins/contrib')
-rw-r--r--doc/plugins/contrib/rsync/discussion.mdwn12
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/plugins/contrib/rsync/discussion.mdwn b/doc/plugins/contrib/rsync/discussion.mdwn
index b2d21e6d5..20c04af0f 100644
--- a/doc/plugins/contrib/rsync/discussion.mdwn
+++ b/doc/plugins/contrib/rsync/discussion.mdwn
@@ -24,7 +24,7 @@ to automatically push any changed pages to (1).
As a proof of concept, I added an rsync post-commit hook after
ikiwiki's usual. It worked, just not for web edits, which is how
the wiki will be used. So I wrote this plugin to finish the job.
-The wiki now lives on (1), and clicking "edit" just works.
+The wiki now lives on (1), and clicking "edit" just works. --[[schmonz]]
> Just out of interest, why use `rsync` and not `git push`. i.e. a
> different setup to solve the same problem would be to run a
@@ -36,3 +36,13 @@ The wiki now lives on (1), and clicking "edit" just works.
> network efficient. It also means that corruption at one end
> wouldn't be propagated to the other end. -- [[Will]]
+>> Hey, that's a nice solution. (The site was in svn to begin with,
+>> but it's in git now.) One advantage of my approach in this particular
+>> case: server (1) doesn't have `git` installed, but does have `rsync`,
+>> so (1)'s environment can remain completely untweaked other than the
+>> SSH arrangement. I kind of like that all the sysadmin effort is
+>> contained on one host.
+>>
+>> This plugin is definitely still useful for projects not able to use
+>> a DVCS (of which I've got at least one other), and possibly for
+>> other uses not yet imagined. ;-) --[[schmonz]]