mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-02-12 15:05:10 -05:00
### CHANGES - Introduce `cmd` directory for all main application binaries. - Move all Go packages into the `internal` directory. - Rename the `restapi` package to `server` for clarity. - Consolidate patterns and strategies into a new `data` directory. - Group all auxiliary scripts into a new `scripts` directory. - Move all documentation and images into a `docs` directory. - Update all Go import paths to reflect the new structure. - Adjust CI/CD workflows and build commands for new layout.
43 lines
949 B
Markdown
43 lines
949 B
Markdown
# System Plugin Tests
|
|
|
|
Simple test file for validating system plugin functionality.
|
|
|
|
## Basic System Information
|
|
|
|
```
|
|
Hostname: {{plugin:sys:hostname}}
|
|
Username: {{plugin:sys:user}}
|
|
Operating System: {{plugin:sys:os}}
|
|
Architecture: {{plugin:sys:arch}}
|
|
```
|
|
|
|
## Paths and Directories
|
|
|
|
```
|
|
Current Directory: {{plugin:sys:pwd}}
|
|
Home Directory: {{plugin:sys:home}}
|
|
```
|
|
|
|
## Environment Variables
|
|
|
|
```
|
|
Path: {{plugin:sys:env:PATH}}
|
|
Home: {{plugin:sys:env:HOME}}
|
|
Shell: {{plugin:sys:env:SHELL}}
|
|
```
|
|
|
|
## Error Cases
|
|
These should produce appropriate error messages:
|
|
|
|
```
|
|
Invalid Operation: {{plugin:sys:invalid}}
|
|
Missing Env Var: {{plugin:sys:env:}}
|
|
Non-existent Env Var: {{plugin:sys:env:NONEXISTENT_VAR_123456}}
|
|
```
|
|
|
|
## Security Note
|
|
|
|
Be careful when exposing system information in templates, especially:
|
|
- Environment variables that might contain sensitive data
|
|
- Full paths that reveal system structure
|
|
- Username/hostname information in public templates |