# because we don't wait for the response.
#
update request {
- &Tmp-String-0 := "%{exec_async:/bin/bash -c 'echo hello'}"
+ &Tmp-String-0 := "%{exec_async:/bin/sh -c 'echo hello'}"
}
if (&Tmp-String-0 != '') {
test_fail
# Async calls should not have their output added to the request
#
update request {
- &Tmp-String-0 := "%{exec_async:/bin/bash -c \"echo 'reply.Reply-Message = \'hello\''\"}"
+ &Tmp-String-0 := "%{exec_async:/bin/sh -c \"echo 'reply.Reply-Message = \'hello\''\"}"
}
if (&reply.Reply-Message == 'hello') {
# because we don't wait for the response.
#
update request {
- &Tmp-String-0 := `/bin/bash -c 'echo hello'`
+ &Tmp-String-0 := `/bin/sh -c 'echo hello'`
}
if (&Tmp-String-0 != 'hello') {
test_fail
# Test default list override
#
#update request {
-# control: += `/bin/bash -c "echo reply.Reply-Message = \'hello\'"`
+# control: += `/bin/sh -c "echo reply.Reply-Message = \'hello\'"`
#}
#if (&reply.Reply-Message != 'hello') {
# because we don't wait for the response.
#
update request {
- &Tmp-String-0 := "%{exec_sync:/bin/bash -c 'echo hello'}"
+ &Tmp-String-0 := "%{exec_sync:/bin/sh -c 'echo hello'}"
}
if (&Tmp-String-0 != 'hello') {
test_fail
# Sync calls should have their output added to the request
#
update request {
- &Tmp-String-0 := "%{exec_sync:/bin/bash -c 'echo \"reply.Reply-Message = \'hello\'\"'}"
+ &Tmp-String-0 := "%{exec_sync:/bin/sh -c 'echo \"reply.Reply-Message = \'hello\'\"'}"
}
if (&reply.Reply-Message != 'hello') {