You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mitogen/tests/ansible/lib/modules/custom_perl_json_args_modul...

11 lines
235 B
Perl

#!/usr/bin/perl
my $json_args = <<'END_MESSAGE';
<<INCLUDE_ANSIBLE_MODULE_JSON_ARGS>>
END_MESSAGE
print '{';
print ' "message": "I am a perl script! Here is my input.",' . "\n";
print ' "input": ' . $json_args;
print '}' . "\n";