summaryrefslogtreecommitdiff
path: root/install.sh
blob: 645bde4bfd6622a382a70917ed87bc07a072e1f6 (plain)
  1. #!/bin/sh
  2. CWD=`pwd`
  3. sed -i "s|WORKING_DIR|$CWD|"
  4. echo "Which user does your web server run as?"
  5. read username
  6. chown $username spool templates css
  7. echo "Where do we copy the ledger-smb-httpd.conf file to?"
  8. read location
  9. cp ledger-smb-httpd.conf $location
  10. echo "Please restart your web server for the changes to take effect."