# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
# If adding new functions to this file, note that you can add help text to the function
# by defining a variable with name _<function>_help containing the help text
export PAGURE_CONFIG=~/pagure.cfg
pstart (){
systemctl --user start pagure.service pagure-docs.service pagure_ci.service\
pagure_ev.service pagure_webhook.service pagure_worker.service
echo 'The application is running on http://localhost:5000/'
}
pstop (){
systemctl --user stop pagure.service pagure-docs.service pagure_ci.service\
pagure_ev.service pagure_webhook.service pagure_worker.service
}
prestart (){
systemctl --user restart pagure.service pagure-docs.service pagure_ci.service\
pagure_ev.service pagure_webhook.service pagure_worker.service
echo 'The application is running on http://localhost:5000/'
}
pstatus (){
systemctl --user status pagure.service pagure-docs.service pagure_ci.service\
pagure_ev.service pagure_webhook.service pagure_worker.service
}