Description

http://moinmoin.wikiwikiweb.de/HelpOnInstalling/WikiInstanceCreation, createinstance.sh tries:

chown www-data.www-data

also, the path of shared might be found out differently ... given createinstance will be placed in bin.

Workaround

change the script yourself.

Solution

change two things:

# path of MoinMoin shared files
#SHARE=/usr/local/share/moin
pythonexe=`which python`
SHARE=`dirname $pythonexe`/../share/moin

#chown -R $USER.$GROUP $INSTANCE
chown -R $USER:$GROUP $INSTANCE

Patch

I have made patch which changes some things and also puts the createinstance additionally in contrib/createinstance with a README.txt. I think that should made it easier to be used. -- ThiloPfennig 2007-05-06 16:38:01

Discussion

This can be fixed by reading EditingOnMoinMaster.

I think what would really be cool is if this would be a python script that also could use internals of moin. Maybe also the moin binary could be extended to support such action in future? -- ThiloPfennig 2007-05-06 16:53:18

Plan


CategoryMoinMoinBug

MoinMoin: MoinMoinBugs/MoinCreateInstance (last edited 2007-10-29 19:09:02 by localhost)