#!/bin/bash

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

