quicklisp location
This commit is contained in:
parent
82d57fa7fc
commit
37b2ac894c
|
@ -258,9 +258,13 @@ function remove_turtl {
|
||||||
systemctl stop turtl
|
systemctl stop turtl
|
||||||
systemctl disable turtl
|
systemctl disable turtl
|
||||||
rm /etc/systemd/system/turtl.service
|
rm /etc/systemd/system/turtl.service
|
||||||
|
apt-get -y remove rethinkdb
|
||||||
remove_app turtl
|
remove_app turtl
|
||||||
remove_completion_param install_turtl
|
remove_completion_param install_turtl
|
||||||
sed -i '/turtl/d' $COMPLETION_FILE
|
sed -i '/turtl/d' $COMPLETION_FILE
|
||||||
|
rm $INSTALL_DIR/quicklisp.lisp
|
||||||
|
rm -rf /etc/rethinkdb
|
||||||
|
rm -rf /var/lib/rethinkdb
|
||||||
rm -rf /root/quicklisp
|
rm -rf /root/quicklisp
|
||||||
rm -rf /opt/ccl
|
rm -rf /opt/ccl
|
||||||
rm -rf /opt/api
|
rm -rf /opt/api
|
||||||
|
@ -865,12 +869,12 @@ __ENDCONFIG__
|
||||||
wget https://beta.quicklisp.org/quicklisp.lisp
|
wget https://beta.quicklisp.org/quicklisp.lisp
|
||||||
if [[ "$check_architecture" != *"arm"* ]]; then
|
if [[ "$check_architecture" != *"arm"* ]]; then
|
||||||
if [[ "$check_architecture" == *"64"* ]]; then
|
if [[ "$check_architecture" == *"64"* ]]; then
|
||||||
cat $INSTALL_DIR/quicklisp_install | /opt/ccl/lx86cl64 --load /quicklisp.lisp
|
cat $INSTALL_DIR/quicklisp_install | /opt/ccl/lx86cl64 --load $INSTALL_DIR/quicklisp.lisp
|
||||||
else
|
else
|
||||||
cat $INSTALL_DIR/quicklisp_install | /opt/ccl/lx86cl --load /quicklisp.lisp
|
cat $INSTALL_DIR/quicklisp_install | /opt/ccl/lx86cl --load $INSTALL_DIR/quicklisp.lisp
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
cat $INSTALL_DIR/quicklisp_install | /opt/ccl/larmcl --load /quicklisp.lisp
|
cat $INSTALL_DIR/quicklisp_install | /opt/ccl/larmcl --load $INSTALL_DIR/quicklisp.lisp
|
||||||
fi
|
fi
|
||||||
rm $INSTALL_DIR/quicklisp_install
|
rm $INSTALL_DIR/quicklisp_install
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue