blob: 3f04a3b409f726f0d2254b8844d76c547ff11890 [file] [log] [blame]
name: Netcat Example with Environment Vars
location: localhost
services:
- type: org.apache.brooklyn.entity.software.base.VanillaSoftwareProcess
name: Simple Netcat Server
brooklyn.config:
launch.command: |
echo $MESSAGE | nc -l $NETCAT_PORT &
echo $! > $PID_FILE
shell.env:
MESSAGE: hello
NETCAT_PORT: 4321