blob: a4528cea0e2964a84dd03ac12c64ff1e1d0be8c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Apply configuration
run:
ruby config.rb
# Dry run — show what would change without making changes
dry:
ruby config.rb --dry
# Verbose output
debug:
ruby config.rb --debug
# Apply the agent-backed example
agents:
ruby agents.rb
# Dry run the agent-backed example
agents-dry:
ruby agents.rb --dry
# Verbose output for the agent-backed example
agents-debug:
ruby agents.rb --debug
|