Promtail windows configuration script, binary and config file
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

148 lines
3.6 KiB

  1. # GLPI agent configuration
  2. # all defined values match default
  3. # all commented values are examples
  4. #
  5. # Target definition options
  6. #
  7. # send tasks results to a GLPI server
  8. server = http://10.250.2.20/
  9. # send tasks results to a GlpiInventory plugin installed via marketplace
  10. # Read this caution note in documentation to find the right URL:
  11. # https://glpi-agent.readthedocs.io/en/latest/configuration.html#server
  12. #server = http://server.domain.com/glpi/marketplace/glpiinventory/
  13. # send tasks results to a FusionInventory for GLPI server
  14. #server = http://server.domain.com/glpi/plugins/fusioninventory/
  15. # write tasks results in a directory
  16. #local = /tmp
  17. #
  18. # Task definition options
  19. #
  20. # disable software deployment tasks
  21. #no-task = deploy
  22. tasks = inventory,deploy,inventory
  23. #
  24. # Target scheduling options
  25. #
  26. # maximum delay before first target, in seconds
  27. # Also the maximum delay on network error. Delay on network error starts
  28. # from 60, is doubled at each new failed attempt until reaching delaytime.
  29. delaytime = 600
  30. # do not contact the target before next scheduled time
  31. lazy = 0
  32. #
  33. # Inventory task specific options
  34. #
  35. # do not list local printers
  36. # no-category = printer
  37. # allow to scan user home directories
  38. scan-homedirs = 0
  39. # allow to scan user profiles
  40. scan-profiles = 0
  41. # save the inventory as HTML
  42. html = 0
  43. # set to 1 to save local inventory as JSON
  44. json = 1
  45. # timeout for inventory modules execution
  46. backend-collect-timeout = 180
  47. # always send data to server
  48. force = 1
  49. # additional inventory content file
  50. additional-content =
  51. # asset name returned
  52. # if 1 (the default), the short hostname is used as asset name
  53. # if 2, the as-is hostname (can be fqdn) is used as asset name
  54. # this feature is not supported on MacOS or Windows
  55. assetname-support = 1
  56. #
  57. # Package deployment task specific options
  58. #
  59. # do not use peer to peer to download files
  60. no-p2p = 0
  61. #
  62. # Network options
  63. #
  64. # proxy address
  65. proxy =
  66. # user name for server authentication
  67. user =
  68. # password for server authentication
  69. password =
  70. # CA certificates directory
  71. ca-cert-dir =
  72. # CA certificates file
  73. ca-cert-file =
  74. # do not check server SSL certificate
  75. no-ssl-check = 0
  76. # connection timeout, in seconds
  77. timeout = 180
  78. #
  79. # Web interface options
  80. #
  81. # disable embedded web server
  82. no-httpd = 0
  83. # network interface to listen to
  84. httpd-ip =
  85. # network port to listen to
  86. httpd-port = 62354
  87. # trust requests without authentication token
  88. httpd-trust =
  89. #
  90. # Logging options
  91. #
  92. # Logger backend, either Stderr, File or Syslog (Stderr)
  93. logger = Syslog
  94. # log file
  95. #logfile = /var/log/glpi-agent.log
  96. # maximum log file size, in MB
  97. #logfile-maxsize = 0
  98. # Syslog facility
  99. logfacility = LOG_USER
  100. # Use color in the console
  101. color = 0
  102. #
  103. # Execution mode options
  104. #
  105. # add given tag to inventory results
  106. tag =
  107. # debug mode
  108. debug = 0
  109. # time to wait to reload config (0 means no reload, it's default value)
  110. # conf-reload-interval = 0
  111. # Since 2.4, you can include all .cfg files from a folder or any given file
  112. # For example:
  113. # 1. file "conf.d/tag.cfg" contains "tag = 'entity123'"
  114. # using "include 'conf.d' will set tag to 'entity123'
  115. # 2. file "/etc/production/glpi-tag" contains "tag = 'entity123'"
  116. # using "include '/etc/production/glpi-tag' will set tag to 'entity123'
  117. # Remark:
  118. # 1. Prefer to use full path to avoid confusion, but be aware relative paths are
  119. # relative against current config file folder
  120. # 2. A parameter set in included file can be over-rided if set again after the directive
  121. # 3. *.cfg files are read in order in folder, it's better to prefix them with a number
  122. # 4. Package maintainers are encouraged to use this feature to avoid conflict
  123. # during upgrades after configuration update
  124. #
  125. include "conf.d/"
  126. #include "agent.local"