diff --git a/blueprint.sh b/blueprint.sh index 5f90410..ca0f307 100644 --- a/blueprint.sh +++ b/blueprint.sh @@ -4,14 +4,14 @@ err="\033[0;31m ERROR \033[0m"; warn="\033[0;33m WARN \033[0m"; info="\033[0;34m\033[1;94m INFO \033[0;34m"; task="\033[0;93m TASK \033[0m"; -log="\e[1;37;40m LOG \e[2;37;40m"; +log="\e[2;37;40m"; cd /var/www/pterodactyl; if [[ "$@" == *"-php"* ]]; then exit 1; fi; -if [[ $1 == "-c" ]]; then +if [[ $2 == "-c" ]]; then for x in {0..8}; do for i in {30..37}; do for a in {40..47}; do echo -ne "\e[$x;$i;$a""m\\\e[$x;$i;$a""m\e[0;37;40m "; done; echo; done; done; echo ""; exit 1; fi; @@ -39,39 +39,34 @@ if [[ $1 != "-bash" ]]; then echo -e $info"This command only works if you have yet to install Blueprint. You can run \"\033[1;94mblueprint\033[0m\033[0;34m\" instead.\033[0m"; dbRemove "blueprint.setupFinished"; else - echo -e $log"/var/www/pterodactyl/.blueprint/db.md\033[0m"; - touch .blueprint/db.md > /dev/null; - echo -e "# Internal database for the bash side of Blueprint.\n+ db.addnewrecord;" > .blueprint/db.md; + echo -e $log"cp -R blueprint .blueprint\033[0m"; + cp -R blueprint .blueprint > /dev/null + echo -e $log"rm -R blueprint/\033[0m"; + rm -R blueprint/ > /dev/null; - echo -e $task"/var/www/pterodactyl/.blueprint/defaults\033[0m"; - mkdir -p .blueprint/defaults > /dev/null; - - - echo -e $task"/var/www/pterodactyl/.blueprint/defaults/extensions\033[0m"; - mkdir -p .blueprint/defaults/extensions > /dev/null; - - - echo -e $task"/var/www/pterodactyl/.blueprint/defaults/extensions/admin.default\033[0m"; - touch .blueprint/defaults/extensions/admin.default > /dev/null; - echo -e "@extends('layouts.admin')\n\n@section('title')\n ␀title␀\n@endsection\n\n@section('content-header')\n \"logo\"\n

␀name␀␀version␀

\n
    \n
  1. Admin
  2. \n
  3. Extensions
  4. \n
  5. ␀breadcrumb␀
  6. \n
\n@endsection\n\n@section('content')\n ␀content␀\n@endsection" > .blueprint/defaults/extensions/admin.default; - - - echo -e $task"/var/www/pterodactyl/public/themes/pterodactyl/css/pterodactyl.css\033[0m"; + echo -e $log"/var/www/pterodactyl/public/themes/pterodactyl/css/pterodactyl.css\033[0m"; sed -i "s!@import 'checkbox.css';!@import 'checkbox.css';\n@import url(/assets/extensions/blueprint/blueprint.style.css);!g" /var/www/pterodactyl/public/themes/pterodactyl/css/pterodactyl.css; - echo -e $task"php artisan view:clear\033[0m"; + echo -e $log"php artisan view:clear\033[0m"; php artisan view:clear > /dev/null; - echo -e $task"php artisan config:clear\033[0m"; + echo -e $log"php artisan config:clear\033[0m"; php artisan config:clear > /dev/null; - echo -e $task"chown -R www-data:www-data /var/www/pterodactyl/*\033[0m"; + echo -e $log"chown -R www-data:www-data /var/www/pterodactyl/*\033[0m"; chown -R www-data:www-data /var/www/pterodactyl/* > /dev/null; + echo -e $log"chown -R www-data:www-data /var/www/pterodactyl/.*\033[0m"; + chown -R www-data:www-data /var/www/pterodactyl/.* > /dev/null; + dbAdd "blueprint.setupFinished"; fi; +fi; + +if [[ $2 == "help" ]]; then + echo -e ""; fi; \ No newline at end of file