Added config_file_encoding and an example of module_native_encoding to pandora_agent.conf
This commit is contained in:
parent
39cae36c3e
commit
49af9d13ce
|
@ -78,6 +78,9 @@ remote_config 0
|
||||||
# XML encoding (ISO-8859-1 by default). Most windows servers experience problems when you set to UTF-8. Other special codepages may be specified here.
|
# XML encoding (ISO-8859-1 by default). Most windows servers experience problems when you set to UTF-8. Other special codepages may be specified here.
|
||||||
#encoding ISO-8859-1
|
#encoding ISO-8859-1
|
||||||
|
|
||||||
|
# Config file encoding. Some windows text editors has ANSI default and others UTF-8
|
||||||
|
#config_file_encoding UTF-8
|
||||||
|
|
||||||
# If set to 1 start Drone Agent's Proxy Mode
|
# If set to 1 start Drone Agent's Proxy Mode
|
||||||
# proxy_mode 1
|
# proxy_mode 1
|
||||||
|
|
||||||
|
@ -377,3 +380,12 @@ module_end
|
||||||
#module_exec echo 5
|
#module_exec echo 5
|
||||||
#module_description Postcondition test module
|
#module_description Postcondition test module
|
||||||
#module_end
|
#module_end
|
||||||
|
|
||||||
|
#Example of when module_native_encoding is necessary
|
||||||
|
#Dont uncomment module_native_encoding tag to see the difference
|
||||||
|
#module_begin
|
||||||
|
#module_name Accent_example
|
||||||
|
#module_type generic_data_string
|
||||||
|
#module_exec echo Bordón
|
||||||
|
#module_native_encoding OEM
|
||||||
|
#module_end
|
||||||
|
|
Loading…
Reference in New Issue