References:
- http://blog.bekijkhet.com/2012/05/install-teamcity-continuous-integration.html
- https://gist.github.com/ianbattersby/4641450
sudo apt-get update
#!/usr/bin/env bash | |
# Usage: {script} [ OPTIONS ] TARGET BUILD | |
# | |
# TARGET Default target is "/usr/bin". | |
# BUILD If not defined tries to get the build into the Sublime Text 3 website. | |
# | |
# OPTIONS | |
# | |
# -h, --help Displays this help message. | |
# |
#!/bin/bash | |
NAME="fluentd" #Name of service | |
PID_FILE=/var/run/fluentd.pid #PID file for fluentd service | |
CONF_FILE=/etc/fluent/fluent.conf #Config file for fluentd service | |
LOG_FILE=/var/log/fluent/fluent.log #Log file for fluentd process | |
PSNAME="fluentd" #Process to look for in ps output | |
RVM_PATH=home/ubuntu/.rvm/scripts/rvm #RVM path to source because RVM is awesome | |
RUBY_VER="default" #RVM default ruby version, you can set to specific Ruby verion |
namespace :nvm do | |
desc "Load nvm and the node environment variables" | |
def file_or_symlink_exists?(path_to_file) | |
File.exist?(path_to_file) || File.symlink?(path_to_file) | |
end | |
desc "Load node if nvm is already installed but not on the path" | |
task :load_node do | |
sh "/bin/bash -c '. ~/.nvm/nvm.sh'" |
echo '' | openssl s_client -connect www.okta.com:443 |
#! /bin/sh | |
# /etc/init.d/teamcity | |
# Common parameters, do not edit: | |
PATH=/sbin:/usr/sbin:/bin:/usr/bin | |
DESC="TeamCity Agent" | |
NAME=teamcity-agent | |
SCRIPTNAME=/etc/init.d/$NAME | |
# | |
# User specific parameters: | |
USERNAME=ubuntu |
References:
sudo apt-get update
cd /Library/Preferences
sudo rm com.sophos.sav.plist
--or--
sudo rm com.sophos.*
cd /Library/Application\ Support/Sophos/cloud/Installer.app/Contents/MacOS/tools/
sudo ./InstallationDeployer --force_remove
Sometimes the Sophos virus can exist in the /Library/Application.../Sophos/saas folder
# 1) Create your private key (any password will do, we remove it below) | |
$ cd ~/.ssh | |
$ openssl genrsa -des3 -out server.orig.key 2048 | |
# 2) Remove the password | |
$ openssl rsa -in server.orig.key -out server.key |
#!/bin/sh | |
# | |
# git-info - shows information about a Git repository a la `svn info' | |
# | |
# How to use: | |
# $ git info | |
# $ git info ~/src/somewhere/somefile | |
# $ git info some/relative/file_or_directory | |
# $ git info ~/repos/something.git | |
# |
#!/bin/bash | |
# This script gracefully stops resque workers by issuing the USR2 | |
# signal to the resque-pool manager and then waits for the workers | |
# to be paused before exiting. Resque-pool master process relays | |
# the USR2 signal to the children. | |
# | |
# For reference: | |
# (1) https://github.com/nevans/resque-pool#signals | |
# (2) https://github.com/resque/resque/blob/master/lib/resque/worker.rb#L376-L378 |