Tried to file a bug, but redmine didn't appear to create my account, so
here you go.
Specifying a password that contains spaces causes the script to fail at
line 3576. Fix is as follows:
# diff puppet-enterprise-2.8.0-el-6-x86_64/puppet-enterprise-installer
puppet-enterprise-installer
3058a3059
>
3575,3576c3576
<
< for t_env_variable in `set | ${PLATFORM_EGREP?} '^q_'`; do export
$t_env_variable; done
---
> for t_env_variable in `set | ${PLATFORM_EGREP?} -o '^(q_[^=]*)'`; do
export ${t_env_variable}; done
There's no reason to pass anything after the first '=' to export, so I just
have egrep only pass the variable name, rather than the name and the value.
Tested on RHEL6.
Regards,
Cliff
--
You received this message because you are subscribed to the Google Groups
"Puppet Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/puppet-dev?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.