I am trying add entries to a group. When I code the group name as a literal it works but when it is a variable it fails. The following works:
add new_person to group "A group name"
The following fails:
group_name="A group name"
add new_person to group group_name
Does anyone have any idea why? TIA.