- Replace $EUID with $(id -u) for root checks across all bin/*.sh and install.sh: dash (Debian's /bin/sh) never sets $EUID, so the check was silently broken everywhere. - lemp.sh: make apt-get upgrade non-interactive (--yes), align the Redis PHP module and php-fpm restart with $PHP_VERSION instead of a hardcoded 8.1, and template the nginx PHP-FPM socket path via a PHP_FPM_SOCK placeholder substituted at install time. - nginx-phpmyadmin.conf: fix docroot to match the actual phpMyAdmin symlink location created by lemp.sh. - mysql-db.sh: inline the root check instead of sourcing the nonexistent bin/checkroot.sh. - webhook.sh: fix chowm typo (chown). - urbackup.sh: copy the systemd unit from assets/ instead of a relative path to a file that doesn't exist in the repo. - _addUserSite.sh: fix invalid `$var=value` assignment and an empty if-block that was a POSIX sh syntax error. Also carries over pending fixes to deploy-drupal.sh (drush now invoked via vendor/bin/drush) and gitbarrerepos.sh (comment cleanup). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
57 lines
1.4 KiB
Bash
Executable File
57 lines
1.4 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# TODO check if root
|
|
|
|
echo -e '\033[35m
|
|
__ __ __
|
|
/ /______ ____ _____/ /______/ /
|
|
/ //_/ __ \/ __ \/ ___/ //_/ __ /
|
|
/ ,< / / / / /_/ / /__/ ,< / /_/ /
|
|
/_/|_/_/ /_/\____/\___/_/|_|\__,_/
|
|
\033[0m'
|
|
echo -e "\033[35;1mInstalling knockd to control ssh port opening\033[0m"
|
|
|
|
if [ "$(id -u)" -ne 0 ]; then
|
|
echo "Please run as root"
|
|
exit
|
|
fi
|
|
|
|
# get the current position
|
|
_cwd="$(pwd)"
|
|
# check for assets forlder
|
|
_assets="$_cwd/assets"
|
|
if [ ! -d "$_assets" ]; then
|
|
_assets="$_cwd/../assets"
|
|
if [ ! -d "$_assets" ]; then
|
|
echo "!! can't find assets directory !!"
|
|
exit
|
|
fi
|
|
fi
|
|
|
|
sleep 2
|
|
apt-get --yes install knockd
|
|
|
|
mv /etc/knockd.conf /etc/knockd.conf.ori
|
|
cp "$_assets"/knockd.conf /etc/knockd.conf
|
|
echo -n "define a sequence number for opening ssh (as 7000,8000,9000) : "
|
|
read sq
|
|
sed -i "s/7000,8000,9000/$sq/g" /etc/knockd.conf
|
|
sed -i 's/START_KNOCKD=0/START_KNOCKD=1/g' /etc/default/knockd
|
|
# /etc/init.d/knockd start
|
|
# patch https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=868015
|
|
# TODO this line is buggy
|
|
echo "
|
|
|
|
# patch https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=868015
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
Alias=knockd.service" >> /lib/systemd/system/knockd.service
|
|
|
|
systemctl enable knockd
|
|
systemctl start knockd
|
|
|
|
echo -e "\033[92;1mknockd installed and configured\033[Om"
|
|
echo -e "\033[92;1mplease note this sequence for future ssh knocking\033[Om"
|
|
echo "$sq"
|
|
sleep 3
|