12 lines
246 B
Bash
Executable File
12 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Script to stop backend and frontend services using systemd
|
|
|
|
echo "Stopping CRM backend service..."
|
|
sudo systemctl stop crm-backend
|
|
|
|
echo "Stopping CRM frontend service..."
|
|
sudo systemctl stop crm-frontend
|
|
|
|
echo "Services stopped."
|