├── .gitattributes ├── .gitignore ├── README.md ├── README └── inputs.conf.spec ├── bin ├── DeleteMeToRestart ├── appContext.sh ├── dsRemove.ps1 ├── dsRemove.sh ├── hostCorrect.ps1 ├── hostCorrect.sh ├── pwchange.ps1 ├── pwchange.sh ├── regenGUID.ps1 ├── regenGUID.sh ├── restart.ps1 └── restart.sh └── default ├── app.conf └── inputs.conf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingWithJimmy/SplunkForwarderRepairKit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.db 2 | .idea 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingWithJimmy/SplunkForwarderRepairKit/HEAD/README.md -------------------------------------------------------------------------------- /README/inputs.conf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingWithJimmy/SplunkForwarderRepairKit/HEAD/README/inputs.conf.spec -------------------------------------------------------------------------------- /bin/DeleteMeToRestart: -------------------------------------------------------------------------------- 1 | DeleteMeToRestart -------------------------------------------------------------------------------- /bin/appContext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingWithJimmy/SplunkForwarderRepairKit/HEAD/bin/appContext.sh -------------------------------------------------------------------------------- /bin/dsRemove.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingWithJimmy/SplunkForwarderRepairKit/HEAD/bin/dsRemove.ps1 -------------------------------------------------------------------------------- /bin/dsRemove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingWithJimmy/SplunkForwarderRepairKit/HEAD/bin/dsRemove.sh -------------------------------------------------------------------------------- /bin/hostCorrect.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingWithJimmy/SplunkForwarderRepairKit/HEAD/bin/hostCorrect.ps1 -------------------------------------------------------------------------------- /bin/hostCorrect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingWithJimmy/SplunkForwarderRepairKit/HEAD/bin/hostCorrect.sh -------------------------------------------------------------------------------- /bin/pwchange.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingWithJimmy/SplunkForwarderRepairKit/HEAD/bin/pwchange.ps1 -------------------------------------------------------------------------------- /bin/pwchange.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingWithJimmy/SplunkForwarderRepairKit/HEAD/bin/pwchange.sh -------------------------------------------------------------------------------- /bin/regenGUID.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingWithJimmy/SplunkForwarderRepairKit/HEAD/bin/regenGUID.ps1 -------------------------------------------------------------------------------- /bin/regenGUID.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingWithJimmy/SplunkForwarderRepairKit/HEAD/bin/regenGUID.sh -------------------------------------------------------------------------------- /bin/restart.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingWithJimmy/SplunkForwarderRepairKit/HEAD/bin/restart.ps1 -------------------------------------------------------------------------------- /bin/restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingWithJimmy/SplunkForwarderRepairKit/HEAD/bin/restart.sh -------------------------------------------------------------------------------- /default/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingWithJimmy/SplunkForwarderRepairKit/HEAD/default/app.conf -------------------------------------------------------------------------------- /default/inputs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingWithJimmy/SplunkForwarderRepairKit/HEAD/default/inputs.conf --------------------------------------------------------------------------------