#!/bin/bash

if command -v certbot >/dev/null
then
 certbot --nginx -d control.lastcharter24.ir
else
 echo "CERTBOT NOT INSTALLED"
fi
