diff options
author | John McLear <john@mclear.co.uk> | 2013-11-24 12:41:12 +0000 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2013-11-24 12:41:12 +0000 |
commit | d6f1aa32362168207525a7dc895c346c189ece66 (patch) | |
tree | 36ef35829ee7c725d22ac5c84123697c070ea65d /bin/deb-src | |
parent | 678c80d1dcae8113b4065e1c44d16fa976ca1608 (diff) | |
download | etherpad-lite-d6f1aa32362168207525a7dc895c346c189ece66.zip |
clean
Diffstat (limited to 'bin/deb-src')
-rwxr-xr-x | bin/deb-src/DEBIAN/postinst | 3 | ||||
-rw-r--r-- | bin/deb-src/sysroot/etc/init/etherpad.conf | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/bin/deb-src/DEBIAN/postinst b/bin/deb-src/DEBIAN/postinst index fbc196ae..2f483f7e 100755 --- a/bin/deb-src/DEBIAN/postinst +++ b/bin/deb-src/DEBIAN/postinst @@ -2,5 +2,6 @@ # Start the services! service etherpad start -echo "Give Etherpad about 3 minutes to install dependencies and start" +echo "Give Etherpad about 3 minutes to install dependencies then visit http://localhost:9001 in your web browser" +echo "To stop etherpad type 'service etherpad stop', To restart type 'service etherpad restart'". rm -f /tmp/etherpad.log /tmp/etherpad.err diff --git a/bin/deb-src/sysroot/etc/init/etherpad.conf b/bin/deb-src/sysroot/etc/init/etherpad.conf index 7292bd93..7fb6e37c 100644 --- a/bin/deb-src/sysroot/etc/init/etherpad.conf +++ b/bin/deb-src/sysroot/etc/init/etherpad.conf @@ -20,7 +20,9 @@ end script script cd $EPHOME/ - exec su -s /bin/sh -c 'exec "$0" "$@"' $EPUSER -- node node_modules/ep_etherpad/node/server.js \ + exec su -s /bin/sh -c 'exec "$0" "$@"' $EPUSER -- node node_modules/ep_etherpad-lite/node/server.js \ >> $EPLOGS/access.log \ 2>> $EPLOGS/error.log + echo "Etherpad is running on http://localhost:9001 - To change settings edit /opt/etherpad/settings.json" + end script |