Zuehlke / cookbook-windev

One cookbook with resources for setting up a Windows development environment
MIT License
7 stars 1 forks source link

All-in-one Windows development environments

Build Status

One cookbook with recipes and resources for setting up a Windows development environment.

Its main focus is in providing a configuration-driven way of installing software from the variety of installer formats, zip archives and the chocolatey package manager. It also allows you to uninstall Windows features and set environment variables on the system level.

windev::packages

packages.rb provides three ways for software installation: installer-driven, from a zip file or through chocolatey.

Each method is also usable separately (use installer_packages, zip_packages and choco_packages in the recipe list respectively).

Installer driven

The installer_packages attribute expects an array of installer definitions.

Each installer definition is a hash with parameters:

The installers need to be capable of operating unattended (silent or quiet mode).

Examples: Download the installer,cache it locally and execute it.

{
  "installer_packages": [
    {"name":"Microsoft .NET Framework 4.5",
      "source":"ftp://bin.repo/dotnetfx45_full_x86_x64.exe","save_as":"dotnetfx45_full_x86_x64.exe",
      "version":"4.5.50709","options":"/passive /norestart","type":"custom"
    }
  ]
}

This entry expects the installer at software/VisualStudio2013/vs_professional.exe and will fail if it is not present

{
  "installer_packages": [
    {"name":"Microsoft Visual Studio Professional 2013 with Update 4",
      "installer":"VisualStudio2013\\vs_professional.exe",
      "version":"12.0.31101","type":"custom","timeout":60000,
      "options":"/Passive /LOG C:\\VS_2013_U3.log /NoRestart /NoWeb /NoRefresh /CustomInstallPath C:\\tools\\VisualStudio2013\\"
    }
  ]
}

This entry downloads an installer wrapped in a .zip file, unpacks and then executes

{
  "installer_packages": [
    {"name":"Slik Subversion 1.9.4 (x64)",
      "source":"https://sliksvn.com/pub/Slik-Subversion-1.9.4-x64.zip","save_as":"Slik-Subversion-1.9.4-x64.zip",
      "unpack":"Slik-Subversion-1.9.4-x64/","installer":"Slik-Subversion-1.9.4-x64/Slik-Subversion-1.9.4-x64.msi",
      "version":"1.9.4139"
    }
  ]
}

Zip files

The zip_packages attribute expects an array of zip definitions.

Each zip definition is a hash with parameters:

Examples:

This entry downloads the file and caches it in software_depot before unpacking

{
  "zip_packages": [
    {"source":"ftp://bin.repo/foo.zip","save_as":"foo.zip",
      "version":"0.0","unpack":"c:/tools/foo"
    }
  ]
}

This entry expects the package in the software_depot directory

{
  "zip_packages": [
    {"archive":"foo.zip",
      "version":"0.0","unpack":"c:/tools/foo"
    }
  ]
}

Chocolatey

The choco_packages attribute expects an array of chocolatey package definitions.

Each package definition is a hash with parameters:

All parameters but name are optional.

Examples:

Install a chocolatey package

{
  "choco_packages": [
    {
      "name":"Ruby",
      "version":"2.4.3.1",
      "params":"/InstallDir=c:\\tools\\ruby"
    }
  ]
}

Upgrade a package

{
  "choco_packages": [
    {
      "name":"Ruby",
      "version":"2.4.3.1",
      "params":"/InstallDir=c:\\tools\\ruby",
      "upgrade":true
    }
  ]
}

windev::depot

The depot recipe sets up the local software cache. It is used by all recipes that install software.

The location of the local software is specified in the software_depot attribute.

The default value for software_depot is 'software', which will create the directory at the point of chef's execution.

Example:

{"software_depot": "software"}

You can define a node attribute 'cache' to specify packages to download and cache locally in software_depot. 'cache' is an array of hashes:

{
  "software_depot": "software",
  "cache":[{"source":"http://bin.repo/foo.zip","save_as":"foo.zip"}]
}

This is a helper feature for downloading packages that are later manually installed (as is the case with unsigned drivers). Generally it is not needed if the installers are well behaved (but many are not).

windev::environment

environment.rb Provides an easy way to define environment variables in JSON configurations.

Provide an environment attribute that points to a hash of 'name'->'value' for the environment variables you want to define.

Example:

"environment":{
  "PATH":"C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\",
  "GIT_SSL_NO_VERIFY":"true",
  "devmgr_show_nonpresent_devices":"1"
    }

windev::features

features.rb

and uninstalls a list of Windows features provided in node['windows_features']['remove']

Example:

{"windows_features": {
    "remove": ["MediaPlayback","WindowsMediaPlayer","MediaCenter","TabletPCOC","FaxServicesClientPackage",
        "Xps-Foundation-Xps-Viewer","Printing-XPSServices-Features","Internet-Explorer-Optional-amd64"]}
}

windev::drivers

drivers.rb installs Windows drivers using dpinst.

The way it works is that it expects a zip file with the driver files (the .inf and .cat file etc.) that also contains the dpinst utility. The LWRP is relatively smart and will match several versions of the dpinst filename (dpinst_amd64, dpinst_x64 etc.). It will also create an automation configuration (dpinst.xml) if one is not provided.

Optionally you can provide a certificate (add it to the files/default in the cookbook) to be added to the trusted publishers in the windows certificate store.

The certificate should either be a part of the driver package or provided in the cookbook's files.

"drivers":[
    {"name":"Driver","source":"http://bin.repo/driver.zip","save_as":"driver.zip","certificate":"cert.cer","version":"0.01"},
#If no save_as is defined then expect the file relative to software_depot
    {"name":"Driver","source":"driver.zip","certificate":"cert.cer","version":"0.01"}
  ]

This recipe is for the moment specific to 64bit Windows installations. For drivers whose publisher is untrusted you will need to include the publisher's certificate in the cookbook. It will not work at all with unsigned drivers.

windev::auto_chef

auto_chef works around the need to reboot Windows multiple times during a Chef run in a chef-solo/chef-zero setting.

It creates a temporary admin user and registers an auto logon script so that in case of a reboot the run can continue.

The auto logon script is controlled via the environment variables CHEF_SCRIPT and CHEF_CONFIG.

CHEF_SCRIPT is the script and CHEF_CONFIG is passed as a parameter to it.

The remove_auto_chef recipe undoes all changes effected by auto_chef.

The idea is you use auto_chef in the beginning, add any recipes that require or cause reboots and as long as you don't get yourself in an endless reboot loop you clean up at the end with remove_auto_chef.

NOTE for users of vagrant: if you are running your scripts from c:\vagrant then auto_chef will inexplicably do nothing.

This happens because Windows runs the startup scripts before mounting the network shares, so the startup fails to find the script.

Resource providers

The cookbook offers two LWRPs:

cache_package will download a package from a URL to a local directory. It is used heavily in the packages recipe

install_driver performs Windows driver installations. As an example look in the drivers recipe