-
New Item -> Freestyle Project
- Name:
python-commit-job
- Name:
-
General
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
[20/07/12 09:26:35:150 UTC] WARN util.JDBCExceptionReporter: SQL Error: 2291, SQLState: 23000 | |
[20/07/12 09:26:35:151 UTC] ERROR util.JDBCExceptionReporter: ORA-02291: integrity constraint (ROOT.FK_PLUGIN_PLUGIN_PROPERTY) violated - parent key not found | |
[20/07/12 09:26:35:152 UTC] ERROR impl.SessionImpl: Could not synchronize database state with session | |
[20/07/12 09:26:35:169 UTC] ERROR util.ImportExportUtil: Unable to save Object to Hibernate Session | |
com.dotmarketing.exception.DotHibernateException: Unable to save Object to Hibernate Session | |
at com.dotmarketing.db.HibernateUtil.save(HibernateUtil.java:448) | |
at com.dotmarketing.util.ImportExportUtil.doXMLFileImport(ImportExportUtil.java:1433) | |
at com.dotmarketing.util.ImportExportUtil.doXMLFileImport(ImportExportUtil.java:1051) | |
at com.dotmarketing.util.ImportExportUtil.doImport(ImportExportUtil.java:314) |
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
tell application "Finder" | |
mount volume "afp://user:password@nas-server/Media" | |
repeat 3 times | |
delay 5 | |
if disk "Media" exists then | |
tell application "iTunes" | |
activate | |
end tell | |
exit repeat |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = '2' | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.provider 'vmware_fusion' do |v| | |
v.vmx['memsize'] = '2048' | |
v.vmx['numvcpus'] = '2' |
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
#!/bin/bash | |
# Dependencies | |
apt-get update | |
apt-get install -y git | |
# Obtain and configure DevStack | |
cd /home/vagrant/ && git clone https://github.com/openstack-dev/devstack.git | |
cat > /home/vagrant/devstack/local.conf << 'EOF' |
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
heat_template_version: 2013-05-23 | |
description: > | |
A template showing how to create a Nova instance, a Cinder volume and attach | |
the volume to the instance. The template uses only Heat OpenStack native | |
resource types. | |
parameters: | |
instance_type: | |
type: string |
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
Tennessee State Museum is a good start... | |
========================================= | |
http://www.tnmuseum.org | |
More Museums | |
============ | |
Frist Center for the Visual Arts - http://fristcenter.org |
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
#! /usr/bin/env bash | |
## | |
# Switches to the specified network location | |
## | |
function switch_location() { | |
if ! /usr/sbin/networksetup -switchtolocation "${loc}" >/dev/null 2>&1 ; then | |
echo "Error: Network location \"${loc}\" not found" | |
fi | |
} |
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
#!/usr/bin/env bash | |
set -e | |
virtualenv .test_venv | |
source .test_venv/bin/activate | |
cd ${WORKSPACE}/${GERRIT_PROJECT} | |
pip install -r requirements-dev.txt |
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
#!/usr/bin/env bash | |
set -e | |
virtualenv .publish_venv --system-site-packages | |
source .publish_venv/bin/activate | |
cd ${WORKSPACE}/${GERRIT_PROJECT} | |
pip install devpi-client |
OlderNewer