updated the startup script because it was outdated and not what I was using
This commit is contained in:
parent
b196675924
commit
973a18ebdf
|
@ -1,3 +1,19 @@
|
|||
#!/usr/bin/env sh
|
||||
#!/bin/tcsh
|
||||
#p5env setup
|
||||
if ! $?PATH setenv PATH '';
|
||||
if "${PATH}" != '' setenv PATH "/usr/home/sites/perl5/bin:${PATH}";
|
||||
if "${PATH}" == '' setenv PATH "/usr/home/sites/perl5/bin";
|
||||
if ! $?PERL5LIB setenv PERL5LIB '';
|
||||
if "${PERL5LIB}" != '' setenv PERL5LIB "/usr/home/sites/perl5/lib/perl5:${PERL5LIB}";
|
||||
if "${PERL5LIB}" == '' setenv PERL5LIB "/usr/home/sites/perl5/lib/perl5";
|
||||
if ! $?PERL_LOCAL_LIB_ROOT setenv PERL_LOCAL_LIB_ROOT '';
|
||||
if "${PERL_LOCAL_LIB_ROOT}" != '' setenv PERL_LOCAL_LIB_ROOT "/usr/home/sites/perl5:${PERL_LOCAL_LIB_ROOT}";
|
||||
if "${PERL_LOCAL_LIB_ROOT}" == '' setenv PERL_LOCAL_LIB_ROOT "/usr/home/sites/perl5";
|
||||
if ! $?PERL_MB_OPT setenv PERL_MB_OPT '';
|
||||
setenv PERL_MB_OPT "--install_base "\""/usr/home/sites/perl5"\""";
|
||||
if ! $?PERL_MM_OPT setenv PERL_MM_OPT '';
|
||||
setenv PERL_MM_OPT "INSTALL_BASE=/usr/home/sites/perl5";
|
||||
|
||||
pkill -F /home/sites/blogalba.pid 2>/dev/null
|
||||
BLOGALBA_DIR="/home/sites/blogalba/" plackup -s Starman -D -p 42069 /home/sites/blogalba/blogalba --pid /home/sites/blogalba.pid
|
||||
setenv BLOGALBA_DIR "/home/sites/blogalba/"
|
||||
plackup -s Starman -D -p 42069 /home/sites/blogalba/blogalba --pid /home/sites/blogalba.pid --workers 1
|
||||
|
|
Loading…
Reference in New Issue