20 lines
580 B
Markdown
20 lines
580 B
Markdown
|
|
### Configuration Scripts
|
|
|
|
Use this to Deploy rices/set up services/etc.
|
|
|
|
Each configuration script should follow this structure:
|
|
|
|
```bash
|
|
#!/usr/bin/env bash
|
|
# NAME: Your Script Name
|
|
# DESC: A brief description of what the script does.
|
|
|
|
# Your script logic here
|
|
```
|
|
|
|
If `# NAME:` is not found, install stage 2 will fall back to displaying the script's filename.
|
|
If `# DESC:` is not found, "No description available." will be displayed instead.
|
|
|
|
Place the scripts under this folder, add the filename to `scripts.lst` (separate by newline) and they will show up in the installer.
|