blob: 085e0310430a737a5f6d422bb8f1d2ff416cd99a (
plain)
- #!/bin/sh
- CWD=`pwd`
- sed -i "s|WORKING_DIR|$CWD|"
- echo "Which user does your web server run as?"
- read username
- chmod $username spool templates css
- echo "Where do we copy the ledger-smb-httpd.conf file to?"
- read location
- cp ledger-smb-httpd.conf $location
- echo "Please restart your web server for the changes to take effect."
|