-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
occ: Add command app:rollout #29861
Closed
Closed
occ: Add command app:rollout #29861
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Zocker1999NET
force-pushed
the
add-occ-app-rollout
branch
from
November 23, 2021 14:40
fbb19ba
to
7ecd088
Compare
sergeng
reviewed
Feb 4, 2022
Merged
Merged
Zocker1999NET
force-pushed
the
add-occ-app-rollout
branch
from
July 24, 2022 16:32
7ecd088
to
a53a691
Compare
Signed-off-by: Felix Stupp <[email protected]>
Zocker1999NET
force-pushed
the
add-occ-app-rollout
branch
from
July 24, 2022 16:42
a53a691
to
051df5b
Compare
Merged
Merged
Merged
Merged
Merged
Merged
As there is no feedback since a while I will close this ticket. Thanks for the interest in Nextcloud and the effort put into this! 🙇 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
TODO:
I still need to test this manually. If someone is faster than me, please do so, otherwise I will hopefully test this myself during the next week.
I did not found any tests for app commands so I'm interested in if this new command requires an test case or not. If I know where & how, I can add a test case for it.
This command allows something similar as requested in #22823.
It allows to enable/disable multiple apps in one command execution. Not installed apps will be downloaded & installed. This should be a useful command for multi server admins which use tools like Ansible to manage their Nextcloud instances.
It uses a similar syntax as aptitude: Any app name can either have a suffix
+
or-
which mean:+
: install & enable given app-
: disable given app if enabled, otherwise ignoree.g.:
occ app:rollout spread+ twofactor- notes
(order not important) will:spread
andnotes
twofactor
if installedSigned-off-by: Felix Stupp [email protected]