summaryrefslogtreecommitdiff
path: root/install.sh
blob: ae92c03f3db20087060febbc4f08ac246212ae78 (plain)
  1. #!/bin/sh
  2. CWD=`pwd`
  3. sed -i.orig "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 ledgersmb-httpd.conf $location
  10. echo "Please restart your web server for the changes to take effect."