-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.bash_profile
More file actions
23 lines (18 loc) · 821 Bytes
/
Copy path.bash_profile
File metadata and controls
23 lines (18 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# .bash_profile for deployment on LSC DataGrid clusters.
# Run at the start of a login shell.
. ~/.bashrc
# Warn the user to go through GitLab for normal deployment changes.
whiptail --yesno "The low-latency pipeline is continuously deployed through \
GitLab. Please use the GitLab interface to make any software updates or \
configuration changes or to start, stop, or restart the pipeline. For \
details, refer to:
https://gwcelery.readthedocs.io/en/latest/deployment.html
Interactive terminal sessions are for EMERGENCY USE ONLY. \
Are you sure that you want to proceed?" 15 70 --defaultno \
--title 'FOR EMERGENCY USE ONLY' \
--backtitle "${USER}@$(hostname --fqdn)" || logout
# If Poetry is installed, then enable poetry shell completion.
if type -P poetry &> /dev/null
then
. <(poetry completions bash)
fi