#!/bin/bash

echo "Shutting down Incredible PBX..."
fwconsole stop
echo "Shutting down MySQL..."
systemctl stop mysqld
echo "Shutting down Apache..."
systemctl stop apache2
echo "Halting now..."
shutdown -h now

