6c9ed6863517de5b985d5a53e208b99d7adb6718
[clearscm.git] / rc / client_scripts / cPanel
1 #!/bin/bash
2 ################################################################################
3 #
4 # File:         $RCSfile: cPanel,v $
5 # Revision:     $Revision: 1.0 $
6 # Description:  Client specific start up for cPanel
7 # Author:       Andrew@DeFaria.com
8 # Created:      Fri Nov  8 13:50:01 PST 2013
9 # Modified:     $Date: $
10 # Language:     bash
11 #
12 # (c) Copyright 2013, ClearSCM, Inc., all rights reserved.
13 #
14 ################################################################################
15 prepend_to_path /usr/local/cpanel/build-tools
16 prepend_to_path /usr/local/cpanel/3rdparty/lib/path-bin
17 prepend_to_path /usr/local/cpanel/3rdparty/bin
18 prepend_to_path /usr/local/cpanel/bin
19 append_to_path /usr/local/sbin
20 append_to_path /usr/local/bin
21 append_to_path /usr/sbin
22 append_to_path /opt/cpanel/composer/bin
23 append_to_path /opt/cplint/bin
24 append_to_path /root/bin
25
26 # Useful aliases
27 alias makesb4='pushd $ulc; make -j4 sandbox; popd'
28 # Find code!
29 if [ -d ~/.vscode-server ]; then
30   codePath=$(dirname $(find ~/.vscode-server/bin -name code))
31   if [ -n "$codePath" ]; then
32     append_to_path $codePath
33   else
34     echo "Warning - unable to find code"
35   fi
36 fi
37
38 # Intended to be used for root
39 WIZARD="CPanel"
40
41 export CDPATH=/usr/local
42 export ulc=/usr/local/cpanel
43 export ulp=/usr/local/cp-monitoring-cpanel-plugin
44 export ulw=/usr/local/cp-monitoring-whm-plugin
45 export ulb=/usr/local/cp-banners-plugin
46 export CPANEL_TEAM='release'
47
48 # EA Tools
49 export EATOOLS_BUILD_DIR=~/git/ea-tools/SOURCES/
50 export EATOOLS_BIN_DIR=~/git/ea-tools/SOURCES/
51
52 #alias ulc="cd /usr/local/cpanel"
53 alias perl="$ulc/3rdparty/bin/perl"
54 alias stencilwatch='npx stencil test --spec --watchAll'
55 alias stencilwatche2e='npx stencil test --spec --e2e --watchAll'
56
57 # Unset PERLTIDY and PERLCRITIC as those variable override looking for
58 # ~/.perltidyrc and ~/.perlcriticrc.
59 unset PERLTIDY
60 unset PERLCRITIC
61
62 # This is a closer call to how cplint is called by merge_request
63 alias cplintm="cplint --branched-from=upstream/$(cat /usr/local/cpanel/.branched_from)"
64
65 # This is the completer function for ulc. This completes any path that comes
66 # after the ulc as a path completion relative to $ulc
67 function _ulc {
68   local cur prev
69
70   COMPREPLY=()
71   cur="${COMP_WORDS[COMP_CWORD]}"
72   prev="${COMP_WORDS[COMP_CWORD-1]}"
73
74   # to be continued
75 } # _ulc
76
77 function ulc {
78   path=$1
79
80   if [ -s "$1" ]; then
81     cd $ulc/$path
82   else
83     cd $ulc
84   fi
85 } # ulc
86
87 function ulp {
88   path=$1
89
90   if [ -s "$1" ]; then
91     cd $ulp/$path
92   else
93     cd $ulp
94   fi
95 } # ulp
96
97
98 function ulw {
99   path=$1
100
101   if [ -s "$1" ]; then
102     cd $ulw/$path
103   else
104     cd $ulw
105   fi
106 } # ulw
107
108 function ulb {
109   path=$1
110
111   if [ -s "$1" ]; then
112     cd $ulb/$path
113   else
114     cd $ulb
115   fi
116 } # ulb
117