-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
run command async without foreground #284
Comments
Currently, there is no way to disable the progress bar at the moment. Do i understand it correctly, that you just want to disable the progress bar, but the command should still wait until the snapshot is created? Specifying the poll-interval should only be used when you run into the rate limit. |
Hi, I've made this https://github.com/omerh/hetzner-hcloud-snapshots and I don't need to wait till its done |
But then you will never know if the snapshot is ready (useable) or not? |
Im counting on Hetzner to succeed in snapshot (like I do in AWS and DO) |
For me with hcloud cli it works pretty well redirecting stdout to /dev/null - this effectively removes the progress-bar. Stderr is untouched as I normally want to see the errors (could be misconfiguration / changes as well), when unattended all output is also turned into a notification, so I only want the errors. Can imagine that to prevent the output of the progress bar and run in background in your script could do:
Is this what you're looking for? |
Yes. But builtin the command and not directing to |
I would still recommend directing it to |
Hi,
Just trying out the cli tool, I was wondering if there is an option to run it without
--poll-interval
?I want to run a snapshot script and I don't need to see the progress of the snapshot creation.
I tough of
--poll-interval -1
or somethingThe text was updated successfully, but these errors were encountered: