├── .gitignore ├── README.md ├── aegis_config.json.example ├── apk ├── .gitkeep └── bundles │ └── bundles.sh ├── atlas_config.json.example ├── cosmog_config.json.example ├── grafana └── 22-atlas-device-overview.json ├── jobs ├── AtlasToAegis.example ├── InstallAconf4aegis.sh.example ├── InstallAconf4atlas.sh.example ├── additional_atlas_job.json └── customJob.sh.example ├── mac2name.example ├── modules ├── PlayIntegrityFix_v15.1.zip.example ├── pif.json.example └── warning.xml ├── rom ├── 01atlasbootstrap └── aconf_info ├── scripts ├── 42aegis ├── 42atlas ├── 42cosmog ├── 55aegis ├── 55atlas ├── 55cosmog ├── AegisDetailsSender.sh ├── AtlasDetailsSender.sh ├── CosmogDetailsSender.sh ├── aegis.sh ├── aegis_monitor.sh ├── atlas.sh ├── atlas_monitor.sh ├── cosmog.sh └── cosmog_monitor.sh ├── versions.example └── wh_receiver ├── .idea ├── .gitignore ├── ATVdetailsWHreceiver.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── config.ini.example ├── requirements.txt ├── sql └── tables.sql └── start_whreceiver.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/README.md -------------------------------------------------------------------------------- /aegis_config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/aegis_config.json.example -------------------------------------------------------------------------------- /apk/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apk/bundles/bundles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/apk/bundles/bundles.sh -------------------------------------------------------------------------------- /atlas_config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/atlas_config.json.example -------------------------------------------------------------------------------- /cosmog_config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/cosmog_config.json.example -------------------------------------------------------------------------------- /grafana/22-atlas-device-overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/grafana/22-atlas-device-overview.json -------------------------------------------------------------------------------- /jobs/AtlasToAegis.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/jobs/AtlasToAegis.example -------------------------------------------------------------------------------- /jobs/InstallAconf4aegis.sh.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/jobs/InstallAconf4aegis.sh.example -------------------------------------------------------------------------------- /jobs/InstallAconf4atlas.sh.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/jobs/InstallAconf4atlas.sh.example -------------------------------------------------------------------------------- /jobs/additional_atlas_job.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/jobs/additional_atlas_job.json -------------------------------------------------------------------------------- /jobs/customJob.sh.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/jobs/customJob.sh.example -------------------------------------------------------------------------------- /mac2name.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/mac2name.example -------------------------------------------------------------------------------- /modules/PlayIntegrityFix_v15.1.zip.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pif.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/modules/pif.json.example -------------------------------------------------------------------------------- /modules/warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/modules/warning.xml -------------------------------------------------------------------------------- /rom/01atlasbootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/rom/01atlasbootstrap -------------------------------------------------------------------------------- /rom/aconf_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/rom/aconf_info -------------------------------------------------------------------------------- /scripts/42aegis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/scripts/42aegis -------------------------------------------------------------------------------- /scripts/42atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/scripts/42atlas -------------------------------------------------------------------------------- /scripts/42cosmog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/scripts/42cosmog -------------------------------------------------------------------------------- /scripts/55aegis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/scripts/55aegis -------------------------------------------------------------------------------- /scripts/55atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/scripts/55atlas -------------------------------------------------------------------------------- /scripts/55cosmog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/scripts/55cosmog -------------------------------------------------------------------------------- /scripts/AegisDetailsSender.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/scripts/AegisDetailsSender.sh -------------------------------------------------------------------------------- /scripts/AtlasDetailsSender.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/scripts/AtlasDetailsSender.sh -------------------------------------------------------------------------------- /scripts/CosmogDetailsSender.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/scripts/CosmogDetailsSender.sh -------------------------------------------------------------------------------- /scripts/aegis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/scripts/aegis.sh -------------------------------------------------------------------------------- /scripts/aegis_monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/scripts/aegis_monitor.sh -------------------------------------------------------------------------------- /scripts/atlas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/scripts/atlas.sh -------------------------------------------------------------------------------- /scripts/atlas_monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/scripts/atlas_monitor.sh -------------------------------------------------------------------------------- /scripts/cosmog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/scripts/cosmog.sh -------------------------------------------------------------------------------- /scripts/cosmog_monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/scripts/cosmog_monitor.sh -------------------------------------------------------------------------------- /versions.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/versions.example -------------------------------------------------------------------------------- /wh_receiver/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/wh_receiver/.idea/.gitignore -------------------------------------------------------------------------------- /wh_receiver/.idea/ATVdetailsWHreceiver.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/wh_receiver/.idea/ATVdetailsWHreceiver.iml -------------------------------------------------------------------------------- /wh_receiver/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/wh_receiver/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /wh_receiver/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/wh_receiver/.idea/misc.xml -------------------------------------------------------------------------------- /wh_receiver/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/wh_receiver/.idea/modules.xml -------------------------------------------------------------------------------- /wh_receiver/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/wh_receiver/.idea/vcs.xml -------------------------------------------------------------------------------- /wh_receiver/README.md: -------------------------------------------------------------------------------- 1 | # ATVdetailsWHreceiver -------------------------------------------------------------------------------- /wh_receiver/config.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/wh_receiver/config.ini.example -------------------------------------------------------------------------------- /wh_receiver/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/wh_receiver/requirements.txt -------------------------------------------------------------------------------- /wh_receiver/sql/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/wh_receiver/sql/tables.sql -------------------------------------------------------------------------------- /wh_receiver/start_whreceiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechG3n/aconf/HEAD/wh_receiver/start_whreceiver.py --------------------------------------------------------------------------------