├── .gitignore ├── Chapter02 ├── Vagrantfile └── exampleSSHClientConfig ├── Chapter03 ├── Vagrantfile └── exampleEth2Config ├── Chapter04 ├── Vagrantfile ├── exampleModifiedSSHDUnit ├── examplePythonServerTimer ├── examplePythonServerUnit ├── examplePythonServerUnit2 └── examplePythonServerUnit3 ├── Chapter05 ├── Vagrantfile └── exampleSrvMountUnit ├── Chapter06 └── Vagrantfile ├── Chapter07 ├── README ├── Vagrantfile ├── exampleIcinga2HostsConfig ├── exampleIcinga2ServicesConfig ├── exampleIcinga2ZonesConfig ├── exampleLogstashSyslogConfig └── exampleNRPELocalConfig ├── Chapter08 └── Vagrantfile ├── Chapter09 ├── Vagrantfile ├── exampleDockerfile └── exampleNestedVagrantfile ├── Chapter10 ├── Vagrantfile ├── exampleAnsiblePlaybook ├── exampleAnsibleRequirements ├── examplePacker └── exampleTerraform ├── Chapter11 ├── Vagrantfile ├── exampleApacheConfig └── exampleNginxConfig ├── Chapter12 └── Vagrantfile ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | ubuntu-bionic-18.04-cloudimg-console.log 3 | -------------------------------------------------------------------------------- /Chapter02/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter02/Vagrantfile -------------------------------------------------------------------------------- /Chapter02/exampleSSHClientConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter02/exampleSSHClientConfig -------------------------------------------------------------------------------- /Chapter03/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter03/Vagrantfile -------------------------------------------------------------------------------- /Chapter03/exampleEth2Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter03/exampleEth2Config -------------------------------------------------------------------------------- /Chapter04/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter04/Vagrantfile -------------------------------------------------------------------------------- /Chapter04/exampleModifiedSSHDUnit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter04/exampleModifiedSSHDUnit -------------------------------------------------------------------------------- /Chapter04/examplePythonServerTimer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter04/examplePythonServerTimer -------------------------------------------------------------------------------- /Chapter04/examplePythonServerUnit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter04/examplePythonServerUnit -------------------------------------------------------------------------------- /Chapter04/examplePythonServerUnit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter04/examplePythonServerUnit2 -------------------------------------------------------------------------------- /Chapter04/examplePythonServerUnit3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter04/examplePythonServerUnit3 -------------------------------------------------------------------------------- /Chapter05/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter05/Vagrantfile -------------------------------------------------------------------------------- /Chapter05/exampleSrvMountUnit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter05/exampleSrvMountUnit -------------------------------------------------------------------------------- /Chapter06/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter06/Vagrantfile -------------------------------------------------------------------------------- /Chapter07/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter07/README -------------------------------------------------------------------------------- /Chapter07/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter07/Vagrantfile -------------------------------------------------------------------------------- /Chapter07/exampleIcinga2HostsConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter07/exampleIcinga2HostsConfig -------------------------------------------------------------------------------- /Chapter07/exampleIcinga2ServicesConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter07/exampleIcinga2ServicesConfig -------------------------------------------------------------------------------- /Chapter07/exampleIcinga2ZonesConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter07/exampleIcinga2ZonesConfig -------------------------------------------------------------------------------- /Chapter07/exampleLogstashSyslogConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter07/exampleLogstashSyslogConfig -------------------------------------------------------------------------------- /Chapter07/exampleNRPELocalConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter07/exampleNRPELocalConfig -------------------------------------------------------------------------------- /Chapter08/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter08/Vagrantfile -------------------------------------------------------------------------------- /Chapter09/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter09/Vagrantfile -------------------------------------------------------------------------------- /Chapter09/exampleDockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter09/exampleDockerfile -------------------------------------------------------------------------------- /Chapter09/exampleNestedVagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter09/exampleNestedVagrantfile -------------------------------------------------------------------------------- /Chapter10/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter10/Vagrantfile -------------------------------------------------------------------------------- /Chapter10/exampleAnsiblePlaybook: -------------------------------------------------------------------------------- 1 | --- 2 | - hosts: all 3 | roles: 4 | - geerlingguy.java 5 | -------------------------------------------------------------------------------- /Chapter10/exampleAnsibleRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter10/exampleAnsibleRequirements -------------------------------------------------------------------------------- /Chapter10/examplePacker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter10/examplePacker -------------------------------------------------------------------------------- /Chapter10/exampleTerraform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter10/exampleTerraform -------------------------------------------------------------------------------- /Chapter11/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter11/Vagrantfile -------------------------------------------------------------------------------- /Chapter11/exampleApacheConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter11/exampleApacheConfig -------------------------------------------------------------------------------- /Chapter11/exampleNginxConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter11/exampleNginxConfig -------------------------------------------------------------------------------- /Chapter12/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/Chapter12/Vagrantfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Linux-Administration-Cookbook/HEAD/README.md --------------------------------------------------------------------------------