--- /dev/null
+Sysal-Stub installieren
+
+!|test.util.CallScript|
+|call script|sudo bin/install-sysal-stub|
+
+Anmerkung: Falls eine komplett neue Installation des sysal-stub erzwungen werden soll:
+sudo rm /etc/apache2/sites-available/sysal_stub.conf
+ausführen.
--- /dev/null
+<?xml version="1.0"?>
+<properties>
+ <Edit>true</Edit>
+ <Files>true</Files>
+ <Properties>true</Properties>
+ <RecentChanges>true</RecentChanges>
+ <Refactor>true</Refactor>
+ <Search>true</Search>
+ <Test/>
+ <Versions>true</Versions>
+ <WhereUsed>true</WhereUsed>
+</properties>
!|test.util.CallScript|
|call script|xfhem define watchdog localhost|
+Entferne Sysal-Stub-Output
+|call script|!-sudo rm /var/test/sysal-stub.out || true -!|
+
Verkürze Zeit
-|call script|/opt/fhem/fhem.pl 7072 "modify watchdog +*00:01:00"|
+|call script|/opt/fhem/fhem.pl 7072 "modify watchdog +*00:00:05"|
Warte Auslösezeit
-|call script|sleep 60|
+|call script|sleep 6|
Prüfe Watchdog
+|call script|grep rwd /var/test/sysal-stub.out|
Entferne Watchdog
|call script|xfhem delete watchdog|
+
<?xml version="1.0"?>
<properties>
- <Edit>true</Edit>
- <Files>true</Files>
- <Properties>true</Properties>
- <RecentChanges>true</RecentChanges>
- <Refactor>true</Refactor>
- <Search>true</Search>
- <Versions>true</Versions>
- <WhereUsed>true</WhereUsed>
+ <Edit/>
+ <Files/>
+ <Help></Help>
+ <Properties/>
+ <RecentChanges/>
+ <Refactor/>
+ <Search/>
+ <Suite/>
+ <Suites></Suites>
+ <Versions/>
+ <WhereUsed/>
</properties>
--- /dev/null
+#!/bin/bash
+set -e
+
+# test if apache-conf already installed
+if [ -e /etc/apache2/sites-enabled/sysal_stub.conf ]
+then
+ exit
+fi
+
+mkdir -p /var/test
+chmod 777 /var/test
+
+cwd=$(pwd)
+# write apache conf
+echo "# Apache conf for sysal stub
+Alias /sysal/rest/AlarmInterface/RemoteWatchdog $cwd/bin/sysal-stub.pl
+<Directory $cwd/bin>
+ Require all granted
+ Options +ExecCGI
+ AddHandler cgi-script .pl
+</Directory>
+" > /etc/apache2/sites-available/sysal_stub.conf
+a2ensite sysal_stub
+a2enmod cgi
+
+systemctl restart apache2
+
--- /dev/null
+#!/usr/bin/perl -w
+
+print "Content-type: text/html\n\n";
+print "<html><body>\n";
+
+
+open (OUT, ">/var/test/sysal-stub.out");
+while (my $line = <STDIN>) {
+ print OUT "$line\n";
+ print "$line\n";
+}
+
+print "</body></html>\n";
+
Package: xfhem
Architecture: all
-Depends: fhem
+Depends: fhem,sysal-util
Description: WagnerTech utilities for FHEM
chown fhem:dialout /opt/fhem/wagnertech.cfg
-if ! grep wagnertech.cfg /opt/fhem/fhem.cfg
+if ! grep wagnertech.cfg /opt/fhem/fhem.cfg >/dev/null
then
echo >> /opt/fhem/fhem.cfg
echo "# include from xfhem package" >> /opt/fhem/fhem.cfg