diff options
author | Jameson Rollins <jrollins@finestructure.net> | 2010-03-23 02:12:33 -0400 |
---|---|---|
committer | Jameson Rollins <jrollins@finestructure.net> | 2010-03-23 02:12:33 -0400 |
commit | dbeab30f940705e3813746ccf7480619d8261d37 (patch) | |
tree | 099a0b3224b666bfc1289462f1a6d01a24763102 /website/bugs/genericize-filesystem-locations-for-testsuite.mdwn | |
parent | 0f6ef9923f4d70e2a79edd898f6ac46b617480c9 (diff) | |
parent | 2f9fe93b98ed32b662212899db6ba2174c1138d3 (diff) |
Merge remote branch 'mjgoins/master'
Conflicts:
doc/george/changelog
Diffstat (limited to 'website/bugs/genericize-filesystem-locations-for-testsuite.mdwn')
-rw-r--r-- | website/bugs/genericize-filesystem-locations-for-testsuite.mdwn | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/website/bugs/genericize-filesystem-locations-for-testsuite.mdwn b/website/bugs/genericize-filesystem-locations-for-testsuite.mdwn deleted file mode 100644 index 6cc3773..0000000 --- a/website/bugs/genericize-filesystem-locations-for-testsuite.mdwn +++ /dev/null @@ -1,32 +0,0 @@ -[[!meta title="genericize all filesystem locations to enable test suite:" ]] - -I'm in the process of writing a testsuite for the monkeysphere so that -we can verify that it actually performs all the basic expected duties -properly. - -It occurs to me that lines like these: - - ETC="/etc/monkeysphere" - VARLIB="/var/lib/monkeysphere" - -Actually make it very difficult to generically test the tool without -it being installed system-wide. - -Is there any reason that we should not allow these directories to be -overridden with environment variables in the same way that -`/usr/share/monkeysphere/share` is handled? - - SHARE=${MONKEYSPHERE_SHARE:-"/usr/share/monkeysphere"} - -I guess i'm proposing something like: - - SYSCONFIGDIR=${MONKEYSPHERE_SYSCONFIGDIR:-"/etc/monkeysphere"} - SYSDATADIR=${MONKEYSPHERE_SYSDATADIR:-"/var/lib/monkeysphere"} - -Thoughts? - ---dkg - ---- - -[[bugs/done]] on 2008-10-11 |