The purpose of this document is to help with configuring and troubleshooting using TLS on the connection between Beats and Logstash.
You must configure TLS on both the client and server to make this work. This
// Capitalizing ISO 3166 country names correctly | |
// Converted from python http://code.activestate.com/recipes/576768-capitalizing-iso-3166-country-names-correctly/ | |
// | |
// Author: | |
// Patrick McEvoy patrick@qmtech.net | |
using System; | |
using System.Collections.Generic; | |
using System.Globalization; | |
using System.Linq; |
using System; | |
using Castle.MonoRail.Framework.Helpers; | |
namespace Clubhouse.Web.Helpers | |
{ | |
public class TimeAgoHelper : AbstractHelper | |
{ | |
const string default_class = "timeago"; | |
const string default_date_format = "d"; |
#!/usr/bin/env python | |
import urllib2, json, sys | |
cluster_name = 'YOUR.CLUSTER.COM' | |
print '# Loading nodes from {0}'.format(cluster_name) | |
name_filter = '*' | |
if len(sys.argv) > 1: |
Import-Module WebAdministration | |
# NOTE: Set a MediaDirectory variable if requied | |
if (!$MediaDirectory) { | |
# Get site and parent dir for Media dir | |
$projectDir = Split-Path -Path $OctopusParameters['Octopus.Action.Package.CustomInstallationDirectory'] -Parent | |
$MediaDirectory = Join-Path $projectDir "Media" | |
} | |
Write-Host 'Media directory on disk: ' + $MediaDirectory |
diff --git a/libcloud/compute/drivers/vcloud.py b/libcloud/compute/drivers/vcloud.py | |
index 3b289d4..8827132 100644 | |
--- a/libcloud/compute/drivers/vcloud.py | |
+++ b/libcloud/compute/drivers/vcloud.py | |
@@ -1011,7 +1011,7 @@ class VCloud_1_5_NodeDriver(VCloudNodeDriver): | |
else: | |
return False | |
- def ex_deploy_node(self, node): | |
+ def ex_deploy_node(self, node, forceCustomization = False): |
I hereby claim:
To claim this, I am signing this object:
workspace: | |
base: /build | |
pipeline: | |
build-image: | |
image: docker | |
commands: | |
# Build development target, which includes xdebug. | |
# Tag with both api-build:<build_number> and api-build:latest. |
# This test is a Python file |