gitextract_y6e7qtdo/ ├── 1c_central_server.xml ├── 1c_license_files.xml ├── 1c_license_server.xml ├── 1c_work_server.xml ├── LICENSE ├── README.md ├── _config.yml ├── configs/ │ ├── logcfg.xml │ ├── userparameter_1c-cs.conf │ ├── userparameter_1c-lf.conf │ ├── userparameter_1c-ls.conf │ ├── userparameter_1c-ws.conf │ └── zabbix.sudoers ├── docs/ │ ├── central_server.md │ ├── install.md │ ├── license_files.md │ ├── license_server.md │ ├── windows.md │ └── work_server.md ├── playbooks/ │ ├── install.yml │ ├── inventory.sample │ ├── roles/ │ │ ├── general/ │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── defaults/ │ │ │ │ └── main.yml │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ ├── tests/ │ │ │ │ ├── inventory │ │ │ │ └── test.yml │ │ │ └── vars/ │ │ │ └── main.yml │ │ ├── srv1c_cs/ │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── defaults/ │ │ │ │ └── main.yml │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ ├── tests/ │ │ │ │ ├── inventory │ │ │ │ └── test.yml │ │ │ └── vars/ │ │ │ └── main.yml │ │ ├── srv1c_ls/ │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── defaults/ │ │ │ │ └── main.yml │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ ├── tests/ │ │ │ │ ├── inventory │ │ │ │ └── test.yml │ │ │ └── vars/ │ │ │ └── main.yml │ │ └── srv1c_ws/ │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── defaults/ │ │ │ └── main.yml │ │ ├── handlers/ │ │ │ └── main.yml │ │ ├── tasks/ │ │ │ └── main.yml │ │ ├── tests/ │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars/ │ │ └── main.yml │ └── tasks/ │ ├── install-Debian.yml │ └── install-RedHat.yml └── scripts/ ├── 1c_central_server.sh ├── 1c_common_module.sh ├── 1c_license_files.sh ├── 1c_license_server.sh └── 1c_work_server.sh