This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# checkserialdns.sh: checks if your DNS master and slaves are synchronised | |
# Copyright (C) 2014 Benedikt Heine <[email protected]> | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# siteadd.sh script is used to add Unix-Accounts with surrounding setup for | |
# php-fpm, mysql and nginx to host a websie with a dedicated user-account | |
die(){ | |
echo -e "\033[31m${@}\033[0m" >&2; | |
exit 1; | |
} |
NewerOlder