├── .gitignore ├── LICENSE.md ├── README.md ├── core ├── Main.ps1 ├── Start.cmd └── Start.ps1 ├── modules ├── InstallationSDK.AzureServiceRuntime │ ├── InstallationSDK.AzureServiceRuntime.psd1 │ └── InstallationSDK.AzureServiceRuntime.psm1 └── InstallationSDK.ChefClientInstaller │ ├── InstallationSDK.ChefClientInstaller.Unit.Tests.ps1 │ ├── InstallationSDK.ChefClientInstaller.psd1 │ ├── InstallationSDK.ChefClientInstaller.psm1 │ ├── code │ ├── ClientService.cs │ └── WindowsService.cs │ ├── resources │ └── Readme.txt │ └── script │ ├── Main.ps1 │ ├── client.rb │ └── config.json └── nuget ├── Install.ps1 ├── InstallationSDK.ChefClientInstaller.nuspec └── InstallationSDK.nuspec /.gitignore: -------------------------------------------------------------------------------- 1 | **/bin/** 2 | **/obj/** -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/README.md -------------------------------------------------------------------------------- /core/Main.ps1: -------------------------------------------------------------------------------- 1 | $ErrorActionPreference = "Stop" 2 | 3 | # Insert your custom logic below... 4 | 5 | -------------------------------------------------------------------------------- /core/Start.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/core/Start.cmd -------------------------------------------------------------------------------- /core/Start.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/core/Start.ps1 -------------------------------------------------------------------------------- /modules/InstallationSDK.AzureServiceRuntime/InstallationSDK.AzureServiceRuntime.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/modules/InstallationSDK.AzureServiceRuntime/InstallationSDK.AzureServiceRuntime.psd1 -------------------------------------------------------------------------------- /modules/InstallationSDK.AzureServiceRuntime/InstallationSDK.AzureServiceRuntime.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/modules/InstallationSDK.AzureServiceRuntime/InstallationSDK.AzureServiceRuntime.psm1 -------------------------------------------------------------------------------- /modules/InstallationSDK.ChefClientInstaller/InstallationSDK.ChefClientInstaller.Unit.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/modules/InstallationSDK.ChefClientInstaller/InstallationSDK.ChefClientInstaller.Unit.Tests.ps1 -------------------------------------------------------------------------------- /modules/InstallationSDK.ChefClientInstaller/InstallationSDK.ChefClientInstaller.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/modules/InstallationSDK.ChefClientInstaller/InstallationSDK.ChefClientInstaller.psd1 -------------------------------------------------------------------------------- /modules/InstallationSDK.ChefClientInstaller/InstallationSDK.ChefClientInstaller.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/modules/InstallationSDK.ChefClientInstaller/InstallationSDK.ChefClientInstaller.psm1 -------------------------------------------------------------------------------- /modules/InstallationSDK.ChefClientInstaller/code/ClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/modules/InstallationSDK.ChefClientInstaller/code/ClientService.cs -------------------------------------------------------------------------------- /modules/InstallationSDK.ChefClientInstaller/code/WindowsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/modules/InstallationSDK.ChefClientInstaller/code/WindowsService.cs -------------------------------------------------------------------------------- /modules/InstallationSDK.ChefClientInstaller/resources/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/modules/InstallationSDK.ChefClientInstaller/resources/Readme.txt -------------------------------------------------------------------------------- /modules/InstallationSDK.ChefClientInstaller/script/Main.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/modules/InstallationSDK.ChefClientInstaller/script/Main.ps1 -------------------------------------------------------------------------------- /modules/InstallationSDK.ChefClientInstaller/script/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/modules/InstallationSDK.ChefClientInstaller/script/client.rb -------------------------------------------------------------------------------- /modules/InstallationSDK.ChefClientInstaller/script/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/modules/InstallationSDK.ChefClientInstaller/script/config.json -------------------------------------------------------------------------------- /nuget/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/nuget/Install.ps1 -------------------------------------------------------------------------------- /nuget/InstallationSDK.ChefClientInstaller.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/nuget/InstallationSDK.ChefClientInstaller.nuspec -------------------------------------------------------------------------------- /nuget/InstallationSDK.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-PaaS-ChefClient/HEAD/nuget/InstallationSDK.nuspec --------------------------------------------------------------------------------