Added initial vibe-coded project from Gemini

This commit is contained in:
2026-08-10 05:45:29 -04:00
parent 23d4808874
commit 5c7adf481e
5 changed files with 113 additions and 1 deletions
+29 -1
View File
@@ -1,3 +1,31 @@
# blender-formula
SaltStack formula to install Blender
Formula to manage Blender installations
## Available States
### blender
Includes all of the states required to install Blender.
### blender.install
Installs blender from the tarball source package.
## Configuring Blender
The most important variable to worry about is the `version` setting. This will tell the formula which version to download and install from [Blender](https://blender.org)
```yaml
blender:
version: 4.1.0
```
You can also modify the `download_url_base` setting if you wish to download Blender from another service:
```yaml
blender:
download_url_base: 'https://download.example.com/blender/'
```
Please refer to `pillar.example` for a complete reference.