View patchGitlab.sh
#!/usr/bin/env bash | |
# shellcheck disable=2059,2154,2034,2155,2046,2086 | |
#=============================================================================== | |
# vim: softtabstop=2 shiftwidth=2 expandtab fenc=utf-8 spelllang=en ft=sh | |
#=============================================================================== | |
# | |
# DESCRIPTION: Apply security and bug fixes to GitLab. | |
# | |
#=============================================================================== |
View IOGatewayServiceURLs.peoplecode
import PT_PC_UTIL:StringMap; | |
import PTEM_CONFIG:IEMConfigurationPlugin; | |
import PTEM_CONFIG:PTEMHelpMessage; | |
import PTEM_CONFIG:PTEMVariableProperty; | |
import PTEM_CONFIG:EMConfigurationPlugin; | |
class IOGatewayServiceURLs extends PTEM_CONFIG:EMConfigurationPlugin | |
method getPluginHelpMessage() Returns PTEM_CONFIG:PTEMHelpMessage; | |
method getProperties() Returns array of PTEM_CONFIG:PTEMVariableProperty; | |
View user_data.ps1
# Escape any variables that are not passed by Terraform ($$) | |
$hostname = "${hostname}" | |
# Set NODENAME Env Var | |
[Environment]::SetEnvironmentVariable("NODENAME", $hostname) | |
[Environment]::SetEnvironmentVariable("NODENAME", $hostname, [System.EnvironmentVariableTarget]::Machine) | |
# Add hosts Entry | |
# This is needed so the pt_pia status checking works | |
# The cloned instance does not update hosts, so we do it ourselves |
View disable_prcs_pn.sql
-- Remove PRCS Request Submitted notifications | |
update sysadm.PSPTPNCOLLEVTS set event_name = ' ' where PTPNCOLLNAME = 'PRCSPTPNCOLLECTION'; | |
commit; | |
-- Validation: Collection PRCSPTPNCOLLECTION should have no event_name set | |
select * from sysadm.PSPTPNCOLLEVTS where PTPNCOLLNAME = 'PRCSPTPNCOLLECTION'; |
View .bashrc
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# User specific aliases and functions | |
PATH=$PATH:/opt/puppetlabs/puppet/bin; export PATH | |
if tput setaf 1 &> /dev/null; then |
View fixdpkbug.pp
$dpk_location = hiera('dpk_location') | |
case $::osfamily { | |
'windows': { | |
exec { 'fix-dpk-bug': | |
command => "(gc ${dpk_location}/puppet/production/modules/pt_config/lib/puppet/provider/psae.rb) | %{ \$_ -replace \"ae_program_name=`\"PTEM_CONFIG`\"\", \"ae_program_name=resource[:program_id]\" } | set-content ${dpk_location}/puppet/production/modules/pt_config/lib/puppet/provider/psae.rb", | |
provider => powershell, | |
} | |
} | |
'RedHat', 'linux': { |
View loadcache.pp
$ps_home_dir = hiera('ps_home_location') | |
$oracle_home_location = hiera('oracle_server_location') | |
$tns_dir = hiera('tns_dir') | |
case $::osfamily { | |
'windows': { | |
$gem_home = 'c:/program files/puppet labs/puppet/bin' | |
exec { 'install-psadmin_plus': | |
command => "${gem_home}/gem install psadmin_plus", | |
provider => 'powershell' |
View shell_template.sh
#!/usr/bin/env bash | |
# shellcheck disable=2059,2154,2034,2155,2046,2086 | |
#=============================================================================== | |
# vim: softtabstop=2 shiftwidth=2 expandtab fenc=utf-8 spelllang=en ft=sh | |
#=============================================================================== | |
# | |
# FILE: shell_template.sh | |
# | |
# USAGE: ./shell_template.sh | |
# |
View slack_history.py
from slacker import Slacker | |
import json | |
import argparse | |
import os | |
import shutil | |
import copy | |
from datetime import datetime | |
# This script finds all channels, private channels and direct messages | |
# that your user participates in, downloads the complete history for |
View gist:3ea51d8058df0597fdbd5ebc5ee19e63
<? | |
///////////////////// | |
// slack2html | |
// by @levelsio | |
///////////////////// | |
// | |
///////////////////// | |
// WHAT DOES THIS DO? | |
///////////////////// | |
// |
NewerOlder