From be592ed5acfc374843c407018747cade0783d8ef Mon Sep 17 00:00:00 2001 From: Luke Macken Date: Mon, 10 Mar 2008 18:41:07 -0400 Subject: Update the funcweb README - Added instructions for setting up a non-root user to run funcweb with - Added pam-devel to package dep list - Make running funcweb easier by generating the egg_info when necessary --- funcweb/README | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'funcweb') diff --git a/funcweb/README b/funcweb/README index 5acab13..d37f698 100644 --- a/funcweb/README +++ b/funcweb/README @@ -1,26 +1,29 @@ funcweb ======= -A TurboGears interface to func. +A web interface to func, using TurboGears. -This project is currently under development, and is currently just a +This project is currently under development. It is currently a proof-of-concept and should not be used in a production environment. Running ======= 1) Setup func. https://fedorahosted.org/func/wiki/InstallAndSetupGuide - Be sure to setup a non-root user to run the func client, so you don't have - to run funcweb as root. + + You can give your user access to run func, allowing you to run funcweb + as a non-root user, by doing the following: + + setfacl -d -R -m 'u:MYUSER:rX' /etc/pki/certmaster/ + setfacl -R -m 'u:MYUSER:rX' /etc/pki/certmaster/ 2) Install the necessary software - # yum install TurboGears python-genshi + yum install TurboGears python-genshi pam-devel 3) Setup and run funcweb - $ python setup.py egg_info - $ ./start-funcweb.py + ./start-funcweb.py 4) Use funcweb -- cgit