Fix xml and port var and add bond0 device

This commit is contained in:
Robert Schumann 2016-12-03 12:01:09 +01:00
parent 4dbc5051cc
commit 80f88ad2ad
3 changed files with 9 additions and 7 deletions

View File

@ -23,7 +23,7 @@ RUN set -x \
&& unzip raumserverDaemon_linux_X64.zip -d raumserver \ && unzip raumserverDaemon_linux_X64.zip -d raumserver \
&& rm -f raumserverDaemon_linux_X64.zip \ && rm -f raumserverDaemon_linux_X64.zip \
&& mv raumserver/settings.xml raumserver/settings.xml.dist \ && mv raumserver/settings.xml raumserver/settings.xml.dist \
&& sed -i 's%RAUMSERVER_HTTP%$raumserver_http%' settings.xml \ && sed -i 's%RAUMSERVER_HTTP%"$raumserver_http"%' settings.xml \
&& mv settings.xml raumserver/ \ && mv settings.xml raumserver/ \
&& for l in libunwind-x86_64.so.8.0.1 libunwind.so.8.0.1 libunwind-coredump.so.0.0.0 libunwind-setjmp.so.0.0.0 libunwind-ptrace.so.0.0.0; do \ && for l in libunwind-x86_64.so.8.0.1 libunwind.so.8.0.1 libunwind-coredump.so.0.0.0 libunwind-setjmp.so.0.0.0 libunwind-ptrace.so.0.0.0; do \
wget $wget_opts $raumserver_libs/"$l" -O /usr/lib/"$l" && \ wget $wget_opts $raumserver_libs/"$l" -O /usr/lib/"$l" && \

View File

@ -1,22 +1,24 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Application> <Application>
<Raumkernel> <Raumkernel>
<!-- Log settings. You might change some settings here if you want to change the output log level or add/remove a log adapter <!-- Log settings. You might change some settings here if you want to change the output log level or add/remove a log adapter
To get the available options for 'LogLevel' and 'LogAdapter' please take a look at the documentation --> To get the available options for 'LogLevel' and 'LogAdapter' please take a look at the documentation -->
<Log> <Log>
<Level>DEBUG</Level> <Level>DEBUG</Level>
<LevelUpnp>ERROR</LevelUpnp> <LevelUpnp>ERROR</LevelUpnp>
<!--<LevelUpnp>ALL,ADAPTERCHANGE,BONJOUR,DEVICE,DVDEVICE,DVEVENT,DVWEBSOCKET,DVINVOCATION,DVSSDPNOTIFIER,ERROR,EVENT,HTTP,LPEC,NETWORK,NONE,SERVICE,SSDPMULTICAST,;SSDPUNICAST,TRACE,THREAD,TIMER,VERBOSE,XMLFETCH</LevelUpnp>--> <!-- <LevelUpnp>ALL,ADAPTERCHANGE,BONJOUR,DEVICE,DVDEVICE,DVEVENT,DVWEBSOCKET,DVINVOCATION,DVSSDPNOTIFIER,ERROR,EVENT,HTTP,LPEC,NETWORK,NONE,SERVICE,SSDPMULTICAST,;SSDPUNICAST,TRACE,THREAD,TIMER,VERBOSE,XMLFETCH</LevelUpnp> -->
</Log> </Log>
<!-- the kernel uses the first available networkadapter found in the system. This may not be the one you like to use! --> <!-- the kernel uses the first available networkadapter found in the system. This may not be the one you like to use! -->
<!-- so you can type in the network adapter name the application should use!--> <!-- so you can type in the network adapter name the application should use! -->
<NetworkAdapterName priority="1" waitForAppearance="250">eth0</NetworkAdapterName> <NetworkAdapterName priority="1" waitForAppearance="250">bond0</NetworkAdapterName>
<NetworkAdapterName priority="2" waitForAppearance="250">wlan0</NetworkAdapterName> <NetworkAdapterName priority="2" waitForAppearance="250">eth0</NetworkAdapterName>
<NetworkAdapterName priority="3" waitForAppearance="250">wlan0</NetworkAdapterName>
<NetworkAdapterName priority="3" waitForAppearance="0">Killer Wireless-N 1202 Network Adapter</NetworkAdapterName> <NetworkAdapterName priority="3" waitForAppearance="0">Killer Wireless-N 1202 Network Adapter</NetworkAdapterName>
<!-- Enable/disable discovery of non raumfeld renderers --> <!-- Enable/disable discovery of non raumfeld renderers -->
<AddNonRaumfeldDevices>0<AddNonRaumfeldDevices> <AddNonRaumfeldDevices>0</AddNonRaumfeldDevices>
<!-- the time step in ms on which the kernel does refresh the device list to get abruplty removed UPNP devices (without announcing its removal) --> <!-- the time step in ms on which the kernel does refresh the device list to get abruplty removed UPNP devices (without announcing its removal) -->
<UPNPRefreshTimeActive>1</UPNPRefreshTimeActive> <UPNPRefreshTimeActive>1</UPNPRefreshTimeActive>

View File

@ -1,2 +1,2 @@
#!/bin/sh #!/bin/sh
/opt/raumserver/raumsrvDaemon && tail -f /opt/raumserver/log/*.log /opt/raumserver/raumsrvDaemon && tail -f /opt/raumserver/logs/*.log