From 59885ec0af41c59415ed59ad91f3f1ab46117ea3 Mon Sep 17 00:00:00 2001 From: ulmentflam Date: Fri, 14 Jun 2024 11:55:25 -0400 Subject: [PATCH] Ollama by default installs and creates the systemd service, so removing the mounting of the systemd service --- install/ollama-install.sh | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/install/ollama-install.sh b/install/ollama-install.sh index 67129cf0..82dd9106 100644 --- a/install/ollama-install.sh +++ b/install/ollama-install.sh @@ -17,30 +17,12 @@ msg_info "Installing Dependencies" $STD apt-get install -y curl $STD apt-get install -y sudo $STD apt-get install -y mc -$STD apt-get install -y build-essential msg_ok "Installed Dependencies" -msg_info "Installing Ollama" +msg_info "Installing Ollama & Creating Service" $STD curl -fsSL https://ollama.com/install.sh | sh - -msg_ok "Installed Ollama" - -msg_info "Creating Service" -service_path="/etc/systemd/system/ollama.service" -echo "[Unit] -Description=Ollama Service -After=network-online.target - -[Service] -Type=simple -ExecStart=/usr/bin/ollama serve -Restart=always -RestartSec=3 - -[Install] -WantedBy=multi-user.target" >$service_path systemctl enable -q --now ollama.service -msg_ok "Created Service" +msg_ok "Installed Ollama & Created Service" motd_ssh customize