git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/.perlcriticrc
blob: 9d8fe7660cc14d83d54859640314f542802de1d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# vim:syntax=dosini
severity = 5
#verbose = 11
#verbose = %f: [%p] %m at line %l, column %c.\n%d\n
verbose = %f: [%p] %m at line %l, column %c.\n
theme = core

[TestingAndDebugging::RequireUseWarnings]
severity = 5

[Modules::ProhibitEvilModules]
modules_file = .forbidden_modules
ral.String.Other */ .highlight .sr { color: #009999 } /* Literal.String.Regex */ .highlight .s1 { color: #aa5500 } /* Literal.String.Single */ .highlight .ss { color: #0000aa } /* Literal.String.Symbol */ .highlight .bp { color: #00aaaa } /* Name.Builtin.Pseudo */ .highlight .fm { color: #00aa00 } /* Name.Function.Magic */ .highlight .vc { color: #aa0000 } /* Name.Variable.Class */ .highlight .vg { color: #aa0000 } /* Name.Variable.Global */ .highlight .vi { color: #aa0000 } /* Name.Variable.Instance */ .highlight .vm { color: #aa0000 } /* Name.Variable.Magic */ .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
#!/usr/bin/env bash

if [ -z "$SSHENVFILE" ];then
	printf "SSHENVFILE not set, no target for SSH environment variables.\\n" >&2
	exit 1
fi

VERB=1
KILLIT=0
while getopts ":qf" SHOPT;do
	case "$SHOPT" in
		q) VERB=0;;
		f) KILLIT=1;;
		*) printf "WAT\n" >&2;exit 127;;
	esac
done
shift "$(( OPTIND -1 ))"

[ "$VERB" -eq 1 ]&&printf "[....] Starting SSH agent.\\033[s"
ROEDGROED="$(pgrep -U "$(whoami)" ssh-agent|grep -v grep|awk '{print $1}')"

if [ -n "$ROEDGROED" ];then
	if [ "$KILLIT" -eq 1 ];then
		for i in $(echo "$ROEDGROED");do kill "$i" >/dev/null 2>&1||break;done
		case "$?" in
			0);;
			*)
				[ "$VERB" -eq 1 ]&&printf "\\033[666D[\\033[31mFAIL\\033[0m]\\033[u\\033[K\\n"
				exit 2
			;;
		esac
	else
		[ "$VERB" -eq 1 ]&&printf "\\033[666D[\\033[30;1mSKIP\\033[0m]\\033[u\\033[K (running, PID: %s)\\n" "$ROEDGROED"
		exit 0
	fi
fi
ssh-agent >"$SSHENVFILE" 2>&1&&chmod 0600 "$SSHENVFILE" >/dev/null 2>&1
case "$?" in
	0)
		sed -i 's/^echo[^\;]*\;//g' "$SSHENVFILE" >/dev/null 2>&1
		[ "$VERB" -eq 1 ]&&printf "\\033[666D[\\033[32m OK \\033[0m]\\033[u\\033[K\\n"
		exit 0
	;;
	*)
		[ "$VERB" -eq 1 ]&&printf "\\033[666D[\\033[31mFAIL\\033[0m]\\033[u\\033[K\\n"
		exit 1
	;;
esac