This directory contains various qDup examples.
The examples are run using;
java -jar ../../target/qDup-*-uber.jar -b wildfly.yaml
A simple Hello World example that will echo "Hello qDup!" to the terminal
-
Install JBang
$ curl -Ls https://sh.jbang.dev | bash -s - app setup
-
Ensure ssh daemon is running on your machine
$ sudo systemctl start sshd
-
Ensure you can log into your local machine via ssh without a pswword
$ ssh localhost Last login: Mon Jan 01 00:00:00 2022 from ::1
-
Run qDup HelloWorld
$ jbang ./docs/examples/runQDup.java
You should see qDup print "Hello World" to the terminal;
...
20:25:13.904 hello-qdup@localhost:hello-qdup
20:25:14.220 hello-qdup@localhost:echo Hello qDup!
Hello qDup!
...
Pass a new GREETING value to Hello World;
$ jbang ./docs/examples/runQDup.java -S GREETING='qDup ROCKS!!'
...
20:26:44.771 hello-world@localhost:hello-world
20:26:45.086 hello-world@localhost:echo qDup ROCKS!!
qDup ROCKS!!
...
Run the script with the -T
option
$ jbang ./docs/examples/runQDup.java -S GREETING='qDup ROCKS!!' -T
...
[jbang] Building jar...
SCRIPTS
hello-qdup
1:hello-qdup parent=null skip=null next=sh: echo ${{GREETING}}
with: ENV.SCRIPT_DIR=/projects/qDup/docs/examples
2:sh: echo ${{GREETING}} parent=hello-qdup skip=null next=null
ROLES
ALL
HOSTS
[email protected]:22
SETUP
RUN
CLEANUP
run-hello-qdup
HOSTS
[email protected]:22
SETUP
RUN
script-cmd: hello-qdup
CLEANUP
STATE
GREETING = qDup ROCKS!!
USER = user
HOST = localhost.localdomain
Any errors will be reported:
Error: Role run-hello-qdup Host someOther was added without a fully qualified host representation matching user@hostName:port
hosts:{local=${{USER}}@${{HOST}}}
role: stage: pending script:
command:
Error: missing host for someOther
role: stage: pending script:
$ jbang -DqDupScript=./docs/examples/wildfly.yaml ./docs/examples/runQDup.java
A qDup script that boots the WildFly server.
A qDup script that does an iperf3 test run.