mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-06-02 17:00:10 +00:00
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: szaimen <42591237+szaimen@users.noreply.github.com>
11 lines
341 B
Bash
11 lines
341 B
Bash
# SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
#!/bin/bash
|
|
|
|
# Unfortunately, no curl and no nc is installed in the container
|
|
# and packages can also not be added as the package list is broken.
|
|
# So always exiting 0 for now.
|
|
# nc http://127.0.0.1:9980 || exit 1
|
|
exit 0
|