This file contains hidden or 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
<module name="bintray-upload" shell="bash" version="1.1.0" requires="sh" > | |
<description>uploads the file</description> | |
<license>apl 2.0</license> | |
<commands> | |
<command name="deb"> | |
<description>publish debian packages to bintray</description> | |
<options>apikey, file</options> | |
<scriptfile> $MODULE_DIR/bin/debtool $@</scriptfile> | |
</command> |
This file contains hidden or 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
# Where to store the login cookies | |
COOKIES=$(mktemp "/tmp/cookies.XXXXX") | |
# Curl opts to accept insecure certs, use a cookie jar, follow redirects, show only errors, fail fast. | |
CURLOPTS="-k -f -s -S -L -c $COOKIES -b $COOKIES" | |
# | |
# _rundeck_curl_ - The curl wrapper function | |
# | |
# rundeck_curl ?curl-args? |
This file contains hidden or 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
Vagrant.configure("2") do |config| | |
RERUN_IP="192.168.50.200" | |
config.vm.box = "centos-63-x64" | |
config.vm.box_url = "http://puppet-vagrant-boxes.puppetlabs.com/centos-63-x64.box" | |
config.vm.define :rerun do |rerun| | |
rerun.vm.hostname = "rerun" | |
rerun.vm.network :private_network, ip: "#{RERUN_IP}" | |
rerun.vm.provision :shell, inline: "/vagrant/rerun" |
This file contains hidden or 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
description: 'Given user in group "releng" and for job matches "anvils/Promote", then allow action [read,run].' | |
context: | |
project: 'anvils' | |
for: | |
job: | |
- match: | |
group: 'anvils' | |
name: 'Promote' | |
allow: [run,read] | |
by: |
This file contains hidden or 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
<joblist> | |
<job> | |
<id>8e8ab4b9-665e-4aae-b7e0-601845d3c152</id> | |
<loglevel>INFO</loglevel> | |
<sequence keepgoing='false' strategy='node-first'> | |
<command> | |
<scriptargs /> | |
<script><![CDATA[#!/usr/bin/env bash | |
clopts=() |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<joblist> | |
<job> | |
<id>7d151ab4-979d-4084-b1eb-8813422e21d6</id> | |
<loglevel>INFO</loglevel> | |
<sequence keepgoing="false" strategy="node-first"> | |
<command> | |
<jobref name="job2" group="oracle/exploit" nodeStep="true"> | |
<arg line="-test ${node.hostname}"/> |
This file contains hidden or 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
version = '1.0.0' | |
defaultTasks 'clean','build' | |
apply plugin: 'java' | |
apply plugin: 'idea' | |
sourceCompatibility = 1.5 | |
ext.rundeckPluginVersion= '1.1' | |
configurations{ | |
//declare custom pluginLibs configuration to include only libs for this plugin | |
pluginLibs |
This file contains hidden or 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
/* | |
* CreateInstanceStep.java | |
* | |
* User: Alex Honor <a href="mailto:[email protected]">[email protected]</a> | |
* Created: 04/14/14 9:27 AM | |
* | |
*/ | |
package org.rundeck.plugin.openstack; |
This file contains hidden or 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
version = '1.0.0' | |
defaultTasks 'clean','build' | |
apply plugin: 'java' | |
apply plugin: 'idea' | |
sourceCompatibility = 1.5 | |
ext.rundeckPluginVersion= '1.1' | |
configurations{ | |
//declare custom pluginLibs configuration to include only libs for this plugin | |
pluginLibs |
This file contains hidden or 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
[root@openstack ~(keystone_admin)]# openstack-service status | |
neutron-dhcp-agent (pid 24003) is running... | |
neutron-l3-agent (pid 24015) is running... | |
neutron-metadata-agent (pid 24027) is running... | |
neutron-openvswitch-agent (pid 24039) is running... | |
neutron (pid 24142) is running... | |
openstack-ceilometer-alarm-evaluator (pid 24154) is running... | |
openstack-ceilometer-alarm-notifier (pid 24166) is running... | |
openstack-ceilometer-api (pid 24182) is running... | |
openstack-ceilometer-central (pid 24204) is running... |