Guest User

debug opos on gentoo

a guest
Jun 29th, 2011
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. objects:
  2.  
  3. - name: Temperature Indoor
  4. path: /home/indoor/Temperature
  5. model: Generic_Celsius_Temperature
  6. regul:
  7. action-: /home/indoor/Fan
  8. frequency: 2
  9. type: "pwm_regul"
  10.  
  11. - name: Temperature Outdoor
  12. path: /home/outdoor/Temperature
  13. model: Generic_Celsius_Temperature
  14.  
  15. - name: Hygrometrie Outdoor
  16. path: /home/outdoor/Hygro
  17. model: VirtualPlacos_Hygro
  18. depends:
  19. temp: /home/outdoor/Temperature
  20.  
  21. - name: Hygrometrie Indoor
  22. path: /home/indoor/Hygro
  23. model: VirtualPlacos_Hygro
  24. depends:
  25. temp: /home/indoor/Temperature
  26. regul:
  27. action-: /home/indoor/Fan
  28. frequency: 0.5
  29. plugin_fill_sql_frequency: 2
  30.  
  31.  
  32. - name: Light
  33. path: /home/indoor/Light
  34. model: Generic_relay_NO
  35.  
  36. - name: Fan
  37. path: /home/indoor/Fan
  38. model: Generic_pwm
  39.  
  40. # drivers are in drivers folder
  41. card:
  42. - name: VirtualPlacos
  43. exec: VirtualPlacos/VirtualPlacos.rb
  44. config: config.yaml
  45. timeout: 2
  46. plug:
  47. /Pin_1: /home/indoor/Temperature
  48. /Pin_2: /home/outdoor/Temperature
  49. /Pin_3: /home/indoor/Light
  50. /Pin_4: /home/indoor/Fan
  51. /Pin_5: /home/outdoor/Hygro
  52. /Pin_6: /home/indoor/Hygro
  53.  
  54. # plugins are in plugins folder
  55. plugins:
  56.  
  57. - name: sql
  58. method: fork
  59. exec: sql.rb
  60.  
  61. - name: fill_sql
  62. method: fork
  63. exec: fill_sql.rb
  64.  
  65. - name: ror_frontend
  66. method: fork
  67. exec: ror_frontend.rb
  68.  
  69. - name: log
  70. method: disable
  71. exec: log.rb
  72. file: /tmp/opos2.log
  73.  
  74. - name: xmlrpc
  75. method: fork
  76. exec: xmlrpc.rb
  77. port: 8080
  78.  
  79. - name: soap
  80. method: fork
  81. exec: soap.rb
  82. port: 8081
  83.  
  84. user:
  85.  
  86. #no password
  87. - login: anonymous
  88. permissions:
  89. read: all
  90.  
  91. # password : test
  92. - login: user1
  93. hash: '325636066ccb24500a9f1a0df376965118e59230'
  94. permissions:
  95. read: all
  96. write: actuators
  97. exclude: /home/indoor/Fan
  98.  
  99. # password : test
  100. - login: user2
  101. hash: '325636066ccb24500a9f1a0df376965118e59230'
  102. permissions:
  103. read: /home/outdoor/
  104.  
  105. # password : password
  106. - login: admin
  107. hash: '5e38fb24e0314e2b3ec2caa2931c147442960ed4'
  108. permissions:
  109. write: all
Advertisement
Add Comment
Please, Sign In to add comment