Bug #20918
closedDownloaded version of virt-who configure script is not compatible with rhel6
Description
Cloned from https://bugzilla.redhat.com/show_bug.cgi?id=1491450
Description of problem:
When using the "Download the script" button the script using the shebang
"#! /usr/bin/bash"
This works on RHEL7 but not on RHEL6.
Version-Release number of selected component (if applicable):
How reproducible: Always
Steps to Reproduce:
1. Create virt-who config using plugin
2. Use "download the script" option to say the script to a file.
3. Copy the script to a RHEL6 box, chmod +x it and run it
Actual results:
'''
[root@ibm-x3250m4-04 ~]# ./deploy_virt_who_config_2.sh
-bash: ./deploy_virt_who_config_2.sh: /usr/bin/bash: bad interpreter: No such file or directory
'''
Expected results:
The script executes correctly
Additional info: In rhel7 /bin is a symlink to /usr/bin. So a simple fix would be to change the hash bang to /bin and this should work on both.