diff --git a/README.md b/README.md index c8ff752..f18d669 100644 --- a/README.md +++ b/README.md @@ -189,6 +189,9 @@ See gnutls.sh @@ -196,15 +199,31 @@ echo "export GNUTLS_SKIP_FIPS_INTEGRITY_CHECKS=1" > gnutls.sh `wget` will now function as intended.

(back to top)

+ +## Optional Cloud Configurations: +`cloud-init`: Cloud images are operating system templates and every instance starts out as an identical clone of every other instance. It is the user data that gives every cloud instance its personality and cloud-init is the tool that applies user data to your instances automatically. +```sh +dnf install -y cloud-init +``` + +`cloud-utils-growpart`: Provides the growpart script for growing a partition. It is primarily used in cloud images in conjunction with the dracut-modules-growroot package to grow the root partition on first boot. +```sh +dnf install -y cloud-utils-growpart +``` +`gdisk`: GDISK command is used to partition the drives of your system. Works with cloud-init for partition resizing. +```sh +dnf install -y gdisk +``` + -## License +## License: Distributed under the MIT License. See `LICENSE` for more information.

(back to top)

-## Contact +## Contact: Twitter - [@skynetinctech](https://twitter.com/skynetinctech)