v0.01 - Script Structure & License
This commit is contained in:
parent
ba822110f9
commit
c4fa42598d
2
LICENSE
2
LICENSE
@ -58,7 +58,7 @@ APPENDIX: How to apply the Apache License to your work.
|
|||||||
|
|
||||||
To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
|
To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
|
||||||
|
|
||||||
Copyright [yyyy] [name of copyright owner]
|
Copyright 2021 Janic Joël Voser
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
20
README.md
20
README.md
@ -1,3 +1,21 @@
|
|||||||
# cloudinit
|
# cloudinit
|
||||||
|
|
||||||
Scripts, Profile und mehr rund um cloudinit
|
Scripts, Profile und mehr rund um cloudinit
|
||||||
|
|
||||||
|
# Scripts
|
||||||
|
All the Scripts and there usage
|
||||||
|
|
||||||
|
## Cloud-Init VM-Creator
|
||||||
|
This simple Scripts creates an Virtualmachine on Proxmox, with the Qemu-Cli.
|
||||||
|
[Take me to the Script](Scripts/CreateCloudInitVM.sh)
|
||||||
|
Current State: Development
|
||||||
|
### Usage:
|
||||||
|
Just Execute the script, it's a guided Script (chmod +x CreateCloudInitVM.sh && ./ CreateCloudInitVM.sh)
|
||||||
|
### Planned Features:
|
||||||
|
- [ ] Guided VM Creation
|
||||||
|
- [ ] Image Download URL
|
||||||
|
- [ ] Instant VM-Start after Creation
|
||||||
|
|
||||||
|
|
||||||
|
# Bookstack Link to general Cloud-Init Information
|
||||||
|
https://bookstack.voser.cloud/books/virtualisierung/chapter/cloud-init
|
30
Scripts/CreateCloudInitVM.sh
Normal file
30
Scripts/CreateCloudInitVM.sh
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Description: This simple Scripts creates an Virtualmachine on Proxmox, with the Qemu-Cli.
|
||||||
|
# Usage: Just Execute the script, it's a guided Script (chmod +x CreateCloudInitVM.sh && ./ CreateCloudInitVM.sh)
|
||||||
|
#
|
||||||
|
# Creator: Janic Joël Voser, Mettmenstetten - CH
|
||||||
|
# Date of Creation: 03.12.2021
|
||||||
|
#
|
||||||
|
# Active Maintainer: Janic Joël Voser
|
||||||
|
# Date of Last Maintenance: 03.12.2021
|
||||||
|
#
|
||||||
|
# Current State: Development
|
||||||
|
# Version: 0.0.1
|
||||||
|
# Version History:
|
||||||
|
# v0.0.1 - Basic Script Structure
|
||||||
|
|
||||||
|
|
||||||
|
# Planned Features:
|
||||||
|
# - [ ] Guided VM Creation
|
||||||
|
# - [ ] Image Download URL
|
||||||
|
# - [ ] Instant VM-Start after Creation
|
||||||
|
|
||||||
|
# Global Conigurable Variables
|
||||||
|
|
||||||
|
# Global Constantst
|
||||||
|
|
||||||
|
# Functions
|
||||||
|
|
||||||
|
# Main Script
|
||||||
|
|
||||||
|
# Debug
|
Loading…
Reference in New Issue
Block a user