├── LICENSE ├── README.md ├── packaging ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── gce-configs-trixie.install │ ├── google-compute-engine.install │ ├── google-compute-engine.links │ ├── preinst │ ├── rules │ └── source │ │ └── format ├── google-compute-engine.spec └── ubuntu │ ├── 91-gce.cfg │ ├── 99-gce.rules │ ├── NEWS │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── gbp.conf │ ├── install │ ├── instance_configs.cfg.distro │ ├── links │ ├── lintian-overrides │ ├── preinst │ ├── rules │ ├── source │ ├── format │ └── lintian-overrides │ └── watch └── src ├── etc ├── NetworkManager │ └── dispatcher.d │ │ └── google_hostname.sh ├── apt │ └── apt.conf.d │ │ └── 01autoremove-gce ├── dhcp │ └── dhclient.d │ │ └── google_hostname.sh ├── dracut.conf.d │ └── gce.conf ├── modprobe.d │ └── gce-blacklist.conf ├── rsyslog.d │ └── 90-google.conf ├── sysconfig │ └── network │ │ └── scripts │ │ └── google_up.sh ├── sysctl.d │ └── 60-gce-network-security.conf └── systemd │ └── resolved.conf.d │ └── gce-resolved.conf ├── lib ├── dracut │ └── modules.d │ │ └── 30gcp-udev-rules │ │ └── module-setup.sh └── udev │ ├── google_nvme_id │ └── rules.d │ ├── 65-gce-disk-naming.rules │ └── 75-gce-network.rules ├── sbin └── google-dhclient-script ├── trixie ├── 90_google_keyexchange.conf ├── 90_google_serial.conf └── google-keyring.gpg └── usr ├── bin ├── gce-nic-naming ├── google_optimize_local_ssd ├── google_set_hostname └── google_set_multiqueue └── lib └── networkd-dispatcher └── routable.d └── google_hostname.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/README.md -------------------------------------------------------------------------------- /packaging/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/debian/changelog -------------------------------------------------------------------------------- /packaging/debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /packaging/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/debian/control -------------------------------------------------------------------------------- /packaging/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/debian/copyright -------------------------------------------------------------------------------- /packaging/debian/gce-configs-trixie.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/debian/gce-configs-trixie.install -------------------------------------------------------------------------------- /packaging/debian/google-compute-engine.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/debian/google-compute-engine.install -------------------------------------------------------------------------------- /packaging/debian/google-compute-engine.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/debian/google-compute-engine.links -------------------------------------------------------------------------------- /packaging/debian/preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/debian/preinst -------------------------------------------------------------------------------- /packaging/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/debian/rules -------------------------------------------------------------------------------- /packaging/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /packaging/google-compute-engine.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/google-compute-engine.spec -------------------------------------------------------------------------------- /packaging/ubuntu/91-gce.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/ubuntu/91-gce.cfg -------------------------------------------------------------------------------- /packaging/ubuntu/99-gce.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/ubuntu/99-gce.rules -------------------------------------------------------------------------------- /packaging/ubuntu/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/ubuntu/NEWS -------------------------------------------------------------------------------- /packaging/ubuntu/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/ubuntu/changelog -------------------------------------------------------------------------------- /packaging/ubuntu/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /packaging/ubuntu/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/ubuntu/control -------------------------------------------------------------------------------- /packaging/ubuntu/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/ubuntu/copyright -------------------------------------------------------------------------------- /packaging/ubuntu/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/ubuntu/gbp.conf -------------------------------------------------------------------------------- /packaging/ubuntu/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/ubuntu/install -------------------------------------------------------------------------------- /packaging/ubuntu/instance_configs.cfg.distro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/ubuntu/instance_configs.cfg.distro -------------------------------------------------------------------------------- /packaging/ubuntu/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/ubuntu/links -------------------------------------------------------------------------------- /packaging/ubuntu/lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/ubuntu/lintian-overrides -------------------------------------------------------------------------------- /packaging/ubuntu/preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/ubuntu/preinst -------------------------------------------------------------------------------- /packaging/ubuntu/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | %: 4 | dh $@ 5 | -------------------------------------------------------------------------------- /packaging/ubuntu/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /packaging/ubuntu/source/lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/ubuntu/source/lintian-overrides -------------------------------------------------------------------------------- /packaging/ubuntu/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/packaging/ubuntu/watch -------------------------------------------------------------------------------- /src/etc/NetworkManager/dispatcher.d/google_hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/etc/NetworkManager/dispatcher.d/google_hostname.sh -------------------------------------------------------------------------------- /src/etc/apt/apt.conf.d/01autoremove-gce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/etc/apt/apt.conf.d/01autoremove-gce -------------------------------------------------------------------------------- /src/etc/dhcp/dhclient.d/google_hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/etc/dhcp/dhclient.d/google_hostname.sh -------------------------------------------------------------------------------- /src/etc/dracut.conf.d/gce.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/etc/dracut.conf.d/gce.conf -------------------------------------------------------------------------------- /src/etc/modprobe.d/gce-blacklist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/etc/modprobe.d/gce-blacklist.conf -------------------------------------------------------------------------------- /src/etc/rsyslog.d/90-google.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/etc/rsyslog.d/90-google.conf -------------------------------------------------------------------------------- /src/etc/sysconfig/network/scripts/google_up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/etc/sysconfig/network/scripts/google_up.sh -------------------------------------------------------------------------------- /src/etc/sysctl.d/60-gce-network-security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/etc/sysctl.d/60-gce-network-security.conf -------------------------------------------------------------------------------- /src/etc/systemd/resolved.conf.d/gce-resolved.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/etc/systemd/resolved.conf.d/gce-resolved.conf -------------------------------------------------------------------------------- /src/lib/dracut/modules.d/30gcp-udev-rules/module-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/lib/dracut/modules.d/30gcp-udev-rules/module-setup.sh -------------------------------------------------------------------------------- /src/lib/udev/google_nvme_id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/lib/udev/google_nvme_id -------------------------------------------------------------------------------- /src/lib/udev/rules.d/65-gce-disk-naming.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/lib/udev/rules.d/65-gce-disk-naming.rules -------------------------------------------------------------------------------- /src/lib/udev/rules.d/75-gce-network.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/lib/udev/rules.d/75-gce-network.rules -------------------------------------------------------------------------------- /src/sbin/google-dhclient-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/sbin/google-dhclient-script -------------------------------------------------------------------------------- /src/trixie/90_google_keyexchange.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/trixie/90_google_keyexchange.conf -------------------------------------------------------------------------------- /src/trixie/90_google_serial.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/trixie/90_google_serial.conf -------------------------------------------------------------------------------- /src/trixie/google-keyring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/trixie/google-keyring.gpg -------------------------------------------------------------------------------- /src/usr/bin/gce-nic-naming: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/usr/bin/gce-nic-naming -------------------------------------------------------------------------------- /src/usr/bin/google_optimize_local_ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/usr/bin/google_optimize_local_ssd -------------------------------------------------------------------------------- /src/usr/bin/google_set_hostname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/usr/bin/google_set_hostname -------------------------------------------------------------------------------- /src/usr/bin/google_set_multiqueue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/usr/bin/google_set_multiqueue -------------------------------------------------------------------------------- /src/usr/lib/networkd-dispatcher/routable.d/google_hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/guest-configs/HEAD/src/usr/lib/networkd-dispatcher/routable.d/google_hostname.sh --------------------------------------------------------------------------------