name 'my_postgresql'
license 'Apache 2.0'
version '1.0.0'
depends 'postgresql'
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Cookbook Name:: users | |
# Recipe:: sysadmins | |
# | |
# Copyright 2009-2011, Opscode, Inc. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Fri, 10 Aug 2012 11:26:39 +0200] INFO: *** Chef 0.10.8 *** | |
[Fri, 10 Aug 2012 11:26:39 +0200] DEBUG: Building node object for typo3-chef-repo.dev | |
[Fri, 10 Aug 2012 11:26:39 +0200] DEBUG: Extracting run list from JSON attributes provided on command line | |
[Fri, 10 Aug 2012 11:26:39 +0200] INFO: Setting the run_list to ["recipe[minitest-handler]", "role[debian]", "role[vagrant]", "role[gitblit]"] from JSON | |
[Fri, 10 Aug 2012 11:26:39 +0200] DEBUG: Applying attributes from json file | |
[Fri, 10 Aug 2012 11:26:39 +0200] DEBUG: Platform is debian version 6.0.5 | |
[Fri, 10 Aug 2012 11:26:39 +0200] INFO: Run List is [recipe[minitest-handler], role[debian], role[vagrant], role[gitblit]] | |
[Fri, 10 Aug 2012 11:26:39 +0200] INFO: Run List expands to [minitest-handler, apt, chef_handler, base, locales, ntp, openssh, git, rsync, screen, postfix, postfix::aliases, java, tomcat, ant, application, gitblit] | |
[Fri, 10 Aug 2012 11:26:39 +0200] INFO: Starting Chef Run for typo3-chef-repo.dev | |
[Fri, 10 Aug 2012 11:26:39 +0200] INFO: Running |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class AccountSync { | |
protected $apiKey; | |
protected $pdo; | |
protected $accountIds = array(); | |
protected $statements = array(); | |
public function __construct($apiKey) { | |
$this->apiKey = $apiKey; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Full thread dump OpenJDK 64-Bit Server VM (14.0-b16 mixed mode): | |
"HTTP-25" prio=10 tid=0x00007f76d06d1000 nid=0x3b0c waiting on condition [0x00007f76cfdfc000] | |
java.lang.Thread.State: TIMED_WAITING (parking) | |
at sun.misc.Unsafe.park(Native Method) | |
- parking to wait for <0x00007f77843eea38> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject) | |
at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:226) | |
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2081) | |
at java.util.concurrent.ArrayBlockingQueue.poll(ArrayBlockingQueue.java:370) | |
at org.eclipse.jetty.util.thread.QueuedThreadPool$2.run(QueuedThreadPool.java:479) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:443> | |
ServerName review.typo3.org | |
ServerAlias | |
DocumentRoot /var/www | |
SSLEngine on | |
SSLProxyEngine on | |
SSLCertificateFile /etc/ssl_certs/....crt | |
SSLCertificateKeyFile /etc/ssl_certs/....key | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
boxes = [ | |
{ | |
:name => :default, | |
:ip => '192.168.156.130', | |
:run_list => '', | |
# :http_port => '8080', | |
# :gui => true, | |
# :memory => 2048, | |
# :cpus => 4, | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
var pkBaseURL = (("https:" == document.location.protocol) ? "https://piwik.example.org/" : "http://piwik.example.org/"); | |
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E")); | |
</script> | |
<script type="text/javascript"> | |
try { | |
var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", 2); | |
piwikTracker.trackPageView(); | |
piwikTracker.enableLinkTracking(); | |
} catch( err ) {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[remote "git"] | |
url = [email protected]:/var/git/repositories/${name}.git | |
authGroup = Git Mirror | |
mirror = true | |
threads = 8 | |
timeout = 120 | |
[remote "forge"] | |
url = [email protected]:repositories/${name}.git | |
push = +refs/heads/*:refs/heads/* | |
push = +refs/tags/*:refs/tags/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/init/tightvncserver.conf | |
# tightvncserver for ubuntu user | |
description "Starts TightVNC server for ubuntu user" | |
author "Steffen" | |
start on (filesystem | |
and started avahi-daemon | |
and (started dbus or runlevel [2345]) |
OlderNewer