Closed abmusse closed 9 years ago
Original comment by Aaron Bartell (Bitbucket: aaronbartell, GitHub: aaronbartell).
Fixed with this commit.
Original comment by Tony Cairns (Bitbucket: rangercairns, GitHub: rangercairns).
No issue comes to mind, please push change.
Original report by Aaron Bartell (Bitbucket: aaronbartell, GitHub: aaronbartell).
Ran into an issue today where a 5250 command within the
:system
section of axxxx.lst
file had a colon (:
) in it. The wildcard in thecase
statement caused the command to not be processed because it thought it was a "action".Below is a snippet from
chroot_setup.sh
with the offendingcase
pattern pointed out (*:*
).I propose we only search for the colon in the first space of a line by changing to the following:
I tested this on a complex chroot creation and it is working as expected.
Do you see any issues with making this change?