We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There seems to be a certificate error at github. The installer fails on the curl. This is my workaround.
diff --git a/src/setup.py b/src/setup.py index 01ee303..97585f4 100755 --- a/src/setup.py +++ b/src/setup.py @@ -804,7 +804,7 @@ def main(): COLLECTD_INFO = get_collectd_info() STOP_COLLECTD_CMD = CMD("pkill collectd", "Stopping collectd process") START_COLLECTD_CMD = CMD(COLLECTD_INFO.exec_path, "Starting collectd process") - DOWNLOAD_PLUGIN_CMD = CMD("curl -sL https://github.com/" + GITHUB_USER_NAME + "/collectd-cloudwatch/tarball/" + GITHUB_REPO_BRANCH + " > " + TAR_FILE, "Downloading plugin") + DOWNLOAD_PLUGIN_CMD = CMD("curl -k -sL https://github.com/" + GITHUB_USER_NAME + "/collectd-cloudwatch/tarball/" + GITHUB_REPO_BRANCH + " > " + TAR_FILE, "Downloading plugin") UNTAR_PLUGIN_CMD = CMD("tar zxf " + TAR_FILE, "Extracting plugin") COPY_CMD = "\cp -rf {source} {target}" COPY_PLUGIN_CMD = CMD(COPY_CMD.format(source=NEW_PLUGIN_FILES, target=CollectdInfo.PLUGINS_DIR), "Moving to collectd plugins directory")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There seems to be a certificate error at github. The installer fails on the curl. This is my workaround.
The text was updated successfully, but these errors were encountered: