On a fresh Linux PI installation
sudo sysctl -w vm.max_map_count=262144
<? | |
///////////////////// | |
// slack2html | |
// by @levelsio | |
///////////////////// | |
// | |
///////////////////// | |
// WHAT DOES THIS DO? | |
///////////////////// | |
// |
PS1=$'\\[\\033]0;\\W\\007\\]\\[\E[1m\\]\\n\\[\E[38;5;166m\\]\\u\\[\E[97m\\] at \\[\E[38;5;136m\\]\\h\\[\E[97m\\] in \\[\E[38;5;64m\\]\\w\\n\\[\E[97m\\]$ \\[\E(B\E[m\\]' | |
PS2=$'\\[\E[38;5;136m\\]\206\222 \\[\E(B\E[m\\]' | |
PS4='+ ' |
#!/bin/bash | |
#A silly script to test psft.sh | |
#(c) David Kurtz 2017 | |
if [ "$PSPRCSLOGDIR" ] ; then | |
cd $PSPRCSLOGDIR | |
fi | |
( | |
while [ $# -gt 0 ] |
#!/bin/bash | |
# (c) David Kurtz 2007 | |
# Script: psft.sh | |
# | |
# Syntax: psft.sh DBNAME ACCESSID ACCESSPSWD PRCSINSTANCE | |
# where | |
# DBNAME is the name of the PeopleSoft datbase with a corresponding TNS entry | |
# ACCESSID is the schema containing the PeopleSoft database | |
# ACCESSPSWD is the password to ACCESSID | |
# PRCSINSTANCE is the process instance number supplied by PeopleSoft |
<? | |
///////////////////// | |
// slack2html | |
// by @levelsio | |
///////////////////// | |
// | |
///////////////////// | |
// WHAT DOES THIS DO? | |
///////////////////// | |
// |
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 |
#!/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 | |
# |
$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' |
$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': { |