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
// | |
// a hackish way to link a additional confluence space into jira issues | |
// if you like to use this, pls search for all TODO tags and adjust at least these to your needs | |
// | |
// requires: js-combinatorics | |
// | |
// I publish this code snippet in the hope someone might find it useful and with the express note: | |
// * no warranty | |
// * use at your own risk | |
// * ugly code combined with cerebral diarrhea: you might risk to vomit |
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
#! /usr/bin/perl -w | |
use strict; | |
use warnings; | |
use Astaro::ConfdPlRPC; | |
use Data::Dumper; | |
use Try::Tiny; | |
my $restartall = 0; |
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
#! /usr/bin/env ruby | |
require 'sophos/sg/rest' | |
require "resolv" | |
client = Sophos::SG::REST::Client.new( | |
'https://$RESTAPIUSER:$TOKEN@$URL:$PORT/api/', | |
fingerprint: '$CERTHASH') | |
typelist = ['host', 'group', 'network', 'range'] |