removed gh actions, readme wip, logging

This commit is contained in:
2025-03-30 14:47:13 +00:00
parent e3e153cbd7
commit ffa4f46e1c
4 changed files with 7 additions and 99 deletions

View File

@@ -36,6 +36,8 @@ class ProvisionServer implements ShouldQueue, ShouldBeEncrypted
// Download the provision script and execute it
// The script will run in the background
$ssh->execute("cd ~ && wget --quiet --output-document=provision.sh \"{$provisionScriptUrl}\" && chmod +x provision.sh && ./provision.sh &");
logger('executing script on server');
logger("cd ~ && wget --quiet --output-document=provision.sh \"{$provisionScriptUrl}\" && chmod +x provision.sh && ./provision.sh &");
$this->server->update([
'status' => ServerStatus::PROVISIONING,