From 47b88ae300d664d8ab6e96a82ad68752abbebf6a Mon Sep 17 00:00:00 2001 From: bach Date: Thu, 21 Dec 2023 09:53:56 +0100 Subject: [PATCH] lemp and gitbarerepos --- bin/gitbarrerepos.sh | 6 +++--- bin/lemp.sh | 6 ++---- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/bin/gitbarrerepos.sh b/bin/gitbarrerepos.sh index fefaef2..73bfcb3 100755 --- a/bin/gitbarrerepos.sh +++ b/bin/gitbarrerepos.sh @@ -111,11 +111,11 @@ if [ "$vh" = "yes" ]; then chmod +x post-receive # pre-receive # setup git repo on site folder - chown -R "$user":"$user" /home/"$user"/www/"$_domain"/public_html cd /home/"$user"/www/"$_domain"/public_html - git init + su -c "git init" $user # link to the bare repo - git remote add origin /home/"$user"/git-repositories/"$_domain".git + su -c "git remote add origin /home/$user/git-repositories/$_domain.git" $user + chown -R "$user":"$user" /home/"$user"/www/"$_domain" cd "$_cwd" diff --git a/bin/lemp.sh b/bin/lemp.sh index d3001e1..4b12483 100755 --- a/bin/lemp.sh +++ b/bin/lemp.sh @@ -225,11 +225,9 @@ echo -e '\033[35m / /_/ / / / /_/ (__ ) / / / /_____/_/ \__,_/____/_/ /_/ \033[0m' -echo -e "\033[35;1mInstalling Drush and DrupalConsole\033[0m" +echo -e "\033[35;1mInstalling Drush\033[0m" sleep 3 -curl https://drupalconsole.com/installer -L -o /usr/local/bin/drupal -chmod +x /usr/local/bin/drupal # curl https://github.com/drush-ops/drush-launcher/releases/download/0.6.0/drush.phar -L -o /usr/local/bin/drush wget -O /usr/local/bin/drush https://github.com/drush-ops/drush-launcher/releases/latest/download/drush.phar chmod +x /usr/local/bin/drush -echo -e "\033[92;1mDrush and DrupalConsoleinstalled\033[Om" +echo -e "\033[92;1mDrush\033[Om"