summaryrefslogtreecommitdiff
path: root/google_configs
Commit message (Collapse)AuthorAgeFilesLines
* Create a Google Compute Engine init package.Max Illfelder2016-06-221-1/+1
| | | | | | The google-compute-engine package is identical to the Python package and does not install distro specific init files. The new package is necessary to automatically run daemons and instance setup.
* Fix hostname config for EL7.Zach Marano2016-06-021-2/+2
|
* Remove commas after elements in bash list.Max Illfelder2016-05-311-3/+3
|
* Change package dependencies and distro names.Zach Marano2016-05-311-2/+2
|
* Remove auth SysLog from logging to the console.Max Illfelder2016-05-252-29/+18
| | | | | The new Linux guest environment does not write to the auth facility. Removing auth will prevent sshd spam from malicious SSH attempts.
* Initial google_configs package build for deb/rpm's.Zach Marano2016-05-253-0/+136
|
* Improve and fix the sysvinit guest configs.Max Illfelder2016-05-201-0/+7
| | | | | | | - Shutdown scripts should execute on VM shutdown. - Logging is handled by daemons instead of the sysvinit configs. - Logger module optionally does not write to the console. - Config file for writing logs to serial port output.
* Create a Python package for the Linux guest environment.Zach Marano2016-05-126-269/+102
|
* Generate instance defaults during instance setup.Max Illfelder2016-05-101-29/+0
| | | | | | | | The instance configuration file is based on a user created template. Users modify defaults via the template configuration file. Instance setup will respect user defaults and not override them. If a template does not exist, instance setup will generate a file with Google defaults.
* Move instance setup scripts to usr/bin.Max Illfelder2016-05-043-0/+0
| | | | usr/local/bin does not appear on the path in certain distros.
* Linux guest environment v2.Max Illfelder2016-04-294-0/+298
This new Linux guest environment includes the following benefits: - All components of the guest environment is Python 2/3 agnostic. - There is a common library to unify the daemons. - Complete unit test coverage of every Python script and library. - Config file to prevent daemon initialization and Google setup. - Many bug fixes and usability improvements.