net-p2p/bittorrent-sync-1.2.82::funtoo-overlay this ebuild works but the init script has config option passed that stops the daemon from loading. ##################################### ""Contents of /etc/init.d/btsync"" ##################################### #!/sbin/runscript # Copyright (C) 2013 Jonathan Vasquez <jvasquez1011@gmail.com> # Distributed under the terms of the Simplified BSD License. NAME="BitTorrent Sync" SYNC_NAME="btsync" SYNC_PATH="/opt/${SYNC_NAME}/" SYNC_BINARY="${SYNC_PATH}/${SYNC_NAME}" #################################################################### # #bellow is the effecting line, note: SYNC_OPTS containing --nodaemon. #SYNC_OPTS="--nodaemon --config /etc/${SYNC_NAME}/config" # #################################################################### #Proposed fix is to either remove the offending line or just the --nodamon #option to allow the btsync to work and load the WebUI without problem. #Unless there is a good reason for this option to be the way it is? SYNC_PIDFILE="/var/run/${SYNC_NAME}.pid" start() { ebegin "Starting ${NAME}" start-stop-daemon --start --exec "${SYNC_BINARY}" \ --pidfile "${SYNC_PIDFILE}" --background \ -- ${SYNC_OPTS} eend $? } stop() { ebegin "Stopping ${NAME}" start-stop-daemon --stop --exec "${SYNC_BINARY}" \ --pidfile "${SYNC_PIDFILE}" eend $? } reload() { ebegin "Reloading ${NAME}" start-stop-daemon --signal HUP --exec "${SYNC_BINARY}" \ --pidfile "${SYNC_PIDFILE}" eend $? }