mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-13 17:26:34 +00:00
Fixed for automatic makefile substitution
git-svn-id: https://svn.fhem.de/fhem/trunk@466 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
6ee3308885
commit
c4841f1f84
@ -7,11 +7,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# Common part
|
# Common part
|
||||||
attr global logfile /tmp/fhem/fhem-%Y-%m.log
|
attr global logfile .-%Y-%m.log
|
||||||
attr global statefile /tmp/fhem/fhem.save # where to save the state of the devices
|
attr global statefile ..save # where to save the state of the devices
|
||||||
attr global verbose 3 # "normal" verbosity (min 1, max 5)
|
attr global verbose 3 # "normal" verbosity (min 1, max 5)
|
||||||
attr global port 7072 # our TCP/IP port (localhost only)
|
attr global port 7072 # our TCP/IP port (localhost only)
|
||||||
attr global modpath /tmp/fhem/fhem # where our FHEM directory is
|
attr global modpath . # where our FHEM directory is
|
||||||
|
|
||||||
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
|
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
|
||||||
|
|
||||||
|
@ -10,11 +10,11 @@
|
|||||||
|
|
||||||
|
|
||||||
# Common part
|
# Common part
|
||||||
attr global logfile /tmp/fhem/fhem-%Y-%m.log
|
attr global logfile .-%Y-%m.log
|
||||||
attr global statefile /tmp/fhem/fhem.save # where to save the state of the devices
|
attr global statefile ..save # where to save the state of the devices
|
||||||
attr global verbose 3 # "normal" verbosity
|
attr global verbose 3 # "normal" verbosity
|
||||||
attr global port 7072 # our TCP/IP port (localhost only)
|
attr global port 7072 # our TCP/IP port (localhost only)
|
||||||
attr global modpath /tmp/fhem/fhem # where our FHEM directory is
|
attr global modpath . # where our FHEM directory is
|
||||||
|
|
||||||
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
|
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
|
||||||
|
|
||||||
|
@ -8,11 +8,11 @@
|
|||||||
# After about 5-10 minutes, check if "list wz" returns something meaningful
|
# After about 5-10 minutes, check if "list wz" returns something meaningful
|
||||||
#
|
#
|
||||||
|
|
||||||
attr global logfile /tmp/fhem/fhem-%Y-%m.log
|
attr global logfile .-%Y-%m.log
|
||||||
attr global statefile /tmp/fhem/fhem.save # where to save the state of the devices
|
attr global statefile ..save # where to save the state of the devices
|
||||||
attr global verbose 3 # "normal" verbosity
|
attr global verbose 3 # "normal" verbosity
|
||||||
attr global port 7072 # our TCP/IP port (localhost only)
|
attr global port 7072 # our TCP/IP port (localhost only)
|
||||||
attr global modpath /tmp/fhem/fhem # where our FHEM directory is
|
attr global modpath . # where our FHEM directory is
|
||||||
|
|
||||||
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
|
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
|
||||||
|
|
||||||
|
@ -4,11 +4,11 @@
|
|||||||
# contrib/91_DbLog.pm
|
# contrib/91_DbLog.pm
|
||||||
#
|
#
|
||||||
|
|
||||||
attr global logfile /tmp/fhem/fhem-%Y-%m.log
|
attr global logfile .-%Y-%m.log
|
||||||
attr global statefile /tmp/fhem/fhem.save # where to save the state of the devices
|
attr global statefile ..save # where to save the state of the devices
|
||||||
attr global verbose 3 # "normal" verbosity
|
attr global verbose 3 # "normal" verbosity
|
||||||
attr global port 7072 # our TCP/IP port (localhost only)
|
attr global port 7072 # our TCP/IP port (localhost only)
|
||||||
attr global modpath /tmp/fhem/fhem # where our FHEM directory is
|
attr global modpath . # where our FHEM directory is
|
||||||
|
|
||||||
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
|
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
|
||||||
|
|
||||||
|
@ -8,11 +8,11 @@
|
|||||||
# if there is no definition for it. Check the commandref.html define, Type HMS
|
# if there is no definition for it. Check the commandref.html define, Type HMS
|
||||||
# section for details
|
# section for details
|
||||||
|
|
||||||
attr global logfile /tmp/fhem/fhem-%Y-%m.log
|
attr global logfile .-%Y-%m.log
|
||||||
attr global statefile /tmp/fhem/fhem.save # where to save the state of the devices
|
attr global statefile ..save # where to save the state of the devices
|
||||||
attr global verbose 3 # "normal" verbosity (min 1, max 5)
|
attr global verbose 3 # "normal" verbosity (min 1, max 5)
|
||||||
attr global port 7072 # our TCP/IP port (localhost only)
|
attr global port 7072 # our TCP/IP port (localhost only)
|
||||||
attr global modpath /tmp/fhem/fhem # where our FHEM directory is
|
attr global modpath . # where our FHEM directory is
|
||||||
|
|
||||||
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
|
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#
|
#
|
||||||
# Minimalistic fhem.pl configfile. Take a look at the other examples for more.
|
# Minimalistic fhem.pl configfile. Take a look at the other examples for more.
|
||||||
#
|
#
|
||||||
attr global logfile /tmp/fhem/fhem-%Y-%m.log
|
attr global logfile .-%Y-%m.log
|
||||||
attr global statefile /tmp/fhem/fhem.save # where to save the state of the devices
|
attr global statefile ..save # where to save the state of the devices
|
||||||
attr global verbose 3 # "normal" verbosity (min 1, max 5)
|
attr global verbose 3 # "normal" verbosity (min 1, max 5)
|
||||||
attr global port 7072 # our TCP/IP port (localhost only)
|
attr global port 7072 # our TCP/IP port (localhost only)
|
||||||
attr global modpath /tmp/fhem/fhem # where our FHEM directory is
|
attr global modpath . # where our FHEM directory is
|
||||||
|
@ -2,14 +2,14 @@
|
|||||||
# Minimalistic fhem.pl & pgm2 configfile. Take a look at the other examples for
|
# Minimalistic fhem.pl & pgm2 configfile. Take a look at the other examples for
|
||||||
# more.
|
# more.
|
||||||
#
|
#
|
||||||
attr global logfile /tmp/fhem/fhem-%Y-%m.log
|
attr global logfile .-%Y-%m.log
|
||||||
attr global statefile /tmp/fhem/fhem.save # where to save the state of the devices
|
attr global statefile ..save # where to save the state of the devices
|
||||||
attr global verbose 3 # "normal" verbosity (min 1, max 5)
|
attr global verbose 3 # "normal" verbosity (min 1, max 5)
|
||||||
attr global port 7072 # our TCP/IP port (localhost only)
|
attr global port 7072 # our TCP/IP port (localhost only)
|
||||||
attr global modpath /tmp/fhem/fhem # where our FHEM directory is
|
attr global modpath . # where our FHEM directory is
|
||||||
|
|
||||||
define WEB FHEMWEB 8083 global
|
define WEB FHEMWEB 8083 global
|
||||||
attr WEB plotmode SVG
|
attr WEB plotmode SVG
|
||||||
|
|
||||||
# Fake logfile, to access the global log
|
# Fake logfile, to access the global log
|
||||||
define Logfile FileLog /tmp/fhem/fhem-%Y-%m.log fakelog
|
define Logfile FileLog .-%Y-%m.log fakelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user