mirror of
https://github.com/buanet/ioBroker.docker.git
synced 2025-12-17 18:39:01 +02:00
Compare commits
87 Commits
v8.0.1
...
v9.0.0-bet
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0de9d77859 | ||
|
|
3674f2f594 | ||
|
|
63974a3780 | ||
|
|
89a52b8eb3 | ||
|
|
4adafbdb00 | ||
|
|
837064f86b | ||
|
|
b794e0b7d4 | ||
|
|
50f2f9c5d1 | ||
|
|
165b3595c1 | ||
|
|
e6662f78c5 | ||
|
|
7779f985d2 | ||
|
|
a0ba10a02f | ||
|
|
96f8fe6a84 | ||
|
|
57d1dd3bb0 | ||
|
|
7027d3b3b9 | ||
|
|
9ee0738a23 | ||
|
|
40d22d0540 | ||
|
|
55c3fc5951 | ||
|
|
65ee398753 | ||
|
|
0dd20773ec | ||
|
|
58f4ac9d47 | ||
|
|
2da5640f9f | ||
|
|
e228229ec3 | ||
|
|
60b2ab1b56 | ||
|
|
4c32a3fc67 | ||
|
|
82c98eb906 | ||
|
|
af51286954 | ||
|
|
71ece920f0 | ||
|
|
82a88370d6 | ||
|
|
21cf38611c | ||
|
|
bbe6c2763e | ||
|
|
c4e8b87bc1 | ||
|
|
dbae1ffffe | ||
|
|
9fc074611f | ||
|
|
9c9c5c1ffd | ||
|
|
855ed0632b | ||
|
|
eaa1ca59d0 | ||
|
|
192bbdad12 | ||
|
|
f4c972358e | ||
|
|
1553c37265 | ||
|
|
798516b051 | ||
|
|
fa19acc331 | ||
|
|
6af2d4879f | ||
|
|
700d7609cc | ||
|
|
3c6fc0b1b1 | ||
|
|
5c56939d01 | ||
|
|
99b7b22072 | ||
|
|
85c49cc3e7 | ||
|
|
aa58edd9e1 | ||
|
|
52306ee19a | ||
|
|
f44a433a7e | ||
|
|
ca00e38154 | ||
|
|
2359e5118c | ||
|
|
ae42123a2f | ||
|
|
4fe9c10771 | ||
|
|
3d83c7fa21 | ||
|
|
18654635ef | ||
|
|
f225536852 | ||
|
|
18b0f863bd | ||
|
|
ff6535a896 | ||
|
|
3543b10c90 | ||
|
|
b3870bdcb7 | ||
|
|
9f016f5363 | ||
|
|
800e95a5c2 | ||
|
|
0f3b59fe98 | ||
|
|
8f7f9656d8 | ||
|
|
7e291f98ea | ||
|
|
a46e29fac1 | ||
|
|
8294f8cf51 | ||
|
|
5c7dfb3d3c | ||
|
|
721c108742 | ||
|
|
7a455952dd | ||
|
|
a04f210190 | ||
|
|
0f59839695 | ||
|
|
4f15a4df23 | ||
|
|
686b391119 | ||
|
|
d5a6596070 | ||
|
|
8c9279b867 | ||
|
|
065d0cb4df | ||
|
|
acad72922e | ||
|
|
8fe4d775f5 | ||
|
|
e283d25710 | ||
|
|
893908f29d | ||
|
|
16e30c392d | ||
|
|
a954b51223 | ||
|
|
6a55923669 | ||
|
|
bbac132f28 |
2
.github/dependencies/.backitup-version
vendored
2
.github/dependencies/.backitup-version
vendored
@@ -1 +1 @@
|
|||||||
2.6.16
|
2.6.23
|
||||||
|
|||||||
1
.github/dependencies/.nodejs-version
vendored
Normal file
1
.github/dependencies/.nodejs-version
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
18.16.1
|
||||||
@@ -1,92 +0,0 @@
|
|||||||
# Github action to build Docker image from beta branch (tag: beta)
|
|
||||||
name: Build debian beta-node20
|
|
||||||
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types: [prereleased]
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-beta-node20-image:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Fetching latest prerelease tag
|
|
||||||
run: echo "RELEASE_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Checkout repo
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
repository: 'buanet/ioBroker.docker'
|
|
||||||
ref: ${{ env.RELEASE_TAG }}
|
|
||||||
|
|
||||||
- name: Fetching version tag and date
|
|
||||||
id: version
|
|
||||||
run: |
|
|
||||||
VERSION="$(cat .VERSION)"
|
|
||||||
MAJORVERSION="$(cat .VERSION | cut -c 1-2 | sed -r 's#^(.{0})#\1latest-#')"
|
|
||||||
DATI="$(date --rfc-3339=seconds | sed 's/ /T/')"
|
|
||||||
echo "This is the Version: $VERSION"
|
|
||||||
echo "version=$VERSION" >> $GITHUB_ENV
|
|
||||||
echo "This is the Major Version: $MAJORVERSION"
|
|
||||||
echo "majorversion=$MAJORVERSION" >> $GITHUB_ENV
|
|
||||||
echo "This is the Buildnumber/Timestamp: $DATI"
|
|
||||||
echo "dati=$DATI" >> $GITHUB_ENV
|
|
||||||
# startup script
|
|
||||||
sed -e "s/\${VERSION}/$VERSION/" -e "s/\${BUILD}/$DATI/" ./debian/scripts/iobroker_startup.sh > ./debian/scripts/iobroker_startup.tmp
|
|
||||||
mv -f ./debian/scripts/iobroker_startup.tmp ./debian/scripts/iobroker_startup.sh
|
|
||||||
# amd64
|
|
||||||
sed -e "s/\${VERSION}/$VERSION/" -e "s/\${DATI}/$DATI/" ./debian/node20/Dockerfile > ./debian/node20/Dockerfile.tmp
|
|
||||||
mv -f ./debian/node20/Dockerfile.tmp ./debian/node20/Dockerfile
|
|
||||||
|
|
||||||
- name: Set up QEMU
|
|
||||||
uses: docker/setup-qemu-action@v2.1.0
|
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
id: buildx
|
|
||||||
uses: docker/setup-buildx-action@v2.5.0
|
|
||||||
|
|
||||||
- name: Login to DockerHub
|
|
||||||
uses: docker/login-action@v2.1.0
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.DOCKER_USER }}
|
|
||||||
password: ${{ secrets.DOCKER_PASS }}
|
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
|
||||||
uses: docker/login-action@v2.1.0
|
|
||||||
with:
|
|
||||||
registry: ghcr.io
|
|
||||||
username: ${{ secrets.PACKAGES_USER }}
|
|
||||||
password: ${{ secrets.PACKAGES_PASS }}
|
|
||||||
|
|
||||||
- name: Build Docker image (node20)
|
|
||||||
uses: docker/build-push-action@v4.0.0
|
|
||||||
with:
|
|
||||||
context: ./debian
|
|
||||||
file: ./debian/node20/Dockerfile
|
|
||||||
push: true
|
|
||||||
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8
|
|
||||||
tags: |
|
|
||||||
buanet/iobroker:beta-node20,
|
|
||||||
buanet/iobroker:${{ env.version }}-node20,
|
|
||||||
ghcr.io/buanet/iobroker:beta-node20,
|
|
||||||
ghcr.io/buanet/iobroker:${{ env.version }}-node20
|
|
||||||
|
|
||||||
- name: Delete untagged images from GitHub packages
|
|
||||||
uses: actions/github-script@v6
|
|
||||||
with:
|
|
||||||
github-token: ${{ secrets.PACKAGES_PASS }}
|
|
||||||
script: |
|
|
||||||
const response = await github.request("GET /users/${{ env.OWNER }}/packages/container/${{ env.PACKAGE_NAME }}/versions",
|
|
||||||
{ per_page: ${{ env.PER_PAGE }}
|
|
||||||
});
|
|
||||||
for(version of response.data) {
|
|
||||||
if (version.metadata.container.tags.length == 0) {
|
|
||||||
console.log("delete " + version.id)
|
|
||||||
const deleteResponse = await github.request("DELETE /user/packages/container/${{ env.PACKAGE_NAME }}/versions/" + version.id, { });
|
|
||||||
console.log("status " + deleteResponse.status)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
env:
|
|
||||||
OWNER: buanet
|
|
||||||
PACKAGE_NAME: iobroker
|
|
||||||
PER_PAGE: 100
|
|
||||||
97
.github/workflows/build-debian-image-beta.yml
vendored
97
.github/workflows/build-debian-image-beta.yml
vendored
@@ -1,97 +0,0 @@
|
|||||||
# Github action to build Docker image from beta branch (tag: beta)
|
|
||||||
name: Build debian beta
|
|
||||||
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types: [prereleased]
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-beta-image:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Fetching latest prerelease tag
|
|
||||||
run: echo "RELEASE_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Checkout repo
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
repository: 'buanet/ioBroker.docker'
|
|
||||||
ref: ${{ env.RELEASE_TAG }}
|
|
||||||
|
|
||||||
- name: Fetching version tag and date
|
|
||||||
id: version
|
|
||||||
run: |
|
|
||||||
VERSION="$(cat .VERSION)"
|
|
||||||
MAJORVERSION="$(cat .VERSION | cut -c 1-2 | sed -r 's#^(.{0})#\1latest-#')"
|
|
||||||
DATI="$(date --rfc-3339=seconds | sed 's/ /T/')"
|
|
||||||
echo "This is the Version: $VERSION"
|
|
||||||
echo "version=$VERSION" >> $GITHUB_ENV
|
|
||||||
echo "This is the Major Version: $MAJORVERSION"
|
|
||||||
echo "majorversion=$MAJORVERSION" >> $GITHUB_ENV
|
|
||||||
echo "This is the Buildnumber/Timestamp: $DATI"
|
|
||||||
echo "dati=$DATI" >> $GITHUB_ENV
|
|
||||||
# startup script
|
|
||||||
sed -e "s/\${VERSION}/$VERSION/" -e "s/\${BUILD}/$DATI/" ./debian/scripts/iobroker_startup.sh > ./debian/scripts/iobroker_startup.tmp
|
|
||||||
mv -f ./debian/scripts/iobroker_startup.tmp ./debian/scripts/iobroker_startup.sh
|
|
||||||
# amd64
|
|
||||||
sed -e "s/\${VERSION}/$VERSION/" -e "s/\${DATI}/$DATI/" ./debian/node18/Dockerfile > ./debian/node18/Dockerfile.tmp
|
|
||||||
mv -f ./debian/node18/Dockerfile.tmp ./debian/node18/Dockerfile
|
|
||||||
|
|
||||||
- name: Set up QEMU
|
|
||||||
uses: docker/setup-qemu-action@v2.1.0
|
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
id: buildx
|
|
||||||
uses: docker/setup-buildx-action@v2.5.0
|
|
||||||
|
|
||||||
- name: Login to DockerHub
|
|
||||||
uses: docker/login-action@v2.1.0
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.DOCKER_USER }}
|
|
||||||
password: ${{ secrets.DOCKER_PASS }}
|
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
|
||||||
uses: docker/login-action@v2.1.0
|
|
||||||
with:
|
|
||||||
registry: ghcr.io
|
|
||||||
username: ${{ secrets.PACKAGES_USER }}
|
|
||||||
password: ${{ secrets.PACKAGES_PASS }}
|
|
||||||
|
|
||||||
- name: Build Docker image
|
|
||||||
uses: docker/build-push-action@v4.0.0
|
|
||||||
with:
|
|
||||||
context: ./debian
|
|
||||||
file: ./debian/node18/Dockerfile
|
|
||||||
push: true
|
|
||||||
platforms: |
|
|
||||||
linux/amd64
|
|
||||||
linux/arm/v7
|
|
||||||
linux/arm64/v8
|
|
||||||
tags: |
|
|
||||||
buanet/iobroker:beta,
|
|
||||||
buanet/iobroker:${{ env.version }},
|
|
||||||
ghcr.io/buanet/iobroker:beta,
|
|
||||||
ghcr.io/buanet/iobroker:${{ env.version }}
|
|
||||||
provenance: false
|
|
||||||
outputs: type=image,name=target,annotation-index.org.opencontainers.image.description=Official Docker image for ioBroker smarthome software (https://www.iobroker.net)
|
|
||||||
|
|
||||||
- name: Delete untagged images from GitHub packages
|
|
||||||
uses: actions/github-script@v6
|
|
||||||
with:
|
|
||||||
github-token: ${{ secrets.PACKAGES_PASS }}
|
|
||||||
script: |
|
|
||||||
const response = await github.request("GET /users/${{ env.OWNER }}/packages/container/${{ env.PACKAGE_NAME }}/versions",
|
|
||||||
{ per_page: ${{ env.PER_PAGE }}
|
|
||||||
});
|
|
||||||
for(version of response.data) {
|
|
||||||
if (version.metadata.container.tags.length == 0) {
|
|
||||||
console.log("delete " + version.id)
|
|
||||||
const deleteResponse = await github.request("DELETE /user/packages/container/${{ env.PACKAGE_NAME }}/versions/" + version.id, { });
|
|
||||||
console.log("status " + deleteResponse.status)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
env:
|
|
||||||
OWNER: buanet
|
|
||||||
PACKAGE_NAME: iobroker
|
|
||||||
PER_PAGE: 100
|
|
||||||
@@ -1,84 +0,0 @@
|
|||||||
# Github action to build Docker image from dev branch (tag: dev)
|
|
||||||
name: Build debian dev-node20
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-dev-node20-image:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout repo
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
repository: 'buanet/ioBroker.docker'
|
|
||||||
|
|
||||||
- name: Fetching version tag and date
|
|
||||||
id: version
|
|
||||||
run: |
|
|
||||||
VERSION="$(cat .VERSION)"
|
|
||||||
MAJORVERSION="$(cat .VERSION | cut -c 1-2 | sed -r 's#^(.{0})#\1latest-#')"
|
|
||||||
DATI="$(date --rfc-3339=seconds | sed 's/ /T/')"
|
|
||||||
echo "This is the Version: $VERSION"
|
|
||||||
echo "version=$VERSION" >> $GITHUB_ENV
|
|
||||||
echo "This is the Major Version: $MAJORVERSION"
|
|
||||||
echo "majorversion=$MAJORVERSION" >> $GITHUB_ENV
|
|
||||||
echo "This is the Buildnumber/Timestamp: $DATI"
|
|
||||||
echo "dati=$DATI" >> $GITHUB_ENV
|
|
||||||
# startup script
|
|
||||||
sed -e "s/\${VERSION}/$VERSION-dev/" -e "s/\${BUILD}/$DATI/" ./debian/scripts/iobroker_startup.sh > ./debian/scripts/iobroker_startup.tmp
|
|
||||||
mv -f ./debian/scripts/iobroker_startup.tmp ./debian/scripts/iobroker_startup.sh
|
|
||||||
# amd64
|
|
||||||
sed -e "s/\${VERSION}/$VERSION-dev/" -e "s/\${DATI}/$DATI/" ./debian/node20/Dockerfile > ./debian/node20/Dockerfile.tmp
|
|
||||||
mv -f ./debian/node20/Dockerfile.tmp ./debian/node20/Dockerfile
|
|
||||||
|
|
||||||
- name: Set up QEMU
|
|
||||||
uses: docker/setup-qemu-action@v2.1.0
|
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
id: buildx
|
|
||||||
uses: docker/setup-buildx-action@v2.5.0
|
|
||||||
|
|
||||||
- name: Login to DockerHub
|
|
||||||
uses: docker/login-action@v2.1.0
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.DOCKER_USER }}
|
|
||||||
password: ${{ secrets.DOCKER_PASS }}
|
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
|
||||||
uses: docker/login-action@v2.1.0
|
|
||||||
with:
|
|
||||||
registry: ghcr.io
|
|
||||||
username: ${{ secrets.PACKAGES_USER }}
|
|
||||||
password: ${{ secrets.PACKAGES_PASS }}
|
|
||||||
|
|
||||||
- name: Build Docker image (node20)
|
|
||||||
uses: docker/build-push-action@v4.0.0
|
|
||||||
with:
|
|
||||||
context: ./debian
|
|
||||||
file: ./debian/node20/Dockerfile
|
|
||||||
push: true
|
|
||||||
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8
|
|
||||||
tags: |
|
|
||||||
buanet/iobroker:dev-node20,
|
|
||||||
ghcr.io/buanet/iobroker:dev-node20
|
|
||||||
|
|
||||||
- name: Delete untagged images from GitHub packages
|
|
||||||
uses: actions/github-script@v6
|
|
||||||
with:
|
|
||||||
github-token: ${{ secrets.PACKAGES_PASS }}
|
|
||||||
script: |
|
|
||||||
const response = await github.request("GET /users/${{ env.OWNER }}/packages/container/${{ env.PACKAGE_NAME }}/versions",
|
|
||||||
{ per_page: ${{ env.PER_PAGE }}
|
|
||||||
});
|
|
||||||
for(version of response.data) {
|
|
||||||
if (version.metadata.container.tags.length == 0) {
|
|
||||||
console.log("delete " + version.id)
|
|
||||||
const deleteResponse = await github.request("DELETE /user/packages/container/${{ env.PACKAGE_NAME }}/versions/" + version.id, { });
|
|
||||||
console.log("status " + deleteResponse.status)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
env:
|
|
||||||
OWNER: buanet
|
|
||||||
PACKAGE_NAME: iobroker
|
|
||||||
PER_PAGE: 100
|
|
||||||
89
.github/workflows/build-debian-image-dev.yml
vendored
89
.github/workflows/build-debian-image-dev.yml
vendored
@@ -1,89 +0,0 @@
|
|||||||
# Github action to build Docker image from dev branch (tag: dev)
|
|
||||||
name: Build debian dev
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-dev-image:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout repo
|
|
||||||
uses: actions/checkout@v3.5.0
|
|
||||||
with:
|
|
||||||
repository: 'buanet/ioBroker.docker'
|
|
||||||
|
|
||||||
- name: Fetch version tag and date
|
|
||||||
id: version
|
|
||||||
run: |
|
|
||||||
VERSION="$(cat .VERSION)"
|
|
||||||
MAJORVERSION="$(cat .VERSION | cut -c 1-2 | sed -r 's#^(.{0})#\1latest-#')"
|
|
||||||
DATI="$(date --rfc-3339=seconds | sed 's/ /T/')"
|
|
||||||
echo "This is the Version: $VERSION"
|
|
||||||
echo "version=$VERSION" >> $GITHUB_ENV
|
|
||||||
echo "This is the Major Version: $MAJORVERSION"
|
|
||||||
echo "majorversion=$MAJORVERSION" >> $GITHUB_ENV
|
|
||||||
echo "This is the Buildnumber/Timestamp: $DATI"
|
|
||||||
echo "dati=$DATI" >> $GITHUB_ENV
|
|
||||||
# startup script
|
|
||||||
sed -e "s/\${VERSION}/$VERSION-dev/" -e "s/\${BUILD}/$DATI/" ./debian/scripts/iobroker_startup.sh > ./debian/scripts/iobroker_startup.tmp
|
|
||||||
mv -f ./debian/scripts/iobroker_startup.tmp ./debian/scripts/iobroker_startup.sh
|
|
||||||
# amd64
|
|
||||||
sed -e "s/\${VERSION}/$VERSION-dev/" -e "s/\${DATI}/$DATI/" ./debian/node18/Dockerfile > ./debian/node18/Dockerfile.tmp
|
|
||||||
mv -f ./debian/node18/Dockerfile.tmp ./debian/node18/Dockerfile
|
|
||||||
|
|
||||||
- name: Set up QEMU
|
|
||||||
uses: docker/setup-qemu-action@v2.1.0
|
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
id: buildx
|
|
||||||
uses: docker/setup-buildx-action@v2.5.0
|
|
||||||
|
|
||||||
- name: Login to DockerHub
|
|
||||||
uses: docker/login-action@v2.1.0
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.DOCKER_USER }}
|
|
||||||
password: ${{ secrets.DOCKER_PASS }}
|
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
|
||||||
uses: docker/login-action@v2.1.0
|
|
||||||
with:
|
|
||||||
registry: ghcr.io
|
|
||||||
username: ${{ secrets.PACKAGES_USER }}
|
|
||||||
password: ${{ secrets.PACKAGES_PASS }}
|
|
||||||
|
|
||||||
- name: Build and push Docker image
|
|
||||||
uses: docker/build-push-action@v4.0.0
|
|
||||||
with:
|
|
||||||
context: ./debian
|
|
||||||
file: ./debian/node18/Dockerfile
|
|
||||||
push: true
|
|
||||||
platforms: |
|
|
||||||
linux/amd64
|
|
||||||
linux/arm/v7
|
|
||||||
linux/arm64/v8
|
|
||||||
tags: |
|
|
||||||
buanet/iobroker:dev,
|
|
||||||
ghcr.io/buanet/iobroker:dev
|
|
||||||
provenance: false
|
|
||||||
outputs: type=image,name=target,annotation-index.org.opencontainers.image.description=Official Docker image for ioBroker smarthome software (https://www.iobroker.net)
|
|
||||||
|
|
||||||
- name: Delete untagged images from GitHub Container Registry
|
|
||||||
uses: actions/github-script@v6.4.1
|
|
||||||
with:
|
|
||||||
github-token: ${{ secrets.PACKAGES_PASS }}
|
|
||||||
script: |
|
|
||||||
const response = await github.request("GET /users/${{ env.OWNER }}/packages/container/${{ env.PACKAGE_NAME }}/versions",
|
|
||||||
{ per_page: ${{ env.PER_PAGE }}
|
|
||||||
});
|
|
||||||
for(version of response.data) {
|
|
||||||
if (version.metadata.container.tags.length == 0) {
|
|
||||||
console.log("delete " + version.id)
|
|
||||||
const deleteResponse = await github.request("DELETE /user/packages/container/${{ env.PACKAGE_NAME }}/versions/" + version.id, { });
|
|
||||||
console.log("status " + deleteResponse.status)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
env:
|
|
||||||
OWNER: buanet
|
|
||||||
PACKAGE_NAME: iobroker
|
|
||||||
PER_PAGE: 100
|
|
||||||
@@ -17,7 +17,7 @@ jobs:
|
|||||||
echo "RELEASE_TAG=$LATESTRELEASE" >> $GITHUB_ENV
|
echo "RELEASE_TAG=$LATESTRELEASE" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3.5.3
|
||||||
with:
|
with:
|
||||||
repository: 'buanet/ioBroker.docker'
|
repository: 'buanet/ioBroker.docker'
|
||||||
ref: ${{ env.RELEASE_TAG }}
|
ref: ${{ env.RELEASE_TAG }}
|
||||||
@@ -42,20 +42,20 @@ jobs:
|
|||||||
mv -f ./debian/node18/Dockerfile.tmp ./debian/node18/Dockerfile
|
mv -f ./debian/node18/Dockerfile.tmp ./debian/node18/Dockerfile
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v2.1.0
|
uses: docker/setup-qemu-action@v2.2.0
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
id: buildx
|
id: buildx
|
||||||
uses: docker/setup-buildx-action@v2.5.0
|
uses: docker/setup-buildx-action@v2.9.1
|
||||||
|
|
||||||
- name: Login to DockerHub (iobroker)
|
- name: Login to DockerHub (iobroker)
|
||||||
uses: docker/login-action@v2.1.0
|
uses: docker/login-action@v2.2.0
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKER_USER_IOB }}
|
username: ${{ secrets.DOCKER_USER_IOB }}
|
||||||
password: ${{ secrets.DOCKER_PASS_IOB }}
|
password: ${{ secrets.DOCKER_PASS_IOB }}
|
||||||
|
|
||||||
- name: Build Docker image
|
- name: Build Docker image
|
||||||
uses: docker/build-push-action@v4.0.0
|
uses: docker/build-push-action@v4.1.1
|
||||||
with:
|
with:
|
||||||
context: ./debian
|
context: ./debian
|
||||||
file: ./debian/node18/Dockerfile
|
file: ./debian/node18/Dockerfile
|
||||||
|
|||||||
12
.github/workflows/build-debian-image-latest.yml
vendored
12
.github/workflows/build-debian-image-latest.yml
vendored
@@ -17,7 +17,7 @@ jobs:
|
|||||||
echo "RELEASE_TAG=$LATESTRELEASE" >> $GITHUB_ENV
|
echo "RELEASE_TAG=$LATESTRELEASE" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3.5.3
|
||||||
with:
|
with:
|
||||||
repository: 'buanet/ioBroker.docker'
|
repository: 'buanet/ioBroker.docker'
|
||||||
ref: ${{ env.RELEASE_TAG }}
|
ref: ${{ env.RELEASE_TAG }}
|
||||||
@@ -42,26 +42,26 @@ jobs:
|
|||||||
mv -f ./debian/node18/Dockerfile.tmp ./debian/node18/Dockerfile
|
mv -f ./debian/node18/Dockerfile.tmp ./debian/node18/Dockerfile
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v2.1.0
|
uses: docker/setup-qemu-action@v2.2.0
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
id: buildx
|
id: buildx
|
||||||
uses: docker/setup-buildx-action@v2.5.0
|
uses: docker/setup-buildx-action@v2.9.1
|
||||||
- name: Login to DockerHub (buanet)
|
- name: Login to DockerHub (buanet)
|
||||||
uses: docker/login-action@v2.1.0
|
uses: docker/login-action@v2.2.0
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKER_USER }}
|
username: ${{ secrets.DOCKER_USER }}
|
||||||
password: ${{ secrets.DOCKER_PASS }}
|
password: ${{ secrets.DOCKER_PASS }}
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
- name: Login to GitHub Container Registry
|
||||||
uses: docker/login-action@v2.1.0
|
uses: docker/login-action@v2.2.0
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ secrets.PACKAGES_USER }}
|
username: ${{ secrets.PACKAGES_USER }}
|
||||||
password: ${{ secrets.PACKAGES_PASS }}
|
password: ${{ secrets.PACKAGES_PASS }}
|
||||||
|
|
||||||
- name: Build Docker image
|
- name: Build Docker image
|
||||||
uses: docker/build-push-action@v4.0.0
|
uses: docker/build-push-action@v4.1.1
|
||||||
with:
|
with:
|
||||||
context: ./debian
|
context: ./debian
|
||||||
file: ./debian/node18/Dockerfile
|
file: ./debian/node18/Dockerfile
|
||||||
|
|||||||
186
.github/workflows/build-debian12-beta.yml
vendored
Normal file
186
.github/workflows/build-debian12-beta.yml
vendored
Normal file
@@ -0,0 +1,186 @@
|
|||||||
|
# Github action to build Debian12 image (Tag: beta)
|
||||||
|
name: Build Debian 12 Image (beta)
|
||||||
|
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [prereleased]
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
chose_node_version:
|
||||||
|
type: choice
|
||||||
|
description: 'Which Node version should be used?'
|
||||||
|
options:
|
||||||
|
- 'Recommended Node version (default)'
|
||||||
|
- 'Experimental Node version'
|
||||||
|
- 'Both Node versions'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-with-recommended-node:
|
||||||
|
if: inputs.chose_node_version == 'Recommended Node version (default)' || inputs.chose_node_version == 'Both Node versions' || github.event_name == 'release'
|
||||||
|
name: Build with recommended Node version
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Fetch latest prerelease tag
|
||||||
|
run: echo "RELEASE_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Checkout repo
|
||||||
|
uses: actions/checkout@v4.0.0
|
||||||
|
with:
|
||||||
|
repository: 'buanet/ioBroker.docker'
|
||||||
|
ref: ${{ env.RELEASE_TAG }}
|
||||||
|
|
||||||
|
- name: Set job variables
|
||||||
|
run: |
|
||||||
|
VERSION="$(cat .VERSION)"
|
||||||
|
MAJORVERSION="$(cat .VERSION | cut -c 1-2 | sed -r 's#^(.{0})#\1latest-#')"
|
||||||
|
DATI="$(date --rfc-3339=seconds | sed 's/ /T/')"
|
||||||
|
# Log output and export as Github environment variable
|
||||||
|
echo "[LOG] Nodejs Version: ${{ vars.RECOMMENDED_NODE_VERSION }}"
|
||||||
|
echo "[LOG] Image Version: $VERSION"
|
||||||
|
echo "version=$VERSION" >> $GITHUB_ENV
|
||||||
|
echo "[LOG] Major Image Version: $MAJORVERSION"
|
||||||
|
echo "majorversion=$MAJORVERSION" >> $GITHUB_ENV
|
||||||
|
echo "[LOG] Buildnumber/Timestamp: $DATI"
|
||||||
|
echo "dati=$DATI" >> $GITHUB_ENV
|
||||||
|
# Set values in iobroker_startup.sh
|
||||||
|
sed -e "s/\${VERSION}/$VERSION-dev/" -e "s/\${BUILD}/$DATI/" ./debian12/scripts/iobroker_startup.sh > ./debian12/scripts/iobroker_startup.tmp
|
||||||
|
mv -f ./debian12/scripts/iobroker_startup.tmp ./debian12/scripts/iobroker_startup.sh
|
||||||
|
# Set values in Dockerfile
|
||||||
|
sed -e "s/\${VERSION}/$VERSION-dev/" -e "s/\${DATI}/$DATI/" -e "s/\${NODE}/${{ vars.RECOMMENDED_NODE_VERSION }}/" ./debian12/Dockerfile > ./debian12/Dockerfile.tmp
|
||||||
|
mv -f ./debian12/Dockerfile.tmp ./debian12/Dockerfile
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3.0.0
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
id: buildx
|
||||||
|
uses: docker/setup-buildx-action@v3.0.0
|
||||||
|
|
||||||
|
- name: Login to DockerHub
|
||||||
|
uses: docker/login-action@v3.0.0
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USER }}
|
||||||
|
password: ${{ secrets.DOCKER_PASS }}
|
||||||
|
|
||||||
|
- name: Login to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v3.0.0
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ secrets.PACKAGES_USER }}
|
||||||
|
password: ${{ secrets.PACKAGES_PASS }}
|
||||||
|
|
||||||
|
- name: Build and push Docker image
|
||||||
|
uses: docker/build-push-action@v5.0.0
|
||||||
|
with:
|
||||||
|
context: ./debian12
|
||||||
|
file: ./debian12/Dockerfile
|
||||||
|
push: true
|
||||||
|
platforms: |
|
||||||
|
linux/amd64
|
||||||
|
linux/arm/v7
|
||||||
|
linux/arm64/v8
|
||||||
|
tags: |
|
||||||
|
buanet/iobroker:beta,
|
||||||
|
buanet/iobroker:${{ env.version }},
|
||||||
|
ghcr.io/buanet/iobroker:beta,
|
||||||
|
ghcr.io/buanet/iobroker:${{ env.version }}
|
||||||
|
provenance: false
|
||||||
|
outputs: type=image,name=target,annotation-index.org.opencontainers.image.description=Official Docker image for ioBroker smarthome software (https://www.iobroker.net)
|
||||||
|
|
||||||
|
build-with-experimental-node:
|
||||||
|
if: inputs.chose_node_version == 'Experimental Node version' || inputs.chose_node_version == 'Both Node versions' || github.event_name == 'release'
|
||||||
|
name: Build with experimental Node version
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Fetch latest prerelease tag
|
||||||
|
run: echo "RELEASE_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Checkout repo
|
||||||
|
uses: actions/checkout@v4.0.0
|
||||||
|
with:
|
||||||
|
repository: 'buanet/ioBroker.docker'
|
||||||
|
ref: ${{ env.RELEASE_TAG }}
|
||||||
|
|
||||||
|
- name: Set job variables
|
||||||
|
run: |
|
||||||
|
VERSION="$(cat .VERSION)"
|
||||||
|
MAJORVERSION="$(cat .VERSION | cut -c 1-2 | sed -r 's#^(.{0})#\1latest-#')"
|
||||||
|
DATI="$(date --rfc-3339=seconds | sed 's/ /T/')"
|
||||||
|
# Log output and export as Github environment variable
|
||||||
|
echo "[LOG] Nodejs Version: ${{ vars.EXPERIMENTAL_NODE_VERSION }}"
|
||||||
|
echo "[LOG] Image Version: $VERSION"
|
||||||
|
echo "version=$VERSION" >> $GITHUB_ENV
|
||||||
|
echo "[LOG] Major Image Version: $MAJORVERSION"
|
||||||
|
echo "majorversion=$MAJORVERSION" >> $GITHUB_ENV
|
||||||
|
echo "[LOG] Buildnumber/Timestamp: $DATI"
|
||||||
|
echo "dati=$DATI" >> $GITHUB_ENV
|
||||||
|
# Set values in iobroker_startup.sh
|
||||||
|
sed -e "s/\${VERSION}/$VERSION-dev/" -e "s/\${BUILD}/$DATI/" ./debian12/scripts/iobroker_startup.sh > ./debian12/scripts/iobroker_startup.tmp
|
||||||
|
mv -f ./debian12/scripts/iobroker_startup.tmp ./debian12/scripts/iobroker_startup.sh
|
||||||
|
# Set values in Dockerfile
|
||||||
|
sed -e "s/\${VERSION}/$VERSION-dev/" -e "s/\${DATI}/$DATI/" -e "s/\${NODE}/${{ vars.EXPERIMENTAL_NODE_VERSION }}/" ./debian12/Dockerfile > ./debian12/Dockerfile.tmp
|
||||||
|
mv -f ./debian12/Dockerfile.tmp ./debian12/Dockerfile
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3.0.0
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
id: buildx
|
||||||
|
uses: docker/setup-buildx-action@v3.0.0
|
||||||
|
|
||||||
|
- name: Login to DockerHub
|
||||||
|
uses: docker/login-action@v3.0.0
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USER }}
|
||||||
|
password: ${{ secrets.DOCKER_PASS }}
|
||||||
|
|
||||||
|
- name: Login to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v3.0.0
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ secrets.PACKAGES_USER }}
|
||||||
|
password: ${{ secrets.PACKAGES_PASS }}
|
||||||
|
|
||||||
|
- name: Build and push Docker image
|
||||||
|
uses: docker/build-push-action@v5.0.0
|
||||||
|
with:
|
||||||
|
context: ./debian12
|
||||||
|
file: ./debian12/Dockerfile
|
||||||
|
push: true
|
||||||
|
platforms: |
|
||||||
|
linux/amd64
|
||||||
|
linux/arm64/v8
|
||||||
|
# linux/arm/v7
|
||||||
|
tags: |
|
||||||
|
buanet/iobroker:beta-node${{ vars.EXPERIMENTAL_NODE_VERSION }},
|
||||||
|
buanet/iobroker:${{ env.version }}-node${{ vars.EXPERIMENTAL_NODE_VERSION }},
|
||||||
|
ghcr.io/buanet/iobroker:beta-node${{ vars.EXPERIMENTAL_NODE_VERSION }},
|
||||||
|
ghcr.io/buanet/iobroker:${{ env.version }}-node${{ vars.EXPERIMENTAL_NODE_VERSION }}
|
||||||
|
provenance: false
|
||||||
|
outputs: type=image,name=target,annotation-index.org.opencontainers.image.description=Official Docker image for ioBroker smarthome software (https://www.iobroker.net)
|
||||||
|
|
||||||
|
delete-untagged-images:
|
||||||
|
if: ${{ always() }}
|
||||||
|
needs: [build-with-recommended-node, build-with-experimental-node]
|
||||||
|
name: Delete untagged images from GitHub Container Registry
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Delete images
|
||||||
|
uses: actions/github-script@v6.4.1
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.PACKAGES_PASS }}
|
||||||
|
script: |
|
||||||
|
const response = await github.request("GET /users/${{ env.OWNER }}/packages/container/${{ env.PACKAGE_NAME }}/versions",
|
||||||
|
{ per_page: ${{ env.PER_PAGE }}
|
||||||
|
});
|
||||||
|
for(version of response.data) {
|
||||||
|
if (version.metadata.container.tags.length == 0) {
|
||||||
|
console.log("delete " + version.id)
|
||||||
|
const deleteResponse = await github.request("DELETE /user/packages/container/${{ env.PACKAGE_NAME }}/versions/" + version.id, { });
|
||||||
|
console.log("status " + deleteResponse.status)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
env:
|
||||||
|
OWNER: buanet
|
||||||
|
PACKAGE_NAME: iobroker
|
||||||
|
PER_PAGE: 100
|
||||||
170
.github/workflows/build-debian12-dev.yml
vendored
Normal file
170
.github/workflows/build-debian12-dev.yml
vendored
Normal file
@@ -0,0 +1,170 @@
|
|||||||
|
# Github action to build Debian12 image (Tag: dev)
|
||||||
|
name: Build Debian 12 Image (dev)
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
chose_node_version:
|
||||||
|
type: choice
|
||||||
|
description: 'Which Node version should be used?'
|
||||||
|
options:
|
||||||
|
- 'Recommended Node version (default)'
|
||||||
|
- 'Experimental Node version'
|
||||||
|
- 'Both Node versions'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-with-recommended-node:
|
||||||
|
if: inputs.chose_node_version == 'Recommended Node version (default)' || inputs.chose_node_version == 'Both Node versions'
|
||||||
|
name: Build with recommended Node version
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repo
|
||||||
|
uses: actions/checkout@v4.0.0
|
||||||
|
with:
|
||||||
|
repository: 'buanet/ioBroker.docker'
|
||||||
|
|
||||||
|
- name: Set job variables
|
||||||
|
run: |
|
||||||
|
VERSION="$(cat .VERSION)"
|
||||||
|
MAJORVERSION="$(cat .VERSION | cut -c 1-2 | sed -r 's#^(.{0})#\1latest-#')"
|
||||||
|
DATI="$(date --rfc-3339=seconds | sed 's/ /T/')"
|
||||||
|
# Log output and export as Github environment variable
|
||||||
|
echo "[LOG] Nodejs Version: ${{ vars.RECOMMENDED_NODE_VERSION }}"
|
||||||
|
echo "[LOG] Image Version: $VERSION"
|
||||||
|
echo "version=$VERSION" >> $GITHUB_ENV
|
||||||
|
echo "[LOG] Major Image Version: $MAJORVERSION"
|
||||||
|
echo "majorversion=$MAJORVERSION" >> $GITHUB_ENV
|
||||||
|
echo "[LOG] Buildnumber/Timestamp: $DATI"
|
||||||
|
echo "dati=$DATI" >> $GITHUB_ENV
|
||||||
|
# Set values in iobroker_startup.sh
|
||||||
|
sed -e "s/\${VERSION}/$VERSION-dev/" -e "s/\${BUILD}/$DATI/" ./debian12/scripts/iobroker_startup.sh > ./debian12/scripts/iobroker_startup.tmp
|
||||||
|
mv -f ./debian12/scripts/iobroker_startup.tmp ./debian12/scripts/iobroker_startup.sh
|
||||||
|
# Set values in Dockerfile
|
||||||
|
sed -e "s/\${VERSION}/$VERSION-dev/" -e "s/\${DATI}/$DATI/" -e "s/\${NODE}/${{ vars.RECOMMENDED_NODE_VERSION }}/" ./debian12/Dockerfile > ./debian12/Dockerfile.tmp
|
||||||
|
mv -f ./debian12/Dockerfile.tmp ./debian12/Dockerfile
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3.0.0
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
id: buildx
|
||||||
|
uses: docker/setup-buildx-action@v3.0.0
|
||||||
|
|
||||||
|
- name: Login to DockerHub
|
||||||
|
uses: docker/login-action@v3.0.0
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USER }}
|
||||||
|
password: ${{ secrets.DOCKER_PASS }}
|
||||||
|
|
||||||
|
- name: Login to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v3.0.0
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ secrets.PACKAGES_USER }}
|
||||||
|
password: ${{ secrets.PACKAGES_PASS }}
|
||||||
|
|
||||||
|
- name: Build and push Docker image
|
||||||
|
uses: docker/build-push-action@v5.0.0
|
||||||
|
with:
|
||||||
|
context: ./debian12
|
||||||
|
file: ./debian12/Dockerfile
|
||||||
|
push: true
|
||||||
|
platforms: |
|
||||||
|
linux/amd64
|
||||||
|
linux/arm64
|
||||||
|
linux/arm/v7
|
||||||
|
tags: |
|
||||||
|
buanet/iobroker:dev,
|
||||||
|
ghcr.io/buanet/iobroker:dev
|
||||||
|
buanet/iobroker:dev-node${{ vars.RECOMMENDED_NODE_VERSION }},
|
||||||
|
ghcr.io/buanet/iobroker:dev-node${{ vars.RECOMMENDED_NODE_VERSION }}
|
||||||
|
|
||||||
|
build-with-experimental-node:
|
||||||
|
if: inputs.chose_node_version == 'Experimental Node version' || inputs.chose_node_version == 'Both Node versions'
|
||||||
|
name: Build with experimental Node version
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repo
|
||||||
|
uses: actions/checkout@v4.0.0
|
||||||
|
with:
|
||||||
|
repository: 'buanet/ioBroker.docker'
|
||||||
|
|
||||||
|
- name: Set job variables
|
||||||
|
run: |
|
||||||
|
VERSION="$(cat .VERSION)"
|
||||||
|
MAJORVERSION="$(cat .VERSION | cut -c 1-2 | sed -r 's#^(.{0})#\1latest-#')"
|
||||||
|
DATI="$(date --rfc-3339=seconds | sed 's/ /T/')"
|
||||||
|
# Log output and export as Github environment variable
|
||||||
|
echo "[LOG] Nodejs Version: ${{ vars.EXPERIMENTAL_NODE_VERSION }}"
|
||||||
|
echo "[LOG] Image Version: $VERSION"
|
||||||
|
echo "version=$VERSION" >> $GITHUB_ENV
|
||||||
|
echo "[LOG] Major Image Version: $MAJORVERSION"
|
||||||
|
echo "majorversion=$MAJORVERSION" >> $GITHUB_ENV
|
||||||
|
echo "[LOG] Buildnumber/Timestamp: $DATI"
|
||||||
|
echo "dati=$DATI" >> $GITHUB_ENV
|
||||||
|
# Set values in iobroker_startup.sh
|
||||||
|
sed -e "s/\${VERSION}/$VERSION-dev/" -e "s/\${BUILD}/$DATI/" ./debian12/scripts/iobroker_startup.sh > ./debian12/scripts/iobroker_startup.tmp
|
||||||
|
mv -f ./debian12/scripts/iobroker_startup.tmp ./debian12/scripts/iobroker_startup.sh
|
||||||
|
# Set values in Dockerfile
|
||||||
|
sed -e "s/\${VERSION}/$VERSION-dev/" -e "s/\${DATI}/$DATI/" -e "s/\${NODE}/${{ vars.EXPERIMENTAL_NODE_VERSION }}/" ./debian12/Dockerfile > ./debian12/Dockerfile.tmp
|
||||||
|
mv -f ./debian12/Dockerfile.tmp ./debian12/Dockerfile
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3.0.0
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
id: buildx
|
||||||
|
uses: docker/setup-buildx-action@v3.0.0
|
||||||
|
|
||||||
|
- name: Login to DockerHub
|
||||||
|
uses: docker/login-action@v3.0.0
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USER }}
|
||||||
|
password: ${{ secrets.DOCKER_PASS }}
|
||||||
|
|
||||||
|
- name: Login to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v3.0.0
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ secrets.PACKAGES_USER }}
|
||||||
|
password: ${{ secrets.PACKAGES_PASS }}
|
||||||
|
|
||||||
|
- name: Build and push Docker image
|
||||||
|
uses: docker/build-push-action@v5.0.0
|
||||||
|
with:
|
||||||
|
context: ./debian12
|
||||||
|
file: ./debian12/Dockerfile
|
||||||
|
push: false
|
||||||
|
platforms: |
|
||||||
|
linux/amd64
|
||||||
|
linux/arm64
|
||||||
|
# linux/arm/v7
|
||||||
|
tags: |
|
||||||
|
buanet/iobroker:dev-node${{ vars.EXPERIMENTAL_NODE_VERSION }},
|
||||||
|
ghcr.io/buanet/iobroker:dev-node${{ vars.EXPERIMENTAL_NODE_VERSION }}
|
||||||
|
|
||||||
|
delete-untagged-images:
|
||||||
|
if: ${{ always() }}
|
||||||
|
needs: [build-with-recommended-node, build-with-experimental-node]
|
||||||
|
name: Delete untagged images from GitHub Container Registry
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Delete images
|
||||||
|
uses: actions/github-script@v6.4.1
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.PACKAGES_PASS }}
|
||||||
|
script: |
|
||||||
|
const response = await github.request("GET /users/${{ env.OWNER }}/packages/container/${{ env.PACKAGE_NAME }}/versions",
|
||||||
|
{ per_page: ${{ env.PER_PAGE }}
|
||||||
|
});
|
||||||
|
for(version of response.data) {
|
||||||
|
if (version.metadata.container.tags.length == 0) {
|
||||||
|
console.log("delete " + version.id)
|
||||||
|
const deleteResponse = await github.request("DELETE /user/packages/container/${{ env.PACKAGE_NAME }}/versions/" + version.id, { });
|
||||||
|
console.log("status " + deleteResponse.status)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
env:
|
||||||
|
OWNER: buanet
|
||||||
|
PACKAGE_NAME: iobroker
|
||||||
|
PER_PAGE: 100
|
||||||
@@ -10,7 +10,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4.0.0
|
||||||
with:
|
with:
|
||||||
repository: 'buanet/ioBroker.docker'
|
repository: 'buanet/ioBroker.docker'
|
||||||
token: ${{ secrets.ACTIONS_PAT }}
|
token: ${{ secrets.ACTIONS_PAT }}
|
||||||
@@ -29,6 +29,9 @@ jobs:
|
|||||||
curl -sL https://repo.iobroker.live/sources-dist.json | \
|
curl -sL https://repo.iobroker.live/sources-dist.json | \
|
||||||
jq -r '."discovery".version' > .github/dependencies/.discovery-version
|
jq -r '."discovery".version' > .github/dependencies/.discovery-version
|
||||||
echo "[LOG] Fetched discovery version is $(cat .github/dependencies/.discovery-version)"
|
echo "[LOG] Fetched discovery version is $(cat .github/dependencies/.discovery-version)"
|
||||||
|
curl -sL "https://deb.nodesource.com/node_18.x/dists/bullseye/main/binary-amd64/Packages" | \
|
||||||
|
awk -F ': ' '/^Version:/ {split($2,a,"-"); print a[1]}' > .github/dependencies/.nodejs-version
|
||||||
|
echo "[LOG] Fetched nodejs version is $(cat .github/dependencies/.nodejs-version)"
|
||||||
|
|
||||||
- name: Check for modified files
|
- name: Check for modified files
|
||||||
id: git-check
|
id: git-check
|
||||||
|
|||||||
6
.github/workflows/update-docker-readme.yml
vendored
6
.github/workflows/update-docker-readme.yml
vendored
@@ -12,10 +12,10 @@ jobs:
|
|||||||
update-docker-readme:
|
update-docker-readme:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4.0.0
|
||||||
|
|
||||||
- name: Update Docker Hub Readme (buanet)
|
- name: Update Docker Hub Readme (buanet)
|
||||||
uses: peter-evans/dockerhub-description@v3
|
uses: peter-evans/dockerhub-description@v3.4.2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKER_USER }}
|
username: ${{ secrets.DOCKER_USER }}
|
||||||
password: ${{ secrets.DOCKER_PASS }}
|
password: ${{ secrets.DOCKER_PASS }}
|
||||||
@@ -24,7 +24,7 @@ jobs:
|
|||||||
readme-filepath: ./docs/README_docker_hub_buanet.md
|
readme-filepath: ./docs/README_docker_hub_buanet.md
|
||||||
|
|
||||||
- name: Update Docker Hub Readme (iobroker)
|
- name: Update Docker Hub Readme (iobroker)
|
||||||
uses: peter-evans/dockerhub-description@v3
|
uses: peter-evans/dockerhub-description@v3.4.2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKER_USER_IOB }}
|
username: ${{ secrets.DOCKER_USER_IOB }}
|
||||||
password: ${{ secrets.DOCKER_PASS_IOB }}
|
password: ${{ secrets.DOCKER_PASS_IOB }}
|
||||||
|
|||||||
35
CHANGELOG.md
35
CHANGELOG.md
@@ -1,5 +1,38 @@
|
|||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
### v9.0.0-beta.1 (24.09.2023)
|
||||||
|
* remove special settings script and env for zwave ([#377](https://github.com/buanet/ioBroker.docker/issues/377))
|
||||||
|
* simplify ci/ reduce gh actions
|
||||||
|
* ignore errors in "silent cleanup" on first start ([#369](https://github.com/buanet/ioBroker.docker/issues/369))
|
||||||
|
* cleanup/ restructure repo
|
||||||
|
* update nodejs setup process
|
||||||
|
* update base image to debian 12 (bookworm)
|
||||||
|
* improve security by avoiding root (exept startup script itself)
|
||||||
|
* restrict iobroker commanline commands (start/ stop/ node fix)
|
||||||
|
* integrate maintenance script into iobroker command
|
||||||
|
* move container config files location
|
||||||
|
|
||||||
|
### v8.1.0 (15.08.2023)
|
||||||
|
* repo cleanup
|
||||||
|
* v8.1.0-beta.4 (29.07.2023)
|
||||||
|
* fix container restart in maintenance script
|
||||||
|
* fix running maintenance script as iobroker
|
||||||
|
* enhance quoting ([#357 by @dontobi](https://github.com/buanet/ioBroker.docker/pull/357))
|
||||||
|
* v8.1.0-beta.3 (05.07.2023)
|
||||||
|
* fix permission issue for restart container as iobroker user
|
||||||
|
* fix issue with js-controller ui upgrade
|
||||||
|
* fix small issues in maintenance script
|
||||||
|
* update action workflows
|
||||||
|
* v8.1.0-beta.2 (26.04.2023)
|
||||||
|
* prohibit restore when startup script is still running
|
||||||
|
* extend time before restart after restore is done
|
||||||
|
* influx data repo will be added automatically when PACKAGES contains influxdb or influxdb2-cli package
|
||||||
|
* v8.1.0-beta.1 (14.04.2023)
|
||||||
|
* enhance github actions
|
||||||
|
* enhance log output of maintenance script on restore ([#333](https://github.com/buanet/ioBroker.docker/issues/333))
|
||||||
|
* allow iobroker admin to be disabled at startup ([#332](https://github.com/buanet/ioBroker.docker/issues/332))
|
||||||
|
* allow deletion of objects and states db password with value "none" ([#306](https://github.com/buanet/ioBroker.docker/issues/306))
|
||||||
|
|
||||||
### v8.0.1 (17.04.2023)
|
### v8.0.1 (17.04.2023)
|
||||||
* fix calling of "iob setup first" on slaves ([#335](https://github.com/buanet/ioBroker.docker/issues/335))
|
* fix calling of "iob setup first" on slaves ([#335](https://github.com/buanet/ioBroker.docker/issues/335))
|
||||||
|
|
||||||
@@ -266,4 +299,4 @@
|
|||||||
* added support for avahi-daemon (installation and autostart)
|
* added support for avahi-daemon (installation and autostart)
|
||||||
|
|
||||||
### v0.0.1 (2017-01-31)
|
### v0.0.1 (2017-01-31)
|
||||||
* project started / initial release
|
* project started / initial release
|
||||||
97
debian/node14/Dockerfile
vendored
97
debian/node14/Dockerfile
vendored
@@ -1,97 +0,0 @@
|
|||||||
FROM debian:bullseye-slim
|
|
||||||
|
|
||||||
LABEL org.opencontainers.image.title="Official ioBroker Docker Image" \
|
|
||||||
org.opencontainers.image.description="Officical Docker image for ioBroker smarthome software (https://www.iobroker.net)" \
|
|
||||||
org.opencontainers.image.documentation="https://github.com/buanet/ioBroker.docker#readme" \
|
|
||||||
org.opencontainers.image.authors="André Germann <info@buanet.de>" \
|
|
||||||
org.opencontainers.image.url="https://github.com/buanet/ioBroker.docker" \
|
|
||||||
org.opencontainers.image.source="https://github.com/buanet/ioBroker.docker" \
|
|
||||||
org.opencontainers.image.base.name="docker.io/library/debian:bullseye-slim" \
|
|
||||||
org.opencontainers.image.version="${VERSION}" \
|
|
||||||
org.opencontainers.image.created="${DATI}"
|
|
||||||
|
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
|
||||||
|
|
||||||
# Install prerequisites (including node) and generating locales
|
|
||||||
RUN apt-get update && apt-get install -y \
|
|
||||||
apt-utils \
|
|
||||||
cifs-utils \
|
|
||||||
curl \
|
|
||||||
gosu \
|
|
||||||
iputils-ping \
|
|
||||||
jq \
|
|
||||||
locales \
|
|
||||||
nfs-common \
|
|
||||||
procps \
|
|
||||||
python3 \
|
|
||||||
python3-dev \
|
|
||||||
sudo \
|
|
||||||
tar \
|
|
||||||
tzdata \
|
|
||||||
udev \
|
|
||||||
wget \
|
|
||||||
# Install node
|
|
||||||
&& curl -sL https://deb.nodesource.com/setup_14.x | bash \
|
|
||||||
&& apt-get update && apt-get install -y nodejs \
|
|
||||||
# Install node-gyp
|
|
||||||
&& npm install -g node-gyp \
|
|
||||||
# Generating locales
|
|
||||||
&& sed -i 's/^# *\(de_DE.UTF-8\)/\1/' /etc/locale.gen \
|
|
||||||
&& sed -i 's/^# *\(en_US.UTF-8\)/\1/' /etc/locale.gen \
|
|
||||||
&& locale-gen
|
|
||||||
|
|
||||||
# Create directorys and copy scripts
|
|
||||||
COPY scripts /opt/scripts
|
|
||||||
COPY userscripts /opt/userscripts
|
|
||||||
RUN chmod 777 /opt/scripts/ \
|
|
||||||
&& chmod 777 /opt/userscripts/ \
|
|
||||||
&& chmod +x /opt/scripts/*.sh \
|
|
||||||
&& chmod +x /opt/userscripts/*.sh
|
|
||||||
|
|
||||||
# Install ioBroker
|
|
||||||
RUN curl -sL https://iobroker.net/install.sh | bash - \
|
|
||||||
&& mkdir -p /opt/scripts/.docker_config/ \
|
|
||||||
&& echo "starting" > /opt/scripts/.docker_config/.healthcheck \
|
|
||||||
&& echo "${VERSION}" > /opt/scripts/.docker_config/.thisisdocker \
|
|
||||||
&& echo $(hostname) > /opt/.firstrun \
|
|
||||||
# Deleting UUID from build
|
|
||||||
&& iobroker unsetup -y \
|
|
||||||
# Backup initial ioBroker and userscript folder
|
|
||||||
&& tar -cf /opt/initial_iobroker.tar /opt/iobroker \
|
|
||||||
&& tar -cf /opt/initial_userscripts.tar /opt/userscripts \
|
|
||||||
# Setting up iobroker-user (shell, home dir and rights)
|
|
||||||
&& chsh -s /bin/bash iobroker \
|
|
||||||
&& usermod --home /opt/iobroker iobroker \
|
|
||||||
&& usermod -u 1000 iobroker \
|
|
||||||
&& groupmod -g 1000 iobroker \
|
|
||||||
&& chown root:iobroker /usr/sbin/gosu \
|
|
||||||
&& chmod +s /usr/sbin/gosu \
|
|
||||||
# Clean up installation cache
|
|
||||||
&& apt-get autoclean -y \
|
|
||||||
&& apt-get autoremove \
|
|
||||||
&& apt-get clean \
|
|
||||||
&& rm -rf /tmp/* /var/tmp/* \
|
|
||||||
&& rm -rf /root/.cache/* /root/.npm/* \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
# Setting up default ENVs
|
|
||||||
ENV DEBIAN_FRONTEND="teletype" \
|
|
||||||
LANG="de_DE.UTF-8" \
|
|
||||||
LANGUAGE="de_DE:de" \
|
|
||||||
LC_ALL="de_DE.UTF-8" \
|
|
||||||
SETGID=1000 \
|
|
||||||
SETUID=1000 \
|
|
||||||
TZ="Europe/Berlin"
|
|
||||||
|
|
||||||
# Expose default admin ui port
|
|
||||||
EXPOSE 8081
|
|
||||||
|
|
||||||
# Change work dir
|
|
||||||
WORKDIR /opt/iobroker/
|
|
||||||
|
|
||||||
# Healthcheck
|
|
||||||
HEALTHCHECK --interval=15s --timeout=5s --retries=5 \
|
|
||||||
CMD ["/bin/bash", "-c", "/opt/scripts/healthcheck.sh"]
|
|
||||||
|
|
||||||
# Run startup-script
|
|
||||||
ENTRYPOINT ["/bin/bash", "-c", "/opt/scripts/iobroker_startup.sh"]
|
|
||||||
50
debian/scripts/setup_packages.sh
vendored
50
debian/scripts/setup_packages.sh
vendored
@@ -1,50 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
|
||||||
|
|
||||||
if [ "$1" == "-install" ]
|
|
||||||
then
|
|
||||||
apt-get -q update >> /opt/scripts/setup_packages.log 2>&1
|
|
||||||
packages=$(cat /opt/scripts/.docker_config/.packages)
|
|
||||||
echo ' '
|
|
||||||
for i in $packages; do
|
|
||||||
if [ "$(dpkg-query -W -f='${Status}' "$i" 2>/dev/null | grep -c "ok installed")" -eq 0 ];
|
|
||||||
then
|
|
||||||
echo -n "$i is not installed. Installing... "
|
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get -q -y install "$i" >> /opt/scripts/setup_packages.log 2>&1
|
|
||||||
return=$?
|
|
||||||
if [[ "$return" -ne 0 ]]; then
|
|
||||||
echo "Failed."
|
|
||||||
echo "For more details see \"/opt/scripts/setup_packages.log\"."
|
|
||||||
echo ' '
|
|
||||||
else
|
|
||||||
echo "Done."
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "$i is already installed."
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
elif [ "$1" == "-update" ]; then
|
|
||||||
echo -n "Updating Linux packages on first run... "
|
|
||||||
apt-get -q update >> /opt/scripts/setup_packages.log 2>&1
|
|
||||||
return=$?
|
|
||||||
apt-get -q -y upgrade >> /opt/scripts/setup_packages.log 2>&1
|
|
||||||
return1=$?
|
|
||||||
if [[ "$return" -ne 0 || "$return1" -ne 0 ]]; then
|
|
||||||
echo "Failed."
|
|
||||||
echo "For more details see \"/opt/scripts/setup_packages.log\"."
|
|
||||||
echo "Make sure the container has internet access to get the latest package updates."
|
|
||||||
echo "This has no impact to the setup process. The script will continue."
|
|
||||||
else
|
|
||||||
echo 'Done.'
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "No paramerter found!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Silent Cleanup
|
|
||||||
apt-get -qq autoclean -y && apt-get -qq autoremove && apt-get -qq clean
|
|
||||||
rm -rf /tmp/* /var/tmp/* && rm -rf /root/.cache/* && rm -rf /var/lib/apt/lists/* && rm -f /opt/scripts/.docker_config/.packages
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
@@ -4,17 +4,17 @@
|
|||||||
|
|
||||||
if [ "$(cat /opt/scripts/.docker_config/.healthcheck)" == "starting" ]
|
if [ "$(cat /opt/scripts/.docker_config/.healthcheck)" == "starting" ]
|
||||||
then
|
then
|
||||||
echo 'Health status: OK - Startup script is still running.'
|
echo "Health status: OK - Startup script is still running."
|
||||||
exit 0
|
exit 0
|
||||||
elif [ "$(cat /opt/scripts/.docker_config/.healthcheck)" == "maintenance" ]
|
elif [ "$(cat /opt/scripts/.docker_config/.healthcheck)" == "maintenance" ]
|
||||||
then
|
then
|
||||||
echo 'Health status: OK - Container is running in maintenance mode.'
|
echo "Health status: OK - Container is running in maintenance mode."
|
||||||
exit 0
|
exit 0
|
||||||
elif [ "$(ps -fe|grep "[i]obroker.js-controller"|awk '{print $2}')" != "" ]
|
elif [ "$(ps -fe|grep "[i]obroker.js-controller"|awk '{print $2}')" != "" ]
|
||||||
then
|
then
|
||||||
echo 'Health status: OK - Main process (js-controller) is running.'
|
echo "Health status: OK - Main process (js-controller) is running."
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo 'Health status: !!! NOT OK !!! - Something went wrong. Please see container logs for more details and/or try restarting the container.'
|
echo "Health status: !!! NOT OK !!! - Something went wrong. Please see container logs for more details and/or try restarting the container."
|
||||||
exit 1
|
exit 1
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
# Setting healthcheck status to "starting"
|
# Setting healthcheck status to "starting"
|
||||||
echo 'starting' > /opt/scripts/.docker_config/.healthcheck
|
echo "starting" > /opt/scripts/.docker_config/.healthcheck
|
||||||
|
|
||||||
# Reading ENV
|
# Reading ENV
|
||||||
set +u
|
set +u
|
||||||
@@ -37,14 +37,14 @@ pkill_timeout=10 # timeout for iobroker shutdown in seconds
|
|||||||
# Stop on error function
|
# Stop on error function
|
||||||
stop_on_error() {
|
stop_on_error() {
|
||||||
if [[ "$debug" == "true" ]]; then
|
if [[ "$debug" == "true" ]]; then
|
||||||
echo ' '
|
echo " "
|
||||||
echo "[DEBUG] Debug mode prevents the container from exiting on errors."
|
echo "[DEBUG] Debug mode prevents the container from exiting on errors."
|
||||||
echo "[DEBUG] This enables you to investigate or fix your issue on the command line."
|
echo "[DEBUG] This enables you to investigate or fix your issue on the command line."
|
||||||
echo "[DEBUG] If you want to stop or restart your container you have to do it manually."
|
echo "[DEBUG] If you want to stop or restart your container you have to do it manually."
|
||||||
echo "[DEBUG] IoBroker is not running!"
|
echo "[DEBUG] IoBroker is not running!"
|
||||||
tail -f /dev/null
|
tail -f /dev/null
|
||||||
else
|
else
|
||||||
echo ' '
|
echo " "
|
||||||
echo "This Script will exit now."
|
echo "This Script will exit now."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
@@ -54,7 +54,7 @@ stop_on_error() {
|
|||||||
dati=$(date '+%Y-%m-%d %H:%M:%S')
|
dati=$(date '+%Y-%m-%d %H:%M:%S')
|
||||||
|
|
||||||
# Logging header
|
# Logging header
|
||||||
echo ' '
|
echo " "
|
||||||
echo "$(printf -- '-%.0s' {1..80})"
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
echo -n "$(printf -- '-%.0s' {1..25})" && echo -n " ""$dati"" " && echo "$(printf -- '-%.0s' {1..25})"
|
echo -n "$(printf -- '-%.0s' {1..25})" && echo -n " ""$dati"" " && echo "$(printf -- '-%.0s' {1..25})"
|
||||||
echo "$(printf -- '-%.0s' {1..80})"
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
@@ -70,7 +70,7 @@ echo "----- Welcome to your ioBroker Docker container!
|
|||||||
echo "----- Startupscript is now running! -----"
|
echo "----- Startupscript is now running! -----"
|
||||||
echo "----- Please be patient! -----"
|
echo "----- Please be patient! -----"
|
||||||
echo "$(printf -- '-%.0s' {1..80})"
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
echo ' '
|
echo " "
|
||||||
echo "$(printf -- '-%.0s' {1..80})"
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
echo "----- System Information -----"
|
echo "----- System Information -----"
|
||||||
echo -n "----- " && echo -n "$(printf "%-20s %-28s" arch: "$(uname -m)")" && echo " -----"
|
echo -n "----- " && echo -n "$(printf "%-20s %-28s" arch: "$(uname -m)")" && echo " -----"
|
||||||
@@ -106,7 +106,7 @@ if [[ "$setuid" != "" ]]; then echo -n "----- " && echo -n "$
|
|||||||
if [[ "$usbdevices" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" USBDEVICES: "$usbdevices")" && echo " -----"; fi
|
if [[ "$usbdevices" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" USBDEVICES: "$usbdevices")" && echo " -----"; fi
|
||||||
if [[ "$zwave" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" ZWAVE: "$zwave")" && echo " -----"; fi
|
if [[ "$zwave" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" ZWAVE: "$zwave")" && echo " -----"; fi
|
||||||
echo "$(printf -- '-%.0s' {1..80})"
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
echo ' '
|
echo " "
|
||||||
|
|
||||||
# Debug logging notice
|
# Debug logging notice
|
||||||
if [[ "$debug" == "true" ]]; then
|
if [[ "$debug" == "true" ]]; then
|
||||||
@@ -118,7 +118,7 @@ if [[ "$debug" == "true" ]]; then
|
|||||||
echo "!!!! For more information see ioBroker Docker image documentation: !!!!"
|
echo "!!!! For more information see ioBroker Docker image documentation: !!!!"
|
||||||
echo "!!!! https://docs.buanet.de/iobroker-docker-image/docs/ !!!!"
|
echo "!!!! https://docs.buanet.de/iobroker-docker-image/docs/ !!!!"
|
||||||
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
|
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
|
||||||
echo ' '
|
echo " "
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#####
|
#####
|
||||||
@@ -127,7 +127,7 @@ fi
|
|||||||
echo "$(printf -- '-%.0s' {1..80})"
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
echo "----- Step 1 of 5: Preparing container -----"
|
echo "----- Step 1 of 5: Preparing container -----"
|
||||||
echo "$(printf -- '-%.0s' {1..80})"
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
echo ' '
|
echo " "
|
||||||
|
|
||||||
# Actions running on first start only
|
# Actions running on first start only
|
||||||
if [[ -f /opt/.first_run ]]; then
|
if [[ -f /opt/.first_run ]]; then
|
||||||
@@ -137,25 +137,25 @@ if [[ -f /opt/.first_run ]]; then
|
|||||||
else
|
else
|
||||||
bash /opt/scripts/setup_packages.sh -update
|
bash /opt/scripts/setup_packages.sh -update
|
||||||
fi
|
fi
|
||||||
echo ' '
|
echo " "
|
||||||
# Installing packages from ENV
|
# Installing packages from ENV
|
||||||
if [[ "$packages" != "" && "$offlinemode" = "true" ]]; then
|
if [[ "$packages" != "" && "$offlinemode" = "true" ]]; then
|
||||||
echo "PACKAGES is set, but OFFLINE_MODE is \"true\". Skipping Linux package installation."
|
echo "PACKAGES is set, but OFFLINE_MODE is \"true\". Skipping Linux package installation."
|
||||||
elif [[ "$packages" != "" ]]; then
|
elif [[ "$packages" != "" ]]; then
|
||||||
echo "PACKAGES is set. Installing the following additional Linux packages: ""$packages"
|
echo "PACKAGES is set. Installing the following additional Linux packages: ""$packages"
|
||||||
echo "$packages" > /opt/scripts/.docker_config/.packages
|
|
||||||
bash /opt/scripts/setup_packages.sh -install
|
bash /opt/scripts/setup_packages.sh -install
|
||||||
fi
|
fi
|
||||||
|
echo " "
|
||||||
# Register maintenance script
|
# Register maintenance script
|
||||||
echo -n 'Registering maintenance script as command... '
|
echo -n "Registering maintenance script as command... "
|
||||||
echo "alias maintenance=\'/opt/scripts/maintenance.sh\'" >> /root/.bashrc
|
echo "alias maintenance='/opt/scripts/maintenance.sh'" >> /etc/bash.bashrc
|
||||||
echo "alias maint=\'/opt/scripts/maintenance.sh\'" >> /root/.bashrc
|
echo "alias maint='/opt/scripts/maintenance.sh'" >> /etc/bash.bashrc
|
||||||
echo "alias m=\'/opt/scripts/maintenance.sh\'" >> /root/.bashrc
|
echo "alias m='/opt/scripts/maintenance.sh'" >> /etc/bash.bashrc
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "This is not the first run of this container. Skipping first run preparation."
|
echo "This is not the first run of this container. Skipping first run preparation."
|
||||||
fi
|
fi
|
||||||
echo ' '
|
echo " "
|
||||||
|
|
||||||
# Setting UID and/ or GID
|
# Setting UID and/ or GID
|
||||||
if [[ "$setgid" != "$(cat /etc/group | grep 'iobroker:' | cut -d':' -f3)" || "$setuid" != "$(cat /etc/passwd | grep 'iobroker:' | cut -d':' -f3)" ]]; then
|
if [[ "$setgid" != "$(cat /etc/group | grep 'iobroker:' | cut -d':' -f3)" || "$setuid" != "$(cat /etc/passwd | grep 'iobroker:' | cut -d':' -f3)" ]]; then
|
||||||
@@ -163,8 +163,8 @@ if [[ "$setgid" != "$(cat /etc/group | grep 'iobroker:' | cut -d':' -f3)" || "$s
|
|||||||
echo -n "Changing UID to \"""$setuid""\" and GID to \"""$setgid""\"... "
|
echo -n "Changing UID to \"""$setuid""\" and GID to \"""$setgid""\"... "
|
||||||
usermod -u "$setuid" iobroker
|
usermod -u "$setuid" iobroker
|
||||||
groupmod -og "$setgid" iobroker
|
groupmod -og "$setgid" iobroker
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Change directory for next steps
|
# Change directory for next steps
|
||||||
@@ -176,13 +176,13 @@ cd /opt/iobroker
|
|||||||
echo "$(printf -- '-%.0s' {1..80})"
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
echo "----- Step 2 of 5: Detecting ioBroker installation -----"
|
echo "----- Step 2 of 5: Detecting ioBroker installation -----"
|
||||||
echo "$(printf -- '-%.0s' {1..80})"
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
echo ' '
|
echo " "
|
||||||
|
|
||||||
if [[ `find /opt/iobroker -type f | wc -l` -lt 1 ]]; then
|
if [[ `find /opt/iobroker -type f | wc -l` -lt 1 ]]; then
|
||||||
echo "There is no data detected in /opt/iobroker."
|
echo "There is no data detected in /opt/iobroker."
|
||||||
echo -n "Restoring initial ioBroker installation... "
|
echo -n "Restoring initial ioBroker installation... "
|
||||||
tar -xf /opt/initial_iobroker.tar -C /
|
tar -xf /opt/initial_iobroker.tar -C /
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
elif [[ -f /opt/iobroker/iobroker ]]; then
|
elif [[ -f /opt/iobroker/iobroker ]]; then
|
||||||
echo "Existing installation of ioBroker detected in \"/opt/iobroker\"."
|
echo "Existing installation of ioBroker detected in \"/opt/iobroker\"."
|
||||||
elif [[ "$(ls *_backupiobroker.tar.gz 2> /dev/null | wc -l)" != "0" && "$(tar -ztvf /opt/iobroker/*_backupiobroker.tar.gz "backup/backup.json" 2> /dev/null | wc -l)" != "0" ]]; then
|
elif [[ "$(ls *_backupiobroker.tar.gz 2> /dev/null | wc -l)" != "0" && "$(tar -ztvf /opt/iobroker/*_backupiobroker.tar.gz "backup/backup.json" 2> /dev/null | wc -l)" != "0" ]]; then
|
||||||
@@ -192,7 +192,7 @@ elif [[ "$(ls *_backupiobroker.tar.gz 2> /dev/null | wc -l)" != "0" && "$(tar -z
|
|||||||
echo "IoBroker will start with a fresh installation, while your backup file will be copied into the backup directory."
|
echo "IoBroker will start with a fresh installation, while your backup file will be copied into the backup directory."
|
||||||
echo "You will be able to restore your backup file manually by using the backitup adapter or the containers maintenance script."
|
echo "You will be able to restore your backup file manually by using the backitup adapter or the containers maintenance script."
|
||||||
echo "For more information see ioBroker Docker Image Docs (https://docs.buanet.de/iobroker-docker-image/docs/)."
|
echo "For more information see ioBroker Docker Image Docs (https://docs.buanet.de/iobroker-docker-image/docs/)."
|
||||||
echo ' '
|
echo " "
|
||||||
echo -n "Copying backup file and restoring initial ioBroker installation... "
|
echo -n "Copying backup file and restoring initial ioBroker installation... "
|
||||||
mv /opt/iobroker/*.tar.gz /opt/
|
mv /opt/iobroker/*.tar.gz /opt/
|
||||||
tar -xf /opt/initial_iobroker.tar -C /
|
tar -xf /opt/initial_iobroker.tar -C /
|
||||||
@@ -200,7 +200,7 @@ elif [[ "$(ls *_backupiobroker.tar.gz 2> /dev/null | wc -l)" != "0" && "$(tar -z
|
|||||||
mv /opt/*.tar.gz /opt/iobroker/backups/
|
mv /opt/*.tar.gz /opt/iobroker/backups/
|
||||||
# fixing permission errors during restore
|
# fixing permission errors during restore
|
||||||
chown -R "$setuid":"$setgid" /opt/iobroker
|
chown -R "$setuid":"$setgid" /opt/iobroker
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "There is data detected in /opt/iobroker but it looks like it is no instance of ioBroker!"
|
echo "There is data detected in /opt/iobroker but it looks like it is no instance of ioBroker!"
|
||||||
if [[ "$debug" == "true" ]]; then
|
if [[ "$debug" == "true" ]]; then
|
||||||
@@ -210,7 +210,7 @@ else
|
|||||||
echo "Please check/ recreate mounted folder or volume and try again."
|
echo "Please check/ recreate mounted folder or volume and try again."
|
||||||
stop_on_error
|
stop_on_error
|
||||||
fi
|
fi
|
||||||
echo ' '
|
echo " "
|
||||||
|
|
||||||
#####
|
#####
|
||||||
# STEP 3 - Checking ioBroker-Installation
|
# STEP 3 - Checking ioBroker-Installation
|
||||||
@@ -218,7 +218,7 @@ echo ' '
|
|||||||
echo "$(printf -- '-%.0s' {1..80})"
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
echo "----- Step 3 of 5: Checking ioBroker installation -----"
|
echo "----- Step 3 of 5: Checking ioBroker installation -----"
|
||||||
echo "$(printf -- '-%.0s' {1..80})"
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
echo ' '
|
echo " "
|
||||||
|
|
||||||
# (Re)Setting permissions to "/opt/iobroker" and "/opt/scripts"
|
# (Re)Setting permissions to "/opt/iobroker" and "/opt/scripts"
|
||||||
if [[ "$permissioncheck" == "false" ]]; then
|
if [[ "$permissioncheck" == "false" ]]; then
|
||||||
@@ -227,17 +227,17 @@ else
|
|||||||
echo -n "(Re)setting permissions (This might take a while! Please be patient!)... "
|
echo -n "(Re)setting permissions (This might take a while! Please be patient!)... "
|
||||||
chown -R "$setuid":"$setgid" /opt/iobroker
|
chown -R "$setuid":"$setgid" /opt/iobroker
|
||||||
chown -R "$setuid":"$setgid" /opt/scripts
|
chown -R "$setuid":"$setgid" /opt/scripts
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
fi
|
fi
|
||||||
echo ' '
|
echo " "
|
||||||
|
|
||||||
# Backing up original iobroker-file and changing sudo to gosu
|
# Backing up original iobroker-file and changing sudo to gosu
|
||||||
echo -n "Fixing \"sudo-bug\" by replacing sudo with gosu... "
|
echo -n "Fixing \"sudo-bug\" by replacing sudo with gosu... "
|
||||||
cp -a /opt/iobroker/iobroker /opt/iobroker/iobroker.bak
|
cp -a /opt/iobroker/iobroker /opt/iobroker/iobroker.bak
|
||||||
chmod 755 /opt/iobroker/iobroker
|
chmod 755 /opt/iobroker/iobroker
|
||||||
sed -i 's/sudo -H -u/gosu/g' /opt/iobroker/iobroker
|
sed -i 's/sudo -H -u/gosu/g' /opt/iobroker/iobroker
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
|
|
||||||
# Checking multihost and db setup
|
# Checking multihost and db setup
|
||||||
if [[ "$multihost" == "master" || "$multihost" == "slave" ]]; then
|
if [[ "$multihost" == "master" || "$multihost" == "slave" ]]; then
|
||||||
@@ -261,7 +261,7 @@ elif [[ "$multihost" == "" || "$multihost" == "false" ]]; then
|
|||||||
echo "[DEBUG] Checking multihost settings... "
|
echo "[DEBUG] Checking multihost settings... "
|
||||||
echo "[DEBUG] No multihost settings detected."
|
echo "[DEBUG] No multihost settings detected."
|
||||||
echo "[DEBUG] Done."
|
echo "[DEBUG] Done."
|
||||||
echo ' '
|
echo " "
|
||||||
fi
|
fi
|
||||||
# checking custom objects db settings
|
# checking custom objects db settings
|
||||||
if [[ "$objectsdbtype" != "" || "$objectsdbhost" != "" || "$objectsdbport" != "" ]]; then
|
if [[ "$objectsdbtype" != "" || "$objectsdbhost" != "" || "$objectsdbport" != "" ]]; then
|
||||||
@@ -276,7 +276,7 @@ elif [[ "$multihost" == "" || "$multihost" == "false" ]]; then
|
|||||||
echo "[DEBUG] Checking custom objects db settings... "
|
echo "[DEBUG] Checking custom objects db settings... "
|
||||||
echo "[DEBUG] No custom objects db settings detected."
|
echo "[DEBUG] No custom objects db settings detected."
|
||||||
echo "[DEBUG] Done."
|
echo "[DEBUG] Done."
|
||||||
echo ' '
|
echo " "
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
# checking custom states db settings
|
# checking custom states db settings
|
||||||
@@ -292,7 +292,7 @@ elif [[ "$multihost" == "" || "$multihost" == "false" ]]; then
|
|||||||
echo "[DEBUG] Checking custom states db settings... "
|
echo "[DEBUG] Checking custom states db settings... "
|
||||||
echo "[DEBUG] No custom states db settings detected."
|
echo "[DEBUG] No custom states db settings detected."
|
||||||
echo "[DEBUG] Done."
|
echo "[DEBUG] Done."
|
||||||
echo ' '
|
echo " "
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
@@ -316,14 +316,14 @@ if [[ -f /opt/iobroker/.fresh_install && "$multihost" != "slave" ]]; then
|
|||||||
echo "Please check your configuration and try again."
|
echo "Please check your configuration and try again."
|
||||||
stop_on_error
|
stop_on_error
|
||||||
fi
|
fi
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
else
|
else
|
||||||
echo -n "Checking Database connection... "
|
echo -n "Checking Database connection... "
|
||||||
set +e
|
set +e
|
||||||
if iob uuid &> /dev/null; then
|
if iob uuid &> /dev/null; then
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
else
|
else
|
||||||
errormsg=$(iob uuid 2>&1 | sed 's/^/[DEBUG] /')
|
errormsg=$(iob uuid 2>&1 | sed 's/^/[DEBUG] /')
|
||||||
echo "Failed."
|
echo "Failed."
|
||||||
@@ -341,7 +341,7 @@ fi
|
|||||||
# hostname check
|
# hostname check
|
||||||
if [[ "$multihost" == "slave" ]]; then
|
if [[ "$multihost" == "slave" ]]; then
|
||||||
echo "IOB_MULTIHOST is set to \"slave\". Hostname check will be skipped."
|
echo "IOB_MULTIHOST is set to \"slave\". Hostname check will be skipped."
|
||||||
echo ' '
|
echo " "
|
||||||
else
|
else
|
||||||
# get admin instance and hostname
|
# get admin instance and hostname
|
||||||
set +e
|
set +e
|
||||||
@@ -372,12 +372,12 @@ else
|
|||||||
echo "Hostname in ioBroker does not match the hostname of this container."
|
echo "Hostname in ioBroker does not match the hostname of this container."
|
||||||
echo -n "Updating hostname to \"""$(hostname)""\"... "
|
echo -n "Updating hostname to \"""$(hostname)""\"... "
|
||||||
bash iobroker host "$adminhostname"
|
bash iobroker host "$adminhostname"
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
elif [[ "$adminhostname" = "$(hostname)" ]]; then
|
elif [[ "$adminhostname" = "$(hostname)" ]]; then
|
||||||
echo "Hostname in ioBroker matches the hostname of this container."
|
echo "Hostname in ioBroker matches the hostname of this container."
|
||||||
echo "No action required."
|
echo "No action required."
|
||||||
echo ' '
|
echo " "
|
||||||
else
|
else
|
||||||
echo "There was a problem checking the hostname."
|
echo "There was a problem checking the hostname."
|
||||||
stop_on_error
|
stop_on_error
|
||||||
@@ -387,7 +387,7 @@ fi
|
|||||||
# extended debug output
|
# extended debug output
|
||||||
if [[ "$debug" == "true" && "$multihost" != "slave" ]]; then
|
if [[ "$debug" == "true" && "$multihost" != "slave" ]]; then
|
||||||
echo "[DEBUG] Collecting some more ioBroker debug information... "
|
echo "[DEBUG] Collecting some more ioBroker debug information... "
|
||||||
echo ' '
|
echo " "
|
||||||
# get information and send to array
|
# get information and send to array
|
||||||
IFS=$'\n'
|
IFS=$'\n'
|
||||||
instances_array=("$(iob list instances)")
|
instances_array=("$(iob list instances)")
|
||||||
@@ -399,19 +399,19 @@ if [[ "$debug" == "true" && "$multihost" != "slave" ]]; then
|
|||||||
do
|
do
|
||||||
echo "$i"
|
echo "$i"
|
||||||
done
|
done
|
||||||
echo ' '
|
echo " "
|
||||||
echo "[DEBUG] ##### iobroker repo list #####"
|
echo "[DEBUG] ##### iobroker repo list #####"
|
||||||
for i in "${repos_array[@]}"
|
for i in "${repos_array[@]}"
|
||||||
do
|
do
|
||||||
echo "$i"
|
echo "$i"
|
||||||
done
|
done
|
||||||
echo ' '
|
echo " "
|
||||||
echo "[DEBUG] ##### iobroker update #####"
|
echo "[DEBUG] ##### iobroker update #####"
|
||||||
for i in "${updates_array[@]}"
|
for i in "${updates_array[@]}"
|
||||||
do
|
do
|
||||||
echo "$i"
|
echo "$i"
|
||||||
done
|
done
|
||||||
echo ' '
|
echo " "
|
||||||
unset IFS
|
unset IFS
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -421,11 +421,11 @@ fi
|
|||||||
echo "$(printf -- '-%.0s' {1..80})"
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
echo "----- Step 4 of 5: Applying special settings -----"
|
echo "----- Step 4 of 5: Applying special settings -----"
|
||||||
echo "$(printf -- '-%.0s' {1..80})"
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
echo ' '
|
echo " "
|
||||||
|
|
||||||
echo "Some adapters have special requirements/ settings which can be activated by the use of environment variables."
|
echo "Some adapters have special requirements/ settings which can be activated by the use of environment variables."
|
||||||
echo "For more information see ioBroker Docker Image Docs (https://docs.buanet.de/iobroker-docker-image/docs/)."
|
echo "For more information see ioBroker Docker Image Docs (https://docs.buanet.de/iobroker-docker-image/docs/)."
|
||||||
echo ' '
|
echo " "
|
||||||
|
|
||||||
# Checking ENV for Adminport
|
# Checking ENV for Adminport
|
||||||
if [[ "$adminport" != "" && "$multihost" != "slave" ]]; then
|
if [[ "$adminport" != "" && "$multihost" != "slave" ]]; then
|
||||||
@@ -436,17 +436,17 @@ if [[ "$adminport" != "" && "$multihost" != "slave" ]]; then
|
|||||||
if [[ "$debug" == "true" ]]; then echo "[DEBUG] Detected Admin Port in ioBroker: " "$adminportold"; fi
|
if [[ "$debug" == "true" ]]; then echo "[DEBUG] Detected Admin Port in ioBroker: " "$adminportold"; fi
|
||||||
echo "Setting Adminport to \"""$adminport""\"... "
|
echo "Setting Adminport to \"""$adminport""\"... "
|
||||||
bash iobroker set "$admininstanceshort" --port "$adminport"
|
bash iobroker set "$admininstanceshort" --port "$adminport"
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Checking ENV for Backitup (external database backups)
|
# Checking ENV for Backitup (external database backups)
|
||||||
if [[ "$backitup" == "true" ]]; then
|
if [[ "$backitup" == "true" ]]; then
|
||||||
echo -n "IOB_BACKITUP_EXTDB is \"true\". Unlocking features... "
|
echo -n "IOB_BACKITUP_EXTDB is \"true\". Unlocking features..."
|
||||||
echo 'true' > /opt/scripts/.docker_config/.backitup
|
echo "true" > /opt/scripts/.docker_config/.backitup
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Checking ENV for AVAHI
|
# Checking ENV for AVAHI
|
||||||
@@ -456,8 +456,8 @@ elif [[ "$avahi" = "true" ]]; then
|
|||||||
echo "AVAHI is \"true\". Running setup script... "
|
echo "AVAHI is \"true\". Running setup script... "
|
||||||
chmod 755 /opt/scripts/setup_avahi.sh
|
chmod 755 /opt/scripts/setup_avahi.sh
|
||||||
bash /opt/scripts/setup_avahi.sh
|
bash /opt/scripts/setup_avahi.sh
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Checking ENV for Z-WAVE
|
# Checking ENV for Z-WAVE
|
||||||
@@ -467,8 +467,8 @@ elif [[ "$zwave" = "true" ]]; then
|
|||||||
echo "ZWAVE is \"true\". Running setup script... "
|
echo "ZWAVE is \"true\". Running setup script... "
|
||||||
chmod 755 /opt/scripts/setup_zwave.sh
|
chmod 755 /opt/scripts/setup_zwave.sh
|
||||||
bash /opt/scripts/setup_zwave.sh
|
bash /opt/scripts/setup_zwave.sh
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# checking ENV for USBDEVICES
|
# checking ENV for USBDEVICES
|
||||||
@@ -481,7 +481,7 @@ if [[ "$usbdevices" != "" && "$usbdevices" != "none" ]]; then
|
|||||||
echo -n "Setting permissions for \"""$i""\"... "
|
echo -n "Setting permissions for \"""$i""\"... "
|
||||||
chown root:dialout "$i"
|
chown root:dialout "$i"
|
||||||
chmod g+rw "$i"
|
chmod g+rw "$i"
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
if [[ "$debug" == "true" ]]; then echo "[DEBUG] Permissions set: " "$(ls -al "$i")"; fi
|
if [[ "$debug" == "true" ]]; then echo "[DEBUG] Permissions set: " "$(ls -al "$i")"; fi
|
||||||
else
|
else
|
||||||
echo "Looks like the device \"""$i""\" does not exist."
|
echo "Looks like the device \"""$i""\" does not exist."
|
||||||
@@ -490,7 +490,7 @@ if [[ "$usbdevices" != "" && "$usbdevices" != "none" ]]; then
|
|||||||
stop_on_error
|
stop_on_error
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
echo ' '
|
echo " "
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Checking for Userscripts in /opt/userscripts
|
# Checking for Userscripts in /opt/userscripts
|
||||||
@@ -499,23 +499,23 @@ if [[ $(find /opt/userscripts -type f | wc -l) -lt 1 ]]; then
|
|||||||
tar -xf /opt/initial_userscripts.tar -C /
|
tar -xf /opt/initial_userscripts.tar -C /
|
||||||
chmod 755 /opt/userscripts/userscript_firststart_example.sh
|
chmod 755 /opt/userscripts/userscript_firststart_example.sh
|
||||||
chmod 755 /opt/userscripts/userscript_everystart_example.sh
|
chmod 755 /opt/userscripts/userscript_everystart_example.sh
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
elif [[ -f /opt/userscripts/userscript_firststart.sh || -f /opt/userscripts/userscript_everystart.sh ]]; then
|
elif [[ -f /opt/userscripts/userscript_firststart.sh || -f /opt/userscripts/userscript_everystart.sh ]]; then
|
||||||
if [[ -f /opt/userscripts/userscript_firststart.sh && -f /opt/.first_run ]]; then
|
if [[ -f /opt/userscripts/userscript_firststart.sh && -f /opt/.first_run ]]; then
|
||||||
echo "Userscript for first start detected and this is the first start of a new container."
|
echo "Userscript for first start detected and this is the first start of a new container."
|
||||||
echo "Running userscript_firststart.sh... "
|
echo "Running userscript_firststart.sh... "
|
||||||
chmod 755 /opt/userscripts/userscript_firststart.sh
|
chmod 755 /opt/userscripts/userscript_firststart.sh
|
||||||
bash /opt/userscripts/userscript_firststart.sh
|
bash /opt/userscripts/userscript_firststart.sh
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
fi
|
fi
|
||||||
if [[ -f /opt/userscripts/userscript_everystart.sh ]]; then
|
if [[ -f /opt/userscripts/userscript_everystart.sh ]]; then
|
||||||
echo "Userscript for every start detected. Running userscript_everystart.sh... "
|
echo "Userscript for every start detected. Running userscript_everystart.sh... "
|
||||||
chmod 755 /opt/userscripts/userscript_everystart.sh
|
chmod 755 /opt/userscripts/userscript_everystart.sh
|
||||||
bash /opt/userscripts/userscript_everystart.sh
|
bash /opt/userscripts/userscript_everystart.sh
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
echo ' '
|
echo " "
|
||||||
|
|
||||||
# Removing first run an fresh install markers when exists
|
# Removing first run an fresh install markers when exists
|
||||||
if [[ -f /opt/.first_run ]]; then rm -f /opt/.first_run; fi
|
if [[ -f /opt/.first_run ]]; then rm -f /opt/.first_run; fi
|
||||||
@@ -527,9 +527,9 @@ if [[ -f /opt/iobroker/.fresh_install ]]; then rm -f /opt/iobroker/.fresh_instal
|
|||||||
echo "$(printf -- '-%.0s' {1..80})"
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
echo "----- Step 5 of 5: ioBroker startup -----"
|
echo "----- Step 5 of 5: ioBroker startup -----"
|
||||||
echo "$(printf -- '-%.0s' {1..80})"
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
echo ' '
|
echo " "
|
||||||
echo "Starting ioBroker... "
|
echo "Starting ioBroker... "
|
||||||
echo ' '
|
echo " "
|
||||||
echo "##### #### ### ## # iobroker.js-controller log output # ## ### #### #####"
|
echo "##### #### ### ## # iobroker.js-controller log output # ## ### #### #####"
|
||||||
|
|
||||||
# Setting healthcheck status to "running"
|
# Setting healthcheck status to "running"
|
||||||
@@ -537,7 +537,7 @@ echo "running" > /opt/scripts/.docker_config/.healthcheck
|
|||||||
|
|
||||||
# Function for graceful shutdown by SIGTERM signal
|
# Function for graceful shutdown by SIGTERM signal
|
||||||
shut_down() {
|
shut_down() {
|
||||||
echo ' '
|
echo " "
|
||||||
echo "Recived termination signal (SIGTERM)."
|
echo "Recived termination signal (SIGTERM)."
|
||||||
echo "Shutting down ioBroker... "
|
echo "Shutting down ioBroker... "
|
||||||
|
|
||||||
@@ -557,13 +557,13 @@ shut_down() {
|
|||||||
# pgrep exits with status 1 when there are no matches
|
# pgrep exits with status 1 when there are no matches
|
||||||
while pgrep -u iobroker > /dev/null; (( $? != 1 )); do
|
while pgrep -u iobroker > /dev/null; (( $? != 1 )); do
|
||||||
if (($(date +%s) > timeout)); then
|
if (($(date +%s) > timeout)); then
|
||||||
echo -e '\nTimeout reached. Killing remaining processes... '
|
echo -e "\nTimeout reached. Killing remaining processes... "
|
||||||
pkill --signal SIGKILL -u iobroker
|
pkill --signal SIGKILL -u iobroker
|
||||||
echo 'Done. Have a nice day!'
|
echo "Done. Have a nice day!"
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo -n '.'
|
echo -n "."
|
||||||
sleep 1
|
sleep 1
|
||||||
done
|
done
|
||||||
|
|
||||||
@@ -10,27 +10,27 @@ pkill_timeout=10 # timeout for stopping iobroker in seconds
|
|||||||
|
|
||||||
# display help text
|
# display help text
|
||||||
display_help() {
|
display_help() {
|
||||||
echo 'This script helps you manage your ioBroker container!'
|
echo "This script helps you manage your ioBroker container!"
|
||||||
echo ''
|
echo " "
|
||||||
echo "Usage: maintenance [ COMMAND ] [ OPTION ]"
|
echo "Usage: maintenance [ COMMAND ] [ OPTION ]"
|
||||||
echo " maint [ COMMAND ] [ OPTION ]"
|
echo " maint [ COMMAND ] [ OPTION ]"
|
||||||
echo " m [ COMMAND ] [ OPTION ]"
|
echo " m [ COMMAND ] [ OPTION ]"
|
||||||
echo ''
|
echo " "
|
||||||
echo 'COMMANDS'
|
echo "COMMANDS"
|
||||||
echo '------------------'
|
echo "------------------"
|
||||||
echo ' status > reports the current state of maintenance mode'
|
echo " status > reports the current state of maintenance mode"
|
||||||
echo ' on > switches mantenance mode ON'
|
echo " on > switches mantenance mode ON"
|
||||||
echo ' off > switches mantenance mode OFF and stops or restarts the container'
|
echo " off > switches mantenance mode OFF and stops or restarts the container"
|
||||||
echo ' upgrade > puts the container to maintenance mode and upgrades ioBroker'
|
echo " upgrade > puts the container to maintenance mode and upgrades ioBroker"
|
||||||
echo ' restart > stops iobroker and stops or restarts the container'
|
echo " restart > stops iobroker and stops or restarts the container"
|
||||||
echo ' restore > stops iobroker and restores the last backup'
|
echo " restore > stops iobroker and restores the last backup"
|
||||||
echo ' help > shows this help'
|
echo " help > shows this help"
|
||||||
echo ''
|
echo " "
|
||||||
echo 'OPTIONS'
|
echo "OPTIONS"
|
||||||
echo '------------------'
|
echo "------------------"
|
||||||
echo ' -y|--yes > confirms the used command without asking'
|
echo " -y|--yes > confirms the used command without asking"
|
||||||
echo ' -h|--help > shows this help'
|
echo " -h|--help > shows this help"
|
||||||
echo ''
|
echo " "
|
||||||
}
|
}
|
||||||
|
|
||||||
# check maintenance enabled
|
# check maintenance enabled
|
||||||
@@ -38,69 +38,58 @@ maintenance_enabled() {
|
|||||||
[[ -f "$healthcheck" && "$(cat "$healthcheck")" == maintenance ]]
|
[[ -f "$healthcheck" && "$(cat "$healthcheck")" == maintenance ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# check status starting
|
||||||
|
check_starting() {
|
||||||
|
[[ -f "$healthcheck" && "$(cat "$healthcheck")" == starting ]]
|
||||||
|
}
|
||||||
|
|
||||||
# display maintenance status
|
# display maintenance status
|
||||||
maintenance_status() {
|
maintenance_status() {
|
||||||
if maintenance_enabled; then
|
if maintenance_enabled; then
|
||||||
echo 'Maintenance mode is turned ON.'
|
echo "Maintenance mode is turned ON."
|
||||||
else
|
else
|
||||||
echo 'Maintenance mode is turned OFF.'
|
echo "Maintenance mode is turned OFF."
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# enable maintenance mode
|
# enable maintenance mode
|
||||||
enable_maintenance() {
|
enable_maintenance() {
|
||||||
if maintenance_enabled; then
|
if maintenance_enabled; then
|
||||||
echo 'Maintenance mode is already turned ON.'
|
echo "Maintenance mode is already turned ON."
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$killbyname" == yes ]]; then
|
echo "You are now going to stop ioBroker and activate maintenance mode for this container."
|
||||||
# undocumented option, only for use with backitup restore scripts
|
|
||||||
# stops iobroker by terminating js-controller process by name (the old way)
|
|
||||||
echo 'This command will activate maintenance mode and stop js-controller.'
|
|
||||||
echo 'Activating maintenance mode...'
|
|
||||||
echo 'maintenance' > "$healthcheck"
|
|
||||||
sleep 1
|
|
||||||
echo 'Done.'
|
|
||||||
echo -n 'Stopping ioBroker...'
|
|
||||||
pkill -u iobroker -f iobroker.js-controller
|
|
||||||
sleep 5
|
|
||||||
echo 'Done.'
|
|
||||||
return
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo 'You are now going to stop ioBroker and activate maintenance mode for this container.'
|
if [[ "$killbyname" != yes ]]; then
|
||||||
|
if [[ "$autoconfirm" != yes ]]; then
|
||||||
|
local reply
|
||||||
|
|
||||||
if [[ "$autoconfirm" != yes ]]; then
|
read -rp 'Do you want to continue [yes/no]? ' reply
|
||||||
local reply
|
if [[ "$reply" == y || "$reply" == Y || "$reply" == yes ]]; then
|
||||||
|
|
||||||
read -rp 'Do you want to continue [yes/no]? ' reply
|
|
||||||
if [[ "$reply" == y || "$reply" == Y || "$reply" == yes ]]; then
|
|
||||||
: # continue
|
: # continue
|
||||||
else
|
else
|
||||||
return 1
|
return 1
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
echo 'This command was already confirmed by the -y or --yes option.'
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo 'Activating maintenance mode...'
|
echo "Activating maintenance mode..."
|
||||||
echo 'maintenance' > "$healthcheck"
|
echo "maintenance" > "$healthcheck"
|
||||||
sleep 1
|
sleep 1
|
||||||
echo 'Done.'
|
echo -n "Stopping ioBroker..."
|
||||||
echo -n 'Stopping ioBroker...'
|
|
||||||
stop_iob
|
stop_iob
|
||||||
}
|
}
|
||||||
|
|
||||||
# disable maintenance mode
|
# disable maintenance mode
|
||||||
disable_maintenance() {
|
disable_maintenance() {
|
||||||
if ! maintenance_enabled; then
|
if ! maintenance_enabled; then
|
||||||
echo 'Maintenance mode is already turned OFF.'
|
echo "Maintenance mode is already turned OFF."
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo 'You are now going to deactivate maintenance mode for this container.'
|
echo "You are now going to deactivate maintenance mode for this container."
|
||||||
echo 'Depending on the restart policy, your container will be stopped or restarted immediately.'
|
echo "Depending on the restart policy, your container will be stopped or restarted immediately."
|
||||||
|
|
||||||
if [[ "$autoconfirm" != yes ]]; then
|
if [[ "$autoconfirm" != yes ]]; then
|
||||||
local reply
|
local reply
|
||||||
@@ -111,22 +100,20 @@ disable_maintenance() {
|
|||||||
else
|
else
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
echo 'This command was already confirmed by the -y or --yes option.'
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo 'Deactivating maintenance mode and forcing container to stop or restart...'
|
echo "Deactivating maintenance mode and forcing container to stop or restart..."
|
||||||
echo 'stopping' > "$healthcheck"
|
echo "stopping" > "$healthcheck"
|
||||||
pkill -u root
|
gosu root pkill -u root
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
}
|
}
|
||||||
|
|
||||||
# upgrade js-controller
|
# upgrade js-controller
|
||||||
upgrade_jscontroller() {
|
upgrade_jscontroller() {
|
||||||
echo 'You are now going to upgrade your js-controller.'
|
echo "You are now going to upgrade your js-controller."
|
||||||
echo 'As this will change data in /opt/iobroker, make sure you have a backup!'
|
echo "As this will change data in /opt/iobroker, make sure you have a backup!"
|
||||||
echo 'During the upgrade process, the container will automatically switch into maintenance mode and stop ioBroker.'
|
echo "During the upgrade process, the container will automatically switch into maintenance mode and stop ioBroker."
|
||||||
echo 'Depending on the restart policy, your container will be stopped or restarted automatically after the upgrade.'
|
echo "Depending on the restart policy, your container will be stopped or restarted automatically after the upgrade."
|
||||||
|
|
||||||
if [[ "$autoconfirm" != yes ]]; then
|
if [[ "$autoconfirm" != yes ]]; then
|
||||||
local reply
|
local reply
|
||||||
@@ -137,8 +124,6 @@ upgrade_jscontroller() {
|
|||||||
else
|
else
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
echo 'This command was already confirmed by the -y or --yes option.'
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! maintenance_enabled > /dev/null; then
|
if ! maintenance_enabled > /dev/null; then
|
||||||
@@ -146,17 +131,17 @@ upgrade_jscontroller() {
|
|||||||
enable_maintenance
|
enable_maintenance
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo 'Upgrading js-controller...'
|
echo "Upgrading js-controller..."
|
||||||
iobroker update
|
iobroker update
|
||||||
sleep 1
|
sleep 1
|
||||||
iobroker upgrade self
|
iobroker upgrade self
|
||||||
sleep 1
|
sleep 1
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
|
|
||||||
echo 'Container will be stopped or restarted in 5 seconds...'
|
echo "Container will be stopped or restarted in 5 seconds..."
|
||||||
sleep 5
|
sleep 5
|
||||||
echo 'stopping' > "$healthcheck"
|
echo "stopping" > "$healthcheck"
|
||||||
pkill -u root
|
gosu root pkill -u root
|
||||||
}
|
}
|
||||||
|
|
||||||
# stop iobroker and wait until all processes stopped or pkill_timeout is reached
|
# stop iobroker and wait until all processes stopped or pkill_timeout is reached
|
||||||
@@ -164,37 +149,41 @@ stop_iob() {
|
|||||||
local status timeout
|
local status timeout
|
||||||
|
|
||||||
timeout="$(date --date="now + $pkill_timeout sec" +%s)"
|
timeout="$(date --date="now + $pkill_timeout sec" +%s)"
|
||||||
pkill -u iobroker -f iobroker.js-controller
|
pkill -u iobroker -f 'iobroker.js-controller[^/]*$'
|
||||||
status=$?
|
status=$?
|
||||||
if (( status >= 2 )); then # syntax error or fatal error
|
if (( status >= 2 )); then # syntax error or fatal error
|
||||||
return 1
|
return 1
|
||||||
fi
|
elif (( status == 1 )); then # no processes matched
|
||||||
|
|
||||||
if (( status == 1 )); then # no processes matched
|
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# pgrep exits with status 1 when there are no matches
|
if [[ "$killbyname" != yes ]]; then
|
||||||
while pgrep -u iobroker > /dev/null; (( $? != 1 )); do
|
# pgrep exits with status 1 when there are no matches
|
||||||
if (($(date +%s) > timeout)); then
|
while pgrep -u iobroker -f 'io.' > /dev/null; (( $? != 1 )); do
|
||||||
echo -e '\nTimeout reached. Killing remaining processes...'
|
if (($(date +%s) > timeout)); then
|
||||||
pgrep --list-full -u iobroker
|
echo -e "\nTimeout reached. Killing remaining processes..."
|
||||||
pkill --signal SIGKILL -u iobroker
|
pgrep --list-full -u iobroker
|
||||||
echo 'Done.'
|
pkill --signal SIGKILL -u iobroker -f 'io.'
|
||||||
return
|
echo "\nDone."
|
||||||
fi
|
return
|
||||||
|
fi
|
||||||
|
sleep 1
|
||||||
|
echo -n "."
|
||||||
|
done
|
||||||
|
else
|
||||||
|
for ((i=0; i<3; i++)); do
|
||||||
|
sleep 1
|
||||||
|
echo -n "."
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
echo -n '.'
|
echo -e "Done."
|
||||||
sleep 1
|
|
||||||
done
|
|
||||||
|
|
||||||
echo -e '\nDone.'
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# restart container
|
# restart container
|
||||||
restart_container() {
|
restart_container() {
|
||||||
echo 'You are now going to call a restart of your container.'
|
echo "You are now going to call a restart of your container."
|
||||||
echo 'Restarting will work depending on the configured restart policy.'
|
echo "Restarting will work depending on the configured restart policy."
|
||||||
|
|
||||||
if [[ "$autoconfirm" != yes ]]; then
|
if [[ "$autoconfirm" != yes ]]; then
|
||||||
local reply
|
local reply
|
||||||
@@ -205,22 +194,24 @@ restart_container() {
|
|||||||
else
|
else
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
echo 'This command was already confirmed by the -y or --yes option.'
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo -n 'Stopping ioBroker...'
|
if ! maintenance_enabled > /dev/null; then
|
||||||
stop_iob
|
echo -n "Stopping ioBroker..."
|
||||||
|
stop_iob
|
||||||
|
fi
|
||||||
|
|
||||||
echo 'Container will be stopped or restarted in 5 seconds...'
|
echo "Container will be stopped or restarted in 5 seconds..."
|
||||||
sleep 5
|
sleep 5
|
||||||
echo 'stopping' > "$healthcheck"
|
echo "stopping" > "$healthcheck"
|
||||||
pkill -u root
|
gosu root pkill -u root
|
||||||
}
|
}
|
||||||
|
|
||||||
# restore iobroker
|
# restore iobroker
|
||||||
restore_iobroker() {
|
restore_iobroker() {
|
||||||
echo 'You are now going to perform a restore of your iobroker.'
|
echo "You are now going to perform a restore of your iobroker."
|
||||||
|
echo "During the restore process, the container will automatically switch into maintenance mode and stop ioBroker."
|
||||||
|
echo "Depending on the restart policy, your container will be stopped or restarted automatically after the restore."
|
||||||
|
|
||||||
if [[ "$autoconfirm" != yes ]]; then
|
if [[ "$autoconfirm" != yes ]]; then
|
||||||
local reply
|
local reply
|
||||||
@@ -231,15 +222,19 @@ restore_iobroker() {
|
|||||||
else
|
else
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
echo 'This command was already confirmed by the -y or --yes option.'
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo -n 'Stopping ioBroker...'
|
if check_starting > /dev/null; then
|
||||||
stop_iob
|
echo "Startup script is still running."
|
||||||
|
echo "Please check container log and wait until ioBroker is sucessfully started."
|
||||||
|
echo "Then try again."
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
# fixing permission errors during restore
|
if ! maintenance_enabled > /dev/null; then
|
||||||
#chown -R $setuid:$setgid /opt/iobroker/backup
|
autoconfirm=yes
|
||||||
|
enable_maintenance
|
||||||
|
fi
|
||||||
|
|
||||||
echo -n "Restoring ioBroker... "
|
echo -n "Restoring ioBroker... "
|
||||||
set +e
|
set +e
|
||||||
@@ -252,8 +247,8 @@ restore_iobroker() {
|
|||||||
echo "Please check backup file location and permissions and try again."
|
echo "Please check backup file location and permissions and try again."
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
|
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
|
||||||
echo "!!!! IMPORTANT NOTE !!!!"
|
echo "!!!! IMPORTANT NOTE !!!!"
|
||||||
echo "!!!! The maintenance script restored iobroker from a backup file. !!!!"
|
echo "!!!! The maintenance script restored iobroker from a backup file. !!!!"
|
||||||
@@ -263,10 +258,10 @@ restore_iobroker() {
|
|||||||
echo "!!!! You can view installation process by taking a look at ioBroker log. !!!!"
|
echo "!!!! You can view installation process by taking a look at ioBroker log. !!!!"
|
||||||
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
|
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
|
||||||
sleep 10
|
sleep 10
|
||||||
echo 'Container will be stopped or restarted in 5 seconds...'
|
echo "Container will be stopped or restarted in 10 seconds..."
|
||||||
sleep 5
|
sleep 10
|
||||||
echo 'stopping' > "$healthcheck"
|
echo "stopping" > "$healthcheck"
|
||||||
pkill -u root
|
gosu root pkill -u root
|
||||||
}
|
}
|
||||||
|
|
||||||
# parsing commands and options
|
# parsing commands and options
|
||||||
@@ -308,7 +303,7 @@ for arg in "$@"; do
|
|||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
>&2 echo "Unknown parameter: $arg"
|
>&2 echo "Unknown parameter: $arg"
|
||||||
>&2 echo 'Please try again or see help (help|-h|--help).'
|
>&2 echo "Please try again or see help (help|-h|--help)."
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
@@ -2,19 +2,19 @@
|
|||||||
|
|
||||||
if [ -e /usr/sbin/avahi-daemon ] && [ -e /var/run/dbus ]
|
if [ -e /usr/sbin/avahi-daemon ] && [ -e /var/run/dbus ]
|
||||||
then
|
then
|
||||||
echo '[setup_avahi.sh] Avahi is already installed. Nothing to do here.'
|
echo "[setup_avahi.sh] Avahi is already installed. Nothing to do here."
|
||||||
else
|
else
|
||||||
echo -n '[setup_avahi.sh] Avahi-daemon is NOT installed. Going to install it now... '
|
echo -n "[setup_avahi.sh] Avahi-daemon is NOT installed. Going to install it now... "
|
||||||
apt-get update > /opt/scripts/avahi_startup.log 2>&1
|
apt-get update > /opt/scripts/avahi_startup.log 2>&1
|
||||||
apt-get install -y libavahi-compat-libdnssd-dev avahi-daemon >> /opt/scripts/avahi_startup.log 2>&1
|
apt-get install -y --no-install-recommends libavahi-compat-libdnssd-dev avahi-daemon >> /opt/scripts/avahi_startup.log 2>&1
|
||||||
rm -rf /var/lib/apt/lists/* >> /opt/scripts/avahi_startup.log 2>&1
|
rm -rf /var/lib/apt/lists/* >> /opt/scripts/avahi_startup.log 2>&1
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo -n '[setup_avahi.sh] Configuring avahi-daemon... '
|
echo -n "[setup_avahi.sh] Configuring avahi-daemon... "
|
||||||
sed -i '/^rlimit-nproc/s/^\(.*\)/#\1/g' /etc/avahi/avahi-daemon.conf
|
sed -i '/^rlimit-nproc/s/^\(.*\)/#\1/g' /etc/avahi/avahi-daemon.conf
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo -n '[setup_avahi.sh] Configuring dbus... '
|
echo -n "[setup_avahi.sh] Configuring dbus... "
|
||||||
mkdir /var/run/dbus/
|
mkdir /var/run/dbus/
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -f /var/run/dbus/pid ];
|
if [ -f /var/run/dbus/pid ];
|
||||||
@@ -27,12 +27,12 @@ then
|
|||||||
rm -f /var/run/avahi-daemon//pid
|
rm -f /var/run/avahi-daemon//pid
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo -n '[setup_avahi.sh] Starting dbus... '
|
echo -n "[setup_avahi.sh] Starting dbus... "
|
||||||
dbus-daemon --system >> /opt/scripts/avahi_startup.log 2>&1
|
dbus-daemon --system >> /opt/scripts/avahi_startup.log 2>&1
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
|
|
||||||
echo -n '[setup_avahi.sh] Starting avahi-daemon... '
|
echo -n "[setup_avahi.sh] Starting avahi-daemon... "
|
||||||
/etc/init.d/avahi-daemon start >> /opt/scripts/avahi_startup.log 2>&1
|
/etc/init.d/avahi-daemon start >> /opt/scripts/avahi_startup.log 2>&1
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
@@ -26,7 +26,7 @@ set_objectsdb_type() {
|
|||||||
echo -n "Setting type of objects db to \"""$objectsdbtype""\"... "
|
echo -n "Setting type of objects db to \"""$objectsdbtype""\"... "
|
||||||
jq --arg value "$objectsdbtype" '.objects.type = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "$objectsdbtype" '.objects.type = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "IOB_OBJECTSDB_TYPE is available and value meets detected ioBroker installation."
|
echo "IOB_OBJECTSDB_TYPE is available and value meets detected ioBroker installation."
|
||||||
fi
|
fi
|
||||||
@@ -38,7 +38,7 @@ set_objectsdb_host() {
|
|||||||
echo -n "Setting host of objects db to \"""$objectsdbhost""\"... "
|
echo -n "Setting host of objects db to \"""$objectsdbhost""\"... "
|
||||||
jq --arg value "$objectsdbhost" '.objects.host = ($value|split(","))' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "$objectsdbhost" '.objects.host = ($value|split(","))' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "IOB_OBJECTSDB_HOST is available and value meets detected ioBroker installation."
|
echo "IOB_OBJECTSDB_HOST is available and value meets detected ioBroker installation."
|
||||||
fi
|
fi
|
||||||
@@ -48,7 +48,7 @@ set_objectsdb_host() {
|
|||||||
echo -n "Setting name of objects db to \"""$objectsdbname""\"... "
|
echo -n "Setting name of objects db to \"""$objectsdbname""\"... "
|
||||||
jq --arg value "$objectsdbname" '.objects.sentinelName = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "$objectsdbname" '.objects.sentinelName = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "IOB_OBJECTSDB_NAME is available and value meets detected ioBroker installation."
|
echo "IOB_OBJECTSDB_NAME is available and value meets detected ioBroker installation."
|
||||||
fi
|
fi
|
||||||
@@ -58,7 +58,7 @@ set_objectsdb_host() {
|
|||||||
echo -n "Setting name of objects db to \"mymaster\"... "
|
echo -n "Setting name of objects db to \"mymaster\"... "
|
||||||
jq --arg value "mymaster" '.objects.sentinelName = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "mymaster" '.objects.sentinelName = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "IOB_OBJECTSDB_NAME is not available but default value \"mymaster\" meets detected ioBroker installation.."
|
echo "IOB_OBJECTSDB_NAME is not available but default value \"mymaster\" meets detected ioBroker installation.."
|
||||||
fi
|
fi
|
||||||
@@ -69,7 +69,7 @@ set_objectsdb_host() {
|
|||||||
echo -n "Setting host of objects db to \"""$objectsdbhost""\"... "
|
echo -n "Setting host of objects db to \"""$objectsdbhost""\"... "
|
||||||
jq --arg value "$objectsdbhost" '.objects.host = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "$objectsdbhost" '.objects.host = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "IOB_OBJECTSDB_HOST is available and value meets detected ioBroker installation."
|
echo "IOB_OBJECTSDB_HOST is available and value meets detected ioBroker installation."
|
||||||
fi
|
fi
|
||||||
@@ -82,7 +82,7 @@ set_objectsdb_port() {
|
|||||||
echo -n "Setting port of objects db to \"""$objectsdbport""\"... "
|
echo -n "Setting port of objects db to \"""$objectsdbport""\"... "
|
||||||
jq --arg value "$objectsdbport" '.objects.port = ($value|split(","))' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "$objectsdbport" '.objects.port = ($value|split(","))' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "IOB_OBJECTSDB_PORT is available and value meets detected ioBroker installation."
|
echo "IOB_OBJECTSDB_PORT is available and value meets detected ioBroker installation."
|
||||||
fi
|
fi
|
||||||
@@ -92,7 +92,7 @@ set_objectsdb_port() {
|
|||||||
echo -n "Setting port of objects db to \"""$objectsdbport""\"... "
|
echo -n "Setting port of objects db to \"""$objectsdbport""\"... "
|
||||||
jq --arg value "$objectsdbport" '.objects.port = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "$objectsdbport" '.objects.port = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "IOB_OBJECTSDB_PORT is available and value meets detected ioBroker installation."
|
echo "IOB_OBJECTSDB_PORT is available and value meets detected ioBroker installation."
|
||||||
fi
|
fi
|
||||||
@@ -104,13 +104,13 @@ set_objectsdb_pass() {
|
|||||||
echo -n "Removing password of objects db... "
|
echo -n "Removing password of objects db... "
|
||||||
jq '.objects.options.auth_pass = null' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq '.objects.options.auth_pass = null' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
elif [[ "$objectsdbpass" != "$(jq -r '.objects.options.auth_pass' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
elif [[ "$objectsdbpass" != "$(jq -r '.objects.options.auth_pass' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
||||||
echo "IOB_OBJECTSDB_PASS is available but value is different from detected ioBroker installation."
|
echo "IOB_OBJECTSDB_PASS is available but value is different from detected ioBroker installation."
|
||||||
echo -n "Setting password of objects db... "
|
echo -n "Setting password of objects db... "
|
||||||
jq --arg value "$objectsdbpass" '.objects.options.auth_pass = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "$objectsdbpass" '.objects.options.auth_pass = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "IOB_OBJECTSDB_PASS is available and value meets detected ioBroker installation."
|
echo "IOB_OBJECTSDB_PASS is available and value meets detected ioBroker installation."
|
||||||
fi
|
fi
|
||||||
@@ -121,7 +121,7 @@ set_statesdb_type() {
|
|||||||
echo -n "Setting type of states db to \"""$statesdbtype""\"... "
|
echo -n "Setting type of states db to \"""$statesdbtype""\"... "
|
||||||
jq --arg value "$statesdbtype" '.states.type = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "$statesdbtype" '.states.type = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "IOB_STATESDB_TYPE is available and value meets detected ioBroker installation."
|
echo "IOB_STATESDB_TYPE is available and value meets detected ioBroker installation."
|
||||||
fi
|
fi
|
||||||
@@ -133,7 +133,7 @@ set_statesdb_host() {
|
|||||||
echo -n "Setting host of states db to \"""$statesdbhost""\"... "
|
echo -n "Setting host of states db to \"""$statesdbhost""\"... "
|
||||||
jq --arg value "$statesdbhost" '.states.host = ($value|split(","))' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "$statesdbhost" '.states.host = ($value|split(","))' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "IOB_STATESDB_HOST is available and value meets detected ioBroker installation."
|
echo "IOB_STATESDB_HOST is available and value meets detected ioBroker installation."
|
||||||
fi
|
fi
|
||||||
@@ -143,7 +143,7 @@ set_statesdb_host() {
|
|||||||
echo -n "Setting name of states db to \"""$statesdbname""\"... "
|
echo -n "Setting name of states db to \"""$statesdbname""\"... "
|
||||||
jq --arg value "$statesdbname" '.states.sentinelName = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "$statesdbname" '.states.sentinelName = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "IOB_STATESDB_NAME is available and value meets detected ioBroker installation."
|
echo "IOB_STATESDB_NAME is available and value meets detected ioBroker installation."
|
||||||
fi
|
fi
|
||||||
@@ -153,7 +153,7 @@ set_statesdb_host() {
|
|||||||
echo -n "Setting name of states db to \"mymaster\"... "
|
echo -n "Setting name of states db to \"mymaster\"... "
|
||||||
jq --arg value "mymaster" '.states.sentinelName = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "mymaster" '.states.sentinelName = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "IOB_STATESDB_NAME is not available but default value \"mymaster\" meets detected ioBroker installation.."
|
echo "IOB_STATESDB_NAME is not available but default value \"mymaster\" meets detected ioBroker installation.."
|
||||||
fi
|
fi
|
||||||
@@ -164,7 +164,7 @@ set_statesdb_host() {
|
|||||||
echo -n "Setting host of states db to \"""$statesdbhost""\"... "
|
echo -n "Setting host of states db to \"""$statesdbhost""\"... "
|
||||||
jq --arg value "$statesdbhost" '.states.host = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "$statesdbhost" '.states.host = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "IOB_STATESDB_HOST is available and value meets detected ioBroker installation."
|
echo "IOB_STATESDB_HOST is available and value meets detected ioBroker installation."
|
||||||
fi
|
fi
|
||||||
@@ -177,7 +177,7 @@ set_statesdb_port() {
|
|||||||
echo -n "Setting port of states db to \"""$statesdbport""\"... "
|
echo -n "Setting port of states db to \"""$statesdbport""\"... "
|
||||||
jq --arg value "$statesdbport" '.states.port = ($value|split(","))' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "$statesdbport" '.states.port = ($value|split(","))' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "IOB_STATESDB_PORT is available and value meets detected ioBroker installation."
|
echo "IOB_STATESDB_PORT is available and value meets detected ioBroker installation."
|
||||||
fi
|
fi
|
||||||
@@ -187,7 +187,7 @@ set_statesdb_port() {
|
|||||||
echo -n "Setting port of states db to \"""$statesdbport""\"... "
|
echo -n "Setting port of states db to \"""$statesdbport""\"... "
|
||||||
jq --arg value "$statesdbport" '.states.port = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "$statesdbport" '.states.port = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "IOB_STATESDB_PORT is available and value meets detected ioBroker installation."
|
echo "IOB_STATESDB_PORT is available and value meets detected ioBroker installation."
|
||||||
fi
|
fi
|
||||||
@@ -199,19 +199,19 @@ set_statesdb_pass() {
|
|||||||
echo -n "Removing password of states db... "
|
echo -n "Removing password of states db... "
|
||||||
jq '.states.options.auth_pass = null' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq '.states.options.auth_pass = null' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
elif [[ "$statesdbpass" != "$(jq -r '.states.options.auth_pass' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
elif [[ "$statesdbpass" != "$(jq -r '.states.options.auth_pass' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
||||||
echo "IOB_STATESDB_PASS is available but value is different from detected ioBroker installation."
|
echo "IOB_STATESDB_PASS is available but value is different from detected ioBroker installation."
|
||||||
echo -n "Setting password of states db... "
|
echo -n "Setting password of states db... "
|
||||||
jq --arg value "$statesdbpass" '.states.options.auth_pass = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "$statesdbpass" '.states.options.auth_pass = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "IOB_STATESDB_PASS is available and value meets detected ioBroker installation."
|
echo "IOB_STATESDB_PASS is available and value meets detected ioBroker installation."
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
config_error_output() {
|
config_error_output() {
|
||||||
echo ' '
|
echo " "
|
||||||
echo "Something went wrong. Looks like at least one parameter defining the custom db connection was not set properly or is missing."
|
echo "Something went wrong. Looks like at least one parameter defining the custom db connection was not set properly or is missing."
|
||||||
echo "Please check your configuration and try again."
|
echo "Please check your configuration and try again."
|
||||||
echo "For more information see ioBroker Docker Image Docs (https://docs.buanet.de/iobroker-docker-image/docs/)."
|
echo "For more information see ioBroker Docker Image Docs (https://docs.buanet.de/iobroker-docker-image/docs/)."
|
||||||
@@ -220,8 +220,8 @@ config_error_output() {
|
|||||||
# parameter check
|
# parameter check
|
||||||
if [[ "$1" == "-master" ]]; then # setup master
|
if [[ "$1" == "-master" ]]; then # setup master
|
||||||
echo "IOB_MULTIHOST is available and set to \"master\"."
|
echo "IOB_MULTIHOST is available and set to \"master\"."
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
# multihost objects db
|
# multihost objects db
|
||||||
if [[ "$objectsdbtype" != "" && "$objectsdbhost" != "" && "$objectsdbport" != "" ]]; then
|
if [[ "$objectsdbtype" != "" && "$objectsdbhost" != "" && "$objectsdbport" != "" ]]; then
|
||||||
echo "Configuring custom objects db..."
|
echo "Configuring custom objects db..."
|
||||||
@@ -229,15 +229,15 @@ if [[ "$1" == "-master" ]]; then # setup master
|
|||||||
set_objectsdb_host
|
set_objectsdb_host
|
||||||
set_objectsdb_port
|
set_objectsdb_port
|
||||||
if [[ "$objectsdbpass" != "" ]]; then set_objectsdb_pass; fi
|
if [[ "$objectsdbpass" != "" ]]; then set_objectsdb_pass; fi
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
elif [[ "$objectsdbtype" == "" && "$objectsdbhost" == "" && "$objectsdbport" == "" ]]; then
|
elif [[ "$objectsdbtype" == "" && "$objectsdbhost" == "" && "$objectsdbport" == "" ]]; then
|
||||||
echo "No custom objects db is set."
|
echo "No custom objects db is set."
|
||||||
if [[ "$(jq -r '.objects.host' /opt/iobroker/iobroker-data/iobroker.json)" != "0.0.0.0" ]]; then
|
if [[ "$(jq -r '.objects.host' /opt/iobroker/iobroker-data/iobroker.json)" != "0.0.0.0" ]]; then
|
||||||
echo -n "Configuring default objects db to accept external connections... "
|
echo -n "Configuring default objects db to accept external connections... "
|
||||||
jq --arg value "0.0.0.0" '.objects.host = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "0.0.0.0" '.objects.host = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "Default objects db is accepting external connections."
|
echo "Default objects db is accepting external connections."
|
||||||
fi
|
fi
|
||||||
@@ -257,15 +257,15 @@ if [[ "$1" == "-master" ]]; then # setup master
|
|||||||
set_statesdb_host
|
set_statesdb_host
|
||||||
set_statesdb_port
|
set_statesdb_port
|
||||||
if [[ "$statesdbpass" != "" ]]; then set_statesdb_pass; fi
|
if [[ "$statesdbpass" != "" ]]; then set_statesdb_pass; fi
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
elif [[ "$statesdbtype" == "" && "$statesdbhost" == "" && "$statesdbport" == "" ]]; then
|
elif [[ "$statesdbtype" == "" && "$statesdbhost" == "" && "$statesdbport" == "" ]]; then
|
||||||
echo "No custom states db is set."
|
echo "No custom states db is set."
|
||||||
if [[ "$(jq -r '.states.host' /opt/iobroker/iobroker-data/iobroker.json)" != "0.0.0.0" ]]; then
|
if [[ "$(jq -r '.states.host' /opt/iobroker/iobroker-data/iobroker.json)" != "0.0.0.0" ]]; then
|
||||||
echo -n "Configuring default states db to accept external connections... "
|
echo -n "Configuring default states db to accept external connections... "
|
||||||
jq --arg value "0.0.0.0" '.states.host = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
jq --arg value "0.0.0.0" '.states.host = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
write_iobroker_json
|
write_iobroker_json
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
else
|
else
|
||||||
echo "Default states db is accepting external connections."
|
echo "Default states db is accepting external connections."
|
||||||
fi
|
fi
|
||||||
@@ -280,8 +280,8 @@ if [[ "$1" == "-master" ]]; then # setup master
|
|||||||
fi
|
fi
|
||||||
elif [[ "$1" == "-slave" ]]; then # setup slave
|
elif [[ "$1" == "-slave" ]]; then # setup slave
|
||||||
echo "IOB_MULTIHOST is available and set to \"slave\"."
|
echo "IOB_MULTIHOST is available and set to \"slave\"."
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
# multihost slave objects db connection
|
# multihost slave objects db connection
|
||||||
if [[ "$objectsdbtype" != "" && "$objectsdbhost" != "" && "$objectsdbport" != "" ]]; then
|
if [[ "$objectsdbtype" != "" && "$objectsdbhost" != "" && "$objectsdbport" != "" ]]; then
|
||||||
echo "Configuring objects db connection..."
|
echo "Configuring objects db connection..."
|
||||||
@@ -289,8 +289,8 @@ elif [[ "$1" == "-slave" ]]; then # setup slave
|
|||||||
set_objectsdb_host
|
set_objectsdb_host
|
||||||
set_objectsdb_port
|
set_objectsdb_port
|
||||||
if [[ "$objectsdbpass" != "" ]]; then set_objectsdb_pass; fi
|
if [[ "$objectsdbpass" != "" ]]; then set_objectsdb_pass; fi
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
else
|
else
|
||||||
if [[ "$debug" == "true" ]]; then
|
if [[ "$debug" == "true" ]]; then
|
||||||
echo "[DEBUG] IOB_OBJECTSDB_TYPE = ""$objectsdbtype"
|
echo "[DEBUG] IOB_OBJECTSDB_TYPE = ""$objectsdbtype"
|
||||||
@@ -307,8 +307,8 @@ elif [[ "$1" == "-slave" ]]; then # setup slave
|
|||||||
set_statesdb_host
|
set_statesdb_host
|
||||||
set_statesdb_port
|
set_statesdb_port
|
||||||
if [[ "$statesdbpass" != "" ]]; then set_statesdb_pass; fi
|
if [[ "$statesdbpass" != "" ]]; then set_statesdb_pass; fi
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
else
|
else
|
||||||
if [[ "$debug" == "true" ]]; then
|
if [[ "$debug" == "true" ]]; then
|
||||||
echo "[DEBUG] IOB_STATESDB_TYPE = ""$statesdbtype"
|
echo "[DEBUG] IOB_STATESDB_TYPE = ""$statesdbtype"
|
||||||
@@ -325,8 +325,8 @@ elif [[ "$1" == "-objectsdb" ]]; then # setup objects db standalone
|
|||||||
set_objectsdb_host
|
set_objectsdb_host
|
||||||
set_objectsdb_port
|
set_objectsdb_port
|
||||||
if [[ "$objectsdbpass" != "" ]]; then set_objectsdb_pass; fi
|
if [[ "$objectsdbpass" != "" ]]; then set_objectsdb_pass; fi
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
else
|
else
|
||||||
if [[ "$debug" == "true" ]]; then
|
if [[ "$debug" == "true" ]]; then
|
||||||
echo "[DEBUG] IOB_OBJECTSDB_TYPE = ""$objectsdbtype"
|
echo "[DEBUG] IOB_OBJECTSDB_TYPE = ""$objectsdbtype"
|
||||||
@@ -343,8 +343,8 @@ elif [[ "$1" == "-statesdb" ]]; then # setup states db standalone
|
|||||||
set_statesdb_host
|
set_statesdb_host
|
||||||
set_statesdb_port
|
set_statesdb_port
|
||||||
if [[ "$statesdbpass" != "" ]]; then set_statesdb_pass; fi
|
if [[ "$statesdbpass" != "" ]]; then set_statesdb_pass; fi
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
echo ' '
|
echo " "
|
||||||
else
|
else
|
||||||
if [[ "$debug" == "true" ]]; then
|
if [[ "$debug" == "true" ]]; then
|
||||||
echo "[DEBUG] IOB_STATESDB_TYPE = ""$statesdbtype"
|
echo "[DEBUG] IOB_STATESDB_TYPE = ""$statesdbtype"
|
||||||
84
debian11/scripts/setup_packages.sh
Normal file
84
debian11/scripts/setup_packages.sh
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# bash strict mode
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
# Reading ENV
|
||||||
|
set +u
|
||||||
|
packages=$PACKAGES
|
||||||
|
debug=$DEBUG
|
||||||
|
set -u
|
||||||
|
|
||||||
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
|
check_package_preq() {
|
||||||
|
# check for influx packages
|
||||||
|
if [[ "$i" == "influxdb" || "$i" == "influxdb2-cli" ]]; then
|
||||||
|
# add influxdata repo keys
|
||||||
|
wget -qO- https://repos.influxdata.com/influxdata-archive_compat.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdata-archive_compat.gpg > /dev/null
|
||||||
|
echo "deb [signed-by=/etc/apt/trusted.gpg.d/influxdata-archive_compat.gpg] https://repos.influxdata.com/debian stable main" | sudo tee /etc/apt/sources.list.d/influxdata.list
|
||||||
|
apt-get -q update >> /opt/scripts/setup_packages.log 2>&1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
check_package_validity() {
|
||||||
|
# check string for double spaces
|
||||||
|
while echo "$packages" | grep -q ' '; do
|
||||||
|
packages=$(echo "$packages" | sed 's/ / /g')
|
||||||
|
done
|
||||||
|
# remove packages when "influxdb" AND "influxdb2-cli"
|
||||||
|
if echo "$packages" | grep -qw "influxdb" && echo "$packages" | grep -qw "influxdb2-cli"; then
|
||||||
|
echo "PACKAGES includes influxdb AND influxdb2-cli."
|
||||||
|
echo "As installing both packages together is not possible, they will be skipped."
|
||||||
|
packages=$(echo "$packages" | sed 's/influxdb2-cli//g;s/influxdb//g')
|
||||||
|
# check string for double spaces again
|
||||||
|
while echo "$packages" | grep -q ' '; do
|
||||||
|
packages=$(echo "$packages" | sed 's/ / /g')
|
||||||
|
done
|
||||||
|
if [[ $debug == "true" ]]; then echo "[DEBUG] New list of packages: ""$packages"; fi
|
||||||
|
echo " "
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
if [[ "$1" == "-install" ]]; then
|
||||||
|
echo " "
|
||||||
|
apt-get -q update >> /opt/scripts/setup_packages.log 2>&1
|
||||||
|
check_package_validity
|
||||||
|
for i in $packages; do
|
||||||
|
if ! dpkg -s "$i" >/dev/null 2>&1; then
|
||||||
|
echo -n "$i is not installed. Installing... "
|
||||||
|
check_package_preq >> /opt/scripts/setup_packages.log 2>&1
|
||||||
|
if ! apt-get -q -y --no-install-recommends install "$i" >> /opt/scripts/setup_packages.log 2>&1; then
|
||||||
|
echo "Failed."
|
||||||
|
echo "For more details see \"/opt/scripts/setup_packages.log\"."
|
||||||
|
else
|
||||||
|
echo "Done."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "$i is already installed."
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
elif [[ "$1" == "-update" ]]; then
|
||||||
|
echo -n "Updating Linux packages on first run... "
|
||||||
|
apt-get -q update >> /opt/scripts/setup_packages.log 2>&1
|
||||||
|
return1=$?
|
||||||
|
apt-get -q -y upgrade >> /opt/scripts/setup_packages.log 2>&1
|
||||||
|
return2=$?
|
||||||
|
if [[ "$return1" -ne 0 || "$return2" -ne 0 ]]; then
|
||||||
|
echo "Failed."
|
||||||
|
echo "For more details see \"/opt/scripts/setup_packages.log\"."
|
||||||
|
echo "Make sure the container has internet access to get the latest package updates."
|
||||||
|
echo "This has no impact to the setup process. The script will continue."
|
||||||
|
else
|
||||||
|
echo "Done."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "No paramerter found!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Silent Cleanup
|
||||||
|
apt-get -qq autoclean -y && apt-get -qq autoremove && apt-get -qq clean
|
||||||
|
rm -rf /tmp/* /var/tmp/* /root/.cache/* /var/lib/apt/lists/*
|
||||||
|
rm -f /opt/scripts/.packages /opt/scripts/.docker_config/.packages
|
||||||
|
|
||||||
|
exit 0
|
||||||
@@ -2,16 +2,16 @@
|
|||||||
|
|
||||||
if [ -e /usr/local/lib64 ]
|
if [ -e /usr/local/lib64 ]
|
||||||
then
|
then
|
||||||
echo '[setup_zwave.sh] Openzwave is already installed. Nothing to do here.'
|
echo "[setup_zwave.sh] Openzwave is already installed. Nothing to do here."
|
||||||
else
|
else
|
||||||
echo -n '[setup_zwave.sh] Openzwave is NOT installed. Going to install it now... '
|
echo -n "[setup_zwave.sh] Openzwave is NOT installed. Going to install it now... "
|
||||||
cd /opt || exit
|
cd /opt || exit
|
||||||
curl -s -L -O http://old.openzwave.com/downloads/openzwave-1.6.1007.tar.gz
|
curl -s -L -O http://old.openzwave.com/downloads/openzwave-1.6.1007.tar.gz
|
||||||
tar -xf openzwave-1.6.1007.tar.gz && rm openzwave-1.6.1007.tar.gz
|
tar -xf openzwave-1.6.1007.tar.gz && rm openzwave-1.6.1007.tar.gz
|
||||||
cd openzwave-1.6.1007 && make > /dev/null 2>&1 && make install > /dev/null 2>&1
|
cd openzwave-1.6.1007 && make > /dev/null 2>&1 && make install > /dev/null 2>&1
|
||||||
ldconfig /usr/local/lib64
|
ldconfig /usr/local/lib64
|
||||||
cd /opt/iobroker || exit
|
cd /opt/iobroker || exit
|
||||||
echo 'Done.'
|
echo "Done."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
@@ -5,9 +5,9 @@
|
|||||||
|
|
||||||
# You can add your advanced script code here!
|
# You can add your advanced script code here!
|
||||||
|
|
||||||
echo ' '
|
echo " "
|
||||||
echo "I'm your startscript userscript_everystart.sh. I will run on EVERY container startup."
|
echo "I'm your startscript userscript_everystart.sh. I will run on EVERY container startup."
|
||||||
echo ' '
|
echo " "
|
||||||
|
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
@@ -5,8 +5,8 @@
|
|||||||
|
|
||||||
# You can add your advanced script code here!
|
# You can add your advanced script code here!
|
||||||
|
|
||||||
echo ' '
|
echo " "
|
||||||
echo "I'm your startscript userscript_firststart.sh. I will run only on the FIRST startup of the container."
|
echo "I'm your startscript userscript_firststart.sh. I will run only on the FIRST startup of the container."
|
||||||
echo ' '
|
echo " "
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
@@ -1,80 +1,89 @@
|
|||||||
FROM debian:bullseye-slim
|
FROM debian:bookworm-slim
|
||||||
|
|
||||||
LABEL org.opencontainers.image.title="Official ioBroker Docker Image" \
|
LABEL org.opencontainers.image.title="Official ioBroker Docker Image" \
|
||||||
org.opencontainers.image.description="Officical Docker image for ioBroker smarthome software (https://www.iobroker.net)" \
|
org.opencontainers.image.description="Official Docker image for ioBroker smarthome software (https://www.iobroker.net)" \
|
||||||
org.opencontainers.image.documentation="https://github.com/buanet/ioBroker.docker#readme" \
|
org.opencontainers.image.documentation="https://github.com/buanet/ioBroker.docker#readme" \
|
||||||
org.opencontainers.image.authors="André Germann <info@buanet.de>" \
|
org.opencontainers.image.authors="André Germann <info@buanet.de>" \
|
||||||
org.opencontainers.image.url="https://github.com/buanet/ioBroker.docker" \
|
org.opencontainers.image.url="https://github.com/buanet/ioBroker.docker" \
|
||||||
org.opencontainers.image.source="https://github.com/buanet/ioBroker.docker" \
|
org.opencontainers.image.source="https://github.com/buanet/ioBroker.docker" \
|
||||||
org.opencontainers.image.base.name="docker.io/library/debian:bullseye-slim" \
|
org.opencontainers.image.base.name="debian:bookworm-slim" \
|
||||||
org.opencontainers.image.version="${VERSION}" \
|
org.opencontainers.image.version="${VERSION}" \
|
||||||
org.opencontainers.image.created="${DATI}"
|
org.opencontainers.image.created="${DATI}"
|
||||||
|
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
|
|
||||||
# Install prerequisites (including node) and generating locales
|
# Copy files
|
||||||
RUN apt-get update && apt-get install -y \
|
COPY scripts /opt/scripts
|
||||||
|
COPY userscripts /opt/userscripts
|
||||||
|
|
||||||
|
# Set up ioBroker
|
||||||
|
RUN apt-get update && apt-get upgrade -y \
|
||||||
|
# Install prerequisites
|
||||||
|
&& apt-get install -y \
|
||||||
apt-utils \
|
apt-utils \
|
||||||
|
ca-certificates \
|
||||||
cifs-utils \
|
cifs-utils \
|
||||||
curl \
|
curl \
|
||||||
|
gnupg \
|
||||||
gosu \
|
gosu \
|
||||||
iputils-ping \
|
iputils-ping \
|
||||||
jq \
|
jq \
|
||||||
|
libatomic1 \
|
||||||
locales \
|
locales \
|
||||||
nfs-common \
|
nfs-common \
|
||||||
procps \
|
procps \
|
||||||
python3 \
|
python3 \
|
||||||
python3-dev \
|
python3-dev \
|
||||||
sudo \
|
|
||||||
tar \
|
tar \
|
||||||
tzdata \
|
tzdata \
|
||||||
udev \
|
udev \
|
||||||
wget \
|
wget \
|
||||||
# Install node
|
# Install node
|
||||||
&& curl -sL https://deb.nodesource.com/setup_12.x | bash \
|
&& mkdir -p /etc/apt/keyrings \
|
||||||
|
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \
|
||||||
|
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_${NODE}.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \
|
||||||
&& apt-get update && apt-get install -y nodejs \
|
&& apt-get update && apt-get install -y nodejs \
|
||||||
# Install node-gyp
|
# Install node-gyp
|
||||||
&& npm install -g node-gyp \
|
&& npm install --production -g node-gyp \
|
||||||
# Generating locales
|
# Generating locales
|
||||||
&& sed -i 's/^# *\(de_DE.UTF-8\)/\1/' /etc/locale.gen \
|
&& sed -i 's/^# *\(de_DE.UTF-8\)/\1/' /etc/locale.gen \
|
||||||
&& sed -i 's/^# *\(en_US.UTF-8\)/\1/' /etc/locale.gen \
|
&& sed -i 's/^# *\(en_US.UTF-8\)/\1/' /etc/locale.gen \
|
||||||
&& locale-gen
|
&& locale-gen \
|
||||||
|
# Prepare .docker_config
|
||||||
# Create directorys and copy scripts
|
&& mkdir /opt/.docker_config \
|
||||||
COPY scripts /opt/scripts
|
&& echo "starting" > /opt/.docker_config/.healthcheck \
|
||||||
COPY userscripts /opt/userscripts
|
&& echo "${VERSION}" > /opt/.docker_config/.thisisdocker \
|
||||||
RUN chmod 777 /opt/scripts/ \
|
&& echo "true" > /opt/.docker_config/.first_run \
|
||||||
&& chmod 777 /opt/userscripts/ \
|
# Prepare old .docker_config (needed until changed in iobroker)
|
||||||
&& chmod +x /opt/scripts/*.sh \
|
&& mkdir /opt/scripts/.docker_config \
|
||||||
&& chmod +x /opt/userscripts/*.sh
|
|
||||||
|
|
||||||
# Install ioBroker
|
|
||||||
RUN curl -sL https://iobroker.net/install.sh | bash - \
|
|
||||||
&& mkdir -p /opt/scripts/.docker_config/ \
|
|
||||||
&& echo "starting" > /opt/scripts/.docker_config/.healthcheck \
|
|
||||||
&& echo "${VERSION}" > /opt/scripts/.docker_config/.thisisdocker \
|
&& echo "${VERSION}" > /opt/scripts/.docker_config/.thisisdocker \
|
||||||
&& echo $(hostname) > /opt/.firstrun \
|
# Run iobroker installer
|
||||||
|
&& curl -sL https://iobroker.net/install.sh | bash - \
|
||||||
# Deleting UUID from build
|
# Deleting UUID from build
|
||||||
&& iobroker unsetup -y \
|
&& iobroker unsetup -y \
|
||||||
|
&& echo "true" > /opt/iobroker/.fresh_install \
|
||||||
# Backup initial ioBroker and userscript folder
|
# Backup initial ioBroker and userscript folder
|
||||||
&& tar -cf /opt/initial_iobroker.tar /opt/iobroker \
|
&& tar -cf /opt/initial_iobroker.tar /opt/iobroker \
|
||||||
&& tar -cf /opt/initial_userscripts.tar /opt/userscripts \
|
&& tar -cf /opt/initial_userscripts.tar /opt/userscripts \
|
||||||
# Setting up iobroker-user (shell, home dir and rights)
|
# Setting up iobroker-user
|
||||||
&& chsh -s /bin/bash iobroker \
|
&& chsh -s /bin/bash iobroker \
|
||||||
&& usermod --home /opt/iobroker iobroker \
|
&& usermod --home /opt/iobroker iobroker \
|
||||||
&& usermod -u 1000 iobroker \
|
&& usermod -u 1000 iobroker \
|
||||||
&& groupmod -g 1000 iobroker \
|
&& groupmod -g 1000 iobroker \
|
||||||
&& chown root:iobroker /usr/sbin/gosu \
|
&& chown root:iobroker /usr/sbin/gosu \
|
||||||
&& chmod +s /usr/sbin/gosu \
|
#&& chmod +s /usr/sbin/gosu \
|
||||||
|
# Set permissions and ownership
|
||||||
|
&& chown -R iobroker:iobroker /opt/scripts /opt/userscripts \
|
||||||
|
&& chmod 755 /opt/scripts/*.sh \
|
||||||
|
&& chmod 755 /opt/userscripts/*.sh \
|
||||||
# Clean up installation cache
|
# Clean up installation cache
|
||||||
|
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
|
||||||
&& apt-get autoclean -y \
|
&& apt-get autoclean -y \
|
||||||
&& apt-get autoremove \
|
&& apt-get autoremove \
|
||||||
&& apt-get clean \
|
&& apt-get clean \
|
||||||
&& rm -rf /tmp/* /var/tmp/* \
|
&& rm -rf /tmp/* /var/tmp/* /root/.cache/* /root/.npm/* /var/lib/apt/lists/*
|
||||||
&& rm -rf /root/.cache/* /root/.npm/* \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
# Setting up default ENVs
|
# Default environment variables
|
||||||
ENV DEBIAN_FRONTEND="teletype" \
|
ENV DEBIAN_FRONTEND="teletype" \
|
||||||
LANG="de_DE.UTF-8" \
|
LANG="de_DE.UTF-8" \
|
||||||
LANGUAGE="de_DE:de" \
|
LANGUAGE="de_DE:de" \
|
||||||
@@ -83,7 +92,7 @@ ENV DEBIAN_FRONTEND="teletype" \
|
|||||||
SETUID=1000 \
|
SETUID=1000 \
|
||||||
TZ="Europe/Berlin"
|
TZ="Europe/Berlin"
|
||||||
|
|
||||||
# Expose default admin ui port
|
# Default admin ui port
|
||||||
EXPOSE 8081
|
EXPOSE 8081
|
||||||
|
|
||||||
# Change work dir
|
# Change work dir
|
||||||
@@ -93,5 +102,8 @@ WORKDIR /opt/iobroker/
|
|||||||
HEALTHCHECK --interval=15s --timeout=5s --retries=5 \
|
HEALTHCHECK --interval=15s --timeout=5s --retries=5 \
|
||||||
CMD ["/bin/bash", "-c", "/opt/scripts/healthcheck.sh"]
|
CMD ["/bin/bash", "-c", "/opt/scripts/healthcheck.sh"]
|
||||||
|
|
||||||
|
# Volume for persistent data
|
||||||
|
VOLUME ["/opt/iobroker"]
|
||||||
|
|
||||||
# Run startup-script
|
# Run startup-script
|
||||||
ENTRYPOINT ["/bin/bash", "-c", "/opt/scripts/iobroker_startup.sh"]
|
ENTRYPOINT ["/bin/bash", "-c", "/opt/scripts/iobroker_startup.sh"]
|
||||||
20
debian12/scripts/healthcheck.sh
Normal file
20
debian12/scripts/healthcheck.sh
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Script checks health of running container
|
||||||
|
|
||||||
|
if [ "$(cat /opt/.docker_config/.healthcheck)" == "starting" ]
|
||||||
|
then
|
||||||
|
echo "Health status: OK - Startup script is still running."
|
||||||
|
exit 0
|
||||||
|
elif [ "$(cat /opt/.docker_config/.healthcheck)" == "maintenance" ]
|
||||||
|
then
|
||||||
|
echo "Health status: OK - Container is running in maintenance mode."
|
||||||
|
exit 0
|
||||||
|
elif [ "$(ps -fe|grep "[i]obroker.js-controller"|awk '{print $2}')" != "" ]
|
||||||
|
then
|
||||||
|
echo "Health status: OK - Main process (js-controller) is running."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Health status: !!! NOT OK !!! - Something went wrong. Please see container logs for more details and/or try restarting the container."
|
||||||
|
exit 1
|
||||||
65
debian12/scripts/iobroker.sh
Normal file
65
debian12/scripts/iobroker.sh
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
|
||||||
|
# run iob fix
|
||||||
|
iob_fix () {
|
||||||
|
if [ "$(id -u)" -eq 0 ]; then
|
||||||
|
echo "The ioBroker fixer script is not specifically designed to run in Docker."
|
||||||
|
echo "Although it is generally safe to use, use it at your own risk and make sure to restart your container immediately after execution!"
|
||||||
|
|
||||||
|
local reply
|
||||||
|
read -rp 'Do you want to continue? [yes/no] ' reply
|
||||||
|
if [[ "$reply" == y || "$reply" == Y || "$reply" == yes ]]; then
|
||||||
|
: # continue
|
||||||
|
else
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
curl -sL https://iobroker.net/fix.sh | bash -
|
||||||
|
else
|
||||||
|
echo "Due to some limitations in Docker, you need to run the ioBroker fixer script as root."
|
||||||
|
echo "Please connect as root user and try again."
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# run iob diag
|
||||||
|
iob_diag () {
|
||||||
|
if [ "$(id -u)" -eq 0 ]; then
|
||||||
|
echo "The ioBroker diag script is not specifically designed to run in Docker."
|
||||||
|
echo "Although it is generally safe to use, use it at your own risk."
|
||||||
|
local reply
|
||||||
|
read -rp 'Do you want to continue? [yes/no] ' reply
|
||||||
|
if [[ "$reply" == y || "$reply" == Y || "$reply" == yes ]]; then
|
||||||
|
: # continue
|
||||||
|
else
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
curl -sLf https://iobroker.net/diag.sh --output /home/iobroker/.diag.sh && bash /home/iobroker/.diag.sh | gosu iobroker tee /home/iobroker/iob_diag.log
|
||||||
|
else
|
||||||
|
echo "Due to some limitations in Docker, you need to run the ioBroker fixer script as root."
|
||||||
|
echo "Please connect as root user and try again."
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
if [ "$1" = "fix" ]; then # call iobroker fixer
|
||||||
|
iob_fix
|
||||||
|
elif [ "$1" = "node fix" ]; then # call iobroker node fixer
|
||||||
|
echo "The execution of this command is blocked as your ioBroker is running inside a Docker container!"
|
||||||
|
echo "To fix any issues with nodejs, please pull the latest version of the Docker image and recreate your container."
|
||||||
|
elif [ "$1" = "diag" ]; then # call iobroker diag script
|
||||||
|
iob_diag
|
||||||
|
elif [ "$1" = "start" ] || [ "$1" = "stop" ] || [ "$1" = "restart" ]; then # block execution of iobroker start | stop | restart
|
||||||
|
echo "The execution of this command is blocked as your ioBroker is running inside a Docker container!"
|
||||||
|
echo "For more details see ioBroker Docker image docs (https://docs.buanet.de/iobroker-docker-image/docs/) or use the maintenance script 'maintenance --help'."
|
||||||
|
elif [ "$1" = "m" ] || [ "$1" = "maint" ] || [ "$1" = "maintenance" ]; then # call iobroker maintenance script
|
||||||
|
shift
|
||||||
|
if [ "$(id -u)" -eq 0 ]; then # check for execution as root
|
||||||
|
gosu iobroker bash /opt/scripts/maintenance.sh "$@"
|
||||||
|
else
|
||||||
|
bash /opt/scripts/maintenance.sh "$@"
|
||||||
|
fi
|
||||||
|
else # passing all other parameters to iobroker.js
|
||||||
|
if [ "$(id -u)" -eq 0 ]; then # check for execution as root
|
||||||
|
gosu iobroker node /opt/iobroker/node_modules/iobroker.js-controller/iobroker.js "$@"
|
||||||
|
else
|
||||||
|
node /opt/iobroker/node_modules/iobroker.js-controller/iobroker.js "$@"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
571
debian12/scripts/iobroker_startup.sh
Normal file
571
debian12/scripts/iobroker_startup.sh
Normal file
@@ -0,0 +1,571 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# bash strict mode
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
# Setting healthcheck status to "starting"
|
||||||
|
echo "starting" > /opt/.docker_config/.healthcheck
|
||||||
|
|
||||||
|
# Reading ENV
|
||||||
|
set +u
|
||||||
|
adminport=$IOB_ADMINPORT
|
||||||
|
avahi=$AVAHI
|
||||||
|
backitup=$IOB_BACKITUP_EXTDB
|
||||||
|
debug=$DEBUG
|
||||||
|
multihost=$IOB_MULTIHOST
|
||||||
|
offlinemode=$OFFLINE_MODE
|
||||||
|
objectsdbhost=$IOB_OBJECTSDB_HOST
|
||||||
|
objectsdbport=$IOB_OBJECTSDB_PORT
|
||||||
|
objectsdbtype=$IOB_OBJECTSDB_TYPE
|
||||||
|
objectsdbname=$IOB_OBJECTSDB_NAME # new for sentinel support
|
||||||
|
objectsdbpass=$IOB_OBJECTSDB_PASS # new for auth support
|
||||||
|
packages=$PACKAGES
|
||||||
|
permissioncheck=$PERMISSION_CHECK
|
||||||
|
setgid=$SETGID
|
||||||
|
setuid=$SETUID
|
||||||
|
statesdbhost=$IOB_STATESDB_HOST
|
||||||
|
statesdbport=$IOB_STATESDB_PORT
|
||||||
|
statesdbtype=$IOB_STATESDB_TYPE
|
||||||
|
statesdbname=$IOB_STATESDB_NAME # new for sentinel support
|
||||||
|
statesdbpass=$IOB_STATESDB_PASS # new for auth support
|
||||||
|
usbdevices=$USBDEVICES
|
||||||
|
set -u
|
||||||
|
|
||||||
|
pkill_timeout=10 # timeout for iobroker shutdown in seconds
|
||||||
|
|
||||||
|
# Stop on error function
|
||||||
|
stop_on_error() {
|
||||||
|
if [[ "$debug" == "true" ]]; then
|
||||||
|
echo " "
|
||||||
|
echo "[DEBUG] Debug mode prevents the container from exiting on errors."
|
||||||
|
echo "[DEBUG] This enables you to investigate or fix your issue on the command line."
|
||||||
|
echo "[DEBUG] If you want to stop or restart your container you have to do it manually."
|
||||||
|
echo "[DEBUG] IoBroker is not running!"
|
||||||
|
tail -f /dev/null
|
||||||
|
else
|
||||||
|
echo " "
|
||||||
|
echo "This Script will exit now."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# Getting date and time for logging
|
||||||
|
dati=$(date '+%Y-%m-%d %H:%M:%S')
|
||||||
|
|
||||||
|
# Logging header
|
||||||
|
echo " "
|
||||||
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
|
echo -n "$(printf -- '-%.0s' {1..25})" && echo -n " ""$dati"" " && echo "$(printf -- '-%.0s' {1..25})"
|
||||||
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
|
echo "----- -----"
|
||||||
|
echo "----- ██╗ ██████╗ ██████╗ ██████╗ ██████╗ ██╗ ██╗ ███████╗ ██████╗ -----"
|
||||||
|
echo "----- ██║ ██╔═══██╗ ██╔══██╗ ██╔══██╗ ██╔═══██╗ ██║ ██╔╝ ██╔════╝ ██╔══██╗ -----"
|
||||||
|
echo "----- ██║ ██║ ██║ ██████╔╝ ██████╔╝ ██║ ██║ █████╔╝ █████╗ ██████╔╝ -----"
|
||||||
|
echo "----- ██║ ██║ ██║ ██╔══██╗ ██╔══██╗ ██║ ██║ ██╔═██╗ ██╔══╝ ██╔══██╗ -----"
|
||||||
|
echo "----- ██║ ╚██████╔╝ ██████╔╝ ██║ ██║ ╚██████╔╝ ██║ ██╗ ███████╗ ██║ ██║ -----"
|
||||||
|
echo "----- ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚══════╝ ╚═╝ ╚═╝ -----"
|
||||||
|
echo "----- -----"
|
||||||
|
echo "----- Welcome to your ioBroker Docker container! -----"
|
||||||
|
echo "----- Startupscript is now running! -----"
|
||||||
|
echo "----- Please be patient! -----"
|
||||||
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
|
echo " "
|
||||||
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
|
echo "----- System Information -----"
|
||||||
|
echo -n "----- " && echo -n "$(printf "%-20s %-28s" arch: "$(uname -m)")" && echo " -----"
|
||||||
|
echo -n "----- " && echo -n "$(printf "%-20s %-28s" hostname: "$(hostname)")" && echo " -----"
|
||||||
|
echo "----- -----"
|
||||||
|
echo "----- Version Information -----"
|
||||||
|
echo -n "----- " && echo -n "$(printf "%-20s %-28s" image: "${VERSION}")" && echo " -----"
|
||||||
|
echo -n "----- " && echo -n "$(printf "%-20s %-28s" build: "${BUILD}")" && echo " -----"
|
||||||
|
echo -n "----- " && echo -n "$(printf "%-20s %-28s" node: "$(node -v)")" && echo " -----"
|
||||||
|
echo -n "----- " && echo -n "$(printf "%-20s %-28s" npm: "$(npm -v)")" && echo " -----"
|
||||||
|
echo "----- -----"
|
||||||
|
echo "----- Environment Variables -----"
|
||||||
|
if [[ "$adminport" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" IOB_ADMINPORT: "$adminport")" && echo " -----"; fi
|
||||||
|
if [[ "$avahi" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" AVAHI: "$avahi")" && echo " -----"; fi
|
||||||
|
if [[ "$debug" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" DEBUG: "$debug")" && echo " -----"; fi
|
||||||
|
if [[ "$backitup" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" IOB_BACKITUP_EXTDB: "$backitup")" && echo " -----"; fi
|
||||||
|
if [[ "$multihost" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" IOB_MULTIHOST: "$multihost")" && echo " -----"; fi
|
||||||
|
if [[ "$objectsdbtype" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" IOB_OBJECTSDB_TYPE: "$objectsdbtype")" && echo " -----"; fi
|
||||||
|
if [[ "$objectsdbhost" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" IOB_OBJECTSDB_HOST: "$objectsdbhost")" && echo " -----"; fi
|
||||||
|
if [[ "$objectsdbport" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" IOB_OBJECTSDB_PORT: "$objectsdbport")" && echo " -----"; fi
|
||||||
|
if [[ "$objectsdbname" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" IOB_OBJECTSDB_NAME: "$objectsdbname")" && echo " -----"; fi
|
||||||
|
if [[ "$objectsdbpass" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" IOB_OBJECTSDB_PASS: "***")" && echo " -----"; fi
|
||||||
|
if [[ "$statesdbtype" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" IOB_STATESDB_TYPE: "$statesdbtype")" && echo " -----"; fi
|
||||||
|
if [[ "$statesdbhost" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" IOB_STATESDB_HOST: "$statesdbhost")" && echo " -----"; fi
|
||||||
|
if [[ "$statesdbport" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" IOB_STATESDB_PORT: "$statesdbport")" && echo " -----"; fi
|
||||||
|
if [[ "$statesdbname" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" IOB_STATESDB_NAME: "$statesdbname")" && echo " -----"; fi
|
||||||
|
if [[ "$statesdbpass" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" IOB_STATESDB_PASS: "***")" && echo " -----"; fi
|
||||||
|
if [[ "$offlinemode" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" OFFLINE_MODE: "$offlinemode")" && echo " -----"; fi
|
||||||
|
if [[ "$packages" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" PACKAGES: "$packages")" && echo " -----"; fi
|
||||||
|
if [[ "$permissioncheck" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" PERMISSION_CHECK: "$permissioncheck")" && echo " -----"; fi
|
||||||
|
if [[ "$setgid" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" SETGID: "$setgid")" && echo " -----"; fi
|
||||||
|
if [[ "$setuid" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" SETUID: "$setuid")" && echo " -----"; fi
|
||||||
|
if [[ "$usbdevices" != "" ]]; then echo -n "----- " && echo -n "$(printf "%-20s %-28s" USBDEVICES: "$usbdevices")" && echo " -----"; fi
|
||||||
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
|
echo " "
|
||||||
|
|
||||||
|
# Debug logging notice
|
||||||
|
if [[ "$debug" == "true" ]]; then
|
||||||
|
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
|
||||||
|
echo "!!!! DEBUG LOG ACTIVE !!!!"
|
||||||
|
echo "!!!! Environment variable DEBUG is set to true. !!!!"
|
||||||
|
echo "!!!! This will extend the logging output and may slow down container start. !!!!"
|
||||||
|
echo "!!!! Please make sure to deactivate if no longer needed. !!!!"
|
||||||
|
echo "!!!! For more information see ioBroker Docker image documentation: !!!!"
|
||||||
|
echo "!!!! https://docs.buanet.de/iobroker-docker-image/docs/ !!!!"
|
||||||
|
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
|
||||||
|
echo " "
|
||||||
|
fi
|
||||||
|
|
||||||
|
#####
|
||||||
|
# STEP 1 - Preparing container
|
||||||
|
#####
|
||||||
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
|
echo "----- Step 1 of 5: Preparing container -----"
|
||||||
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
|
echo " "
|
||||||
|
|
||||||
|
# Actions running on first start only
|
||||||
|
if [[ -f /opt/.docker_config/.first_run ]]; then
|
||||||
|
# Updating Linux packages
|
||||||
|
if [[ "$offlinemode" = "true" ]]; then
|
||||||
|
echo "OFFLINE_MODE is \"true\". Skipping Linux package updates on first run."
|
||||||
|
else
|
||||||
|
bash /opt/scripts/setup_packages.sh -update
|
||||||
|
fi
|
||||||
|
echo " "
|
||||||
|
# Installing packages from ENV
|
||||||
|
if [[ "$packages" != "" && "$offlinemode" = "true" ]]; then
|
||||||
|
echo "PACKAGES is set, but OFFLINE_MODE is \"true\". Skipping Linux package installation."
|
||||||
|
elif [[ "$packages" != "" ]]; then
|
||||||
|
echo "PACKAGES is set. Installing the following additional Linux packages: ""$packages"
|
||||||
|
bash /opt/scripts/setup_packages.sh -install
|
||||||
|
fi
|
||||||
|
echo " "
|
||||||
|
# Register maintenance script
|
||||||
|
echo -n "Registering maintenance script as command... "
|
||||||
|
echo "alias maintenance='/opt/scripts/maintenance.sh'" >> /etc/bash.bashrc
|
||||||
|
echo "alias maint='/opt/scripts/maintenance.sh'" >> /etc/bash.bashrc
|
||||||
|
echo "alias m='/opt/scripts/maintenance.sh'" >> /etc/bash.bashrc
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "This is not the first run of this container. Skipping first run preparation."
|
||||||
|
fi
|
||||||
|
echo " "
|
||||||
|
|
||||||
|
# Setting UID and/ or GID
|
||||||
|
if [[ "$setgid" != "$(cat /etc/group | grep 'iobroker:' | cut -d':' -f3)" || "$setuid" != "$(cat /etc/passwd | grep 'iobroker:' | cut -d':' -f3)" ]]; then
|
||||||
|
echo "SETUID and/ or SETGID are set to custom values."
|
||||||
|
echo -n "Changing UID to \"""$setuid""\" and GID to \"""$setgid""\"... "
|
||||||
|
usermod -u "$setuid" iobroker
|
||||||
|
groupmod -og "$setgid" iobroker
|
||||||
|
echo "Done."
|
||||||
|
echo " "
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Change directory for next steps
|
||||||
|
cd /opt/iobroker
|
||||||
|
|
||||||
|
#####
|
||||||
|
# STEP 2 - Detecting ioBroker-Installation
|
||||||
|
#####
|
||||||
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
|
echo "----- Step 2 of 5: Detecting ioBroker installation -----"
|
||||||
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
|
echo " "
|
||||||
|
|
||||||
|
if [[ `find /opt/iobroker -type f | wc -l` -lt 1 ]]; then
|
||||||
|
echo "There is no data detected in /opt/iobroker."
|
||||||
|
echo -n "Restoring initial ioBroker installation... "
|
||||||
|
tar -xf /opt/initial_iobroker.tar -C /
|
||||||
|
echo "Done."
|
||||||
|
elif [[ -f /opt/iobroker/iobroker ]]; then
|
||||||
|
echo "Existing installation of ioBroker detected in \"/opt/iobroker\"."
|
||||||
|
elif [[ "$(ls *_backupiobroker.tar.gz 2> /dev/null | wc -l)" != "0" && "$(tar -ztvf /opt/iobroker/*_backupiobroker.tar.gz "backup/backup.json" 2> /dev/null | wc -l)" != "0" ]]; then
|
||||||
|
echo "IoBroker backup file detected in /opt/iobroker."
|
||||||
|
if [[ "$debug" == "true" ]]; then echo "[DEBUG] Backup file name: " "$(ls *_backupiobroker.tar.gz)"; fi
|
||||||
|
echo "Since Docker Image v8, automatic initial restore is no longer supported!"
|
||||||
|
echo "IoBroker will start with a fresh installation, while your backup file will be copied into the backup directory."
|
||||||
|
echo "You will be able to restore your backup file manually by using the backitup adapter or the containers maintenance script."
|
||||||
|
echo "For more information see ioBroker Docker Image Docs (https://docs.buanet.de/iobroker-docker-image/docs/)."
|
||||||
|
echo " "
|
||||||
|
echo -n "Copying backup file and restoring initial ioBroker installation... "
|
||||||
|
mv /opt/iobroker/*.tar.gz /opt/
|
||||||
|
tar -xf /opt/initial_iobroker.tar -C /
|
||||||
|
mkdir /opt/iobroker/backups
|
||||||
|
mv /opt/*.tar.gz /opt/iobroker/backups/
|
||||||
|
# fixing permission errors during restore
|
||||||
|
chown -R "$setuid":"$setgid" /opt/iobroker
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "There is data detected in /opt/iobroker but it looks like it is no instance of ioBroker!"
|
||||||
|
if [[ "$debug" == "true" ]]; then
|
||||||
|
echo "[DEBUG] Detected files:"
|
||||||
|
ls -al
|
||||||
|
fi
|
||||||
|
echo "Please check/ recreate mounted folder or volume and try again."
|
||||||
|
stop_on_error
|
||||||
|
fi
|
||||||
|
echo " "
|
||||||
|
|
||||||
|
#####
|
||||||
|
# STEP 3 - Checking ioBroker-Installation
|
||||||
|
#####
|
||||||
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
|
echo "----- Step 3 of 5: Checking ioBroker installation -----"
|
||||||
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
|
echo " "
|
||||||
|
|
||||||
|
# Backing up original iobroker executable to fix sudo bug with gosu
|
||||||
|
if [[ -n $(cmp /opt/scripts/iobroker.sh /opt/iobroker/iobroker) ]]; then
|
||||||
|
echo -n "Replacing ioBroker executable to fix sudo bug... "
|
||||||
|
cp -a /opt/iobroker/iobroker /opt/iobroker/iobroker.bak
|
||||||
|
cp -f /opt/scripts/iobroker.sh /opt/iobroker/iobroker
|
||||||
|
chmod 755 /opt/iobroker/iobroker
|
||||||
|
echo "Done."
|
||||||
|
echo " "
|
||||||
|
fi
|
||||||
|
|
||||||
|
# (Re)Setting permissions to "/opt/iobroker" and "/opt/scripts"
|
||||||
|
if [[ "$permissioncheck" == "false" ]]; then
|
||||||
|
echo "PERMISSION_CHECK is set to false. Use this at your own risk!"
|
||||||
|
else
|
||||||
|
echo -n "(Re)setting permissions (This might take a while! Please be patient!)... "
|
||||||
|
chown -R "$setuid":"$setgid" /opt/iobroker
|
||||||
|
chown -R "$setuid":"$setgid" /opt/scripts
|
||||||
|
chown -R "$setuid":"$setgid" /opt/.docker_config
|
||||||
|
echo "Done."
|
||||||
|
fi
|
||||||
|
echo " "
|
||||||
|
|
||||||
|
# Checking multihost and db setup
|
||||||
|
if [[ "$multihost" == "master" || "$multihost" == "slave" ]]; then
|
||||||
|
# multihost enabled
|
||||||
|
if [[ "$multihost" == "master" ]]; then
|
||||||
|
set +e
|
||||||
|
bash /opt/scripts/setup_iob_db.sh -master
|
||||||
|
return=$?
|
||||||
|
set -e
|
||||||
|
if [[ "$return" -ne 0 ]]; then stop_on_error; fi
|
||||||
|
elif [[ "$multihost" == "slave" ]]; then
|
||||||
|
set +e
|
||||||
|
bash /opt/scripts/setup_iob_db.sh -slave
|
||||||
|
return=$?
|
||||||
|
set -e
|
||||||
|
if [[ "$return" -ne 0 ]]; then stop_on_error; fi
|
||||||
|
fi
|
||||||
|
elif [[ "$multihost" == "" || "$multihost" == "false" ]]; then
|
||||||
|
# no multihost, only debug output
|
||||||
|
if [[ "$debug" == "true" ]]; then
|
||||||
|
echo "[DEBUG] Checking multihost settings... "
|
||||||
|
echo "[DEBUG] No multihost settings detected."
|
||||||
|
echo "[DEBUG] Done."
|
||||||
|
echo " "
|
||||||
|
fi
|
||||||
|
# checking custom objects db settings
|
||||||
|
if [[ "$objectsdbtype" != "" || "$objectsdbhost" != "" || "$objectsdbport" != "" ]]; then
|
||||||
|
set +e
|
||||||
|
bash /opt/scripts/setup_iob_db.sh -objectsdb
|
||||||
|
return=$?
|
||||||
|
set -e
|
||||||
|
if [[ "$return" -ne 0 ]]; then stop_on_error; fi
|
||||||
|
else
|
||||||
|
#no custom objects db settings, only debug output
|
||||||
|
if [[ "$debug" == "true" ]]; then
|
||||||
|
echo "[DEBUG] Checking custom objects db settings... "
|
||||||
|
echo "[DEBUG] No custom objects db settings detected."
|
||||||
|
echo "[DEBUG] Done."
|
||||||
|
echo " "
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
# checking custom states db settings
|
||||||
|
if [[ "$statesdbtype" != "" || "$statesdbhost" != "" || "$statesdbport" != "" ]]; then
|
||||||
|
set +e
|
||||||
|
bash /opt/scripts/setup_iob_db.sh -statesdb
|
||||||
|
return=$?
|
||||||
|
set -e
|
||||||
|
if [[ "$return" -ne 0 ]]; then stop_on_error; fi
|
||||||
|
else
|
||||||
|
#no custom states db settings, only debug output
|
||||||
|
if [[ "$debug" == "true" ]]; then
|
||||||
|
echo "[DEBUG] Checking custom states db settings... "
|
||||||
|
echo "[DEBUG] No custom states db settings detected."
|
||||||
|
echo "[DEBUG] Done."
|
||||||
|
echo " "
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "IOB_MULTIHOST is set, but the value is not valid. Please check your configuration."
|
||||||
|
if [[ "$debug" == "true" ]]; then echo "[DEBUG] IOB_MULTIHOST = ""$multihost"; fi
|
||||||
|
echo "For more information see ioBroker Docker Image Docs (https://docs.buanet.de/iobroker-docker-image/docs/#environment-variables-env)."
|
||||||
|
stop_on_error
|
||||||
|
fi
|
||||||
|
|
||||||
|
# if restored a fresh install, running "iob setup first" for database init (but not on slaves!), otherwise check database connection
|
||||||
|
if [[ -f /opt/iobroker/.fresh_install && "$multihost" != "slave" ]]; then
|
||||||
|
echo -n "Initializing a fresh installation of ioBroker... "
|
||||||
|
set +e
|
||||||
|
bash iob setup first > /opt/iobroker/log/iob_setup_first.log 2>&1
|
||||||
|
return=$?
|
||||||
|
set -e
|
||||||
|
rm -f /opt/iobroker/.fresh_install
|
||||||
|
if [[ "$return" -ne 0 ]]; then
|
||||||
|
echo "Failed."
|
||||||
|
echo "For more details see \"/opt/iobroker/log/iob_setup_first.log\"."
|
||||||
|
echo "Please check your configuration and try again."
|
||||||
|
stop_on_error
|
||||||
|
fi
|
||||||
|
echo "Done."
|
||||||
|
echo " "
|
||||||
|
else
|
||||||
|
echo -n "Checking Database connection... "
|
||||||
|
set +e
|
||||||
|
if iob uuid &> /dev/null; then
|
||||||
|
echo "Done."
|
||||||
|
echo " "
|
||||||
|
else
|
||||||
|
errormsg=$(iob uuid 2>&1 | sed 's/^/[DEBUG] /')
|
||||||
|
echo "Failed."
|
||||||
|
if [[ "$debug" == "true" ]]; then
|
||||||
|
echo "[DEBUG] Error message: "
|
||||||
|
echo "$errormsg"
|
||||||
|
fi
|
||||||
|
echo "Please check your configuration and try again."
|
||||||
|
echo "For more information see ioBroker Docker Image Docs (https://docs.buanet.de/iobroker-docker-image/docs)."
|
||||||
|
stop_on_error
|
||||||
|
fi
|
||||||
|
set -e
|
||||||
|
fi
|
||||||
|
|
||||||
|
# hostname check
|
||||||
|
if [[ "$multihost" == "slave" ]]; then
|
||||||
|
echo "IOB_MULTIHOST is set to \"slave\". Hostname check will be skipped."
|
||||||
|
echo " "
|
||||||
|
else
|
||||||
|
# get admin instance and hostname
|
||||||
|
set +e
|
||||||
|
admininstance=$(bash iobroker list instances | grep 'enabled' | grep -m 1 -o 'system.adapter.admin..')
|
||||||
|
set -e
|
||||||
|
if [[ "$admininstance" != "" ]]; then
|
||||||
|
if [[ "$debug" == "true" ]]; then echo "[DEBUG] Detected admin instance is:" "$admininstance"; fi
|
||||||
|
adminhostname=$(bash iobroker object get "$admininstance" --pretty | grep -oP '(?<="host": ")[^"]*')
|
||||||
|
if [[ "$debug" == "true" ]]; then echo "[DEBUG] Detected admin hostname is:" "$adminhostname"; fi
|
||||||
|
else
|
||||||
|
set +e
|
||||||
|
admininstance=$(bash iobroker list instances | grep 'disabled' | grep -m 1 -o 'system.adapter.admin..')
|
||||||
|
set -e
|
||||||
|
if [[ "$admininstance" != "" ]]; then
|
||||||
|
if [[ "$debug" == "true" ]]; then echo "[DEBUG] Detected admin instance is disabled."; fi
|
||||||
|
if [[ "$debug" == "true" ]]; then echo "[DEBUG] Detected admin instance is:" "$admininstance"; fi
|
||||||
|
adminhostname=$(bash iobroker object get "$admininstance" --pretty | grep -oP '(?<="host": ")[^"]*')
|
||||||
|
if [[ "$debug" == "true" ]]; then echo "[DEBUG] Detected admin hostname is:" "$adminhostname"; fi
|
||||||
|
else
|
||||||
|
echo "There was a problem detecting the admin instance of your iobroker."
|
||||||
|
echo "Make sure the ioBroker installation you use has an admin instance or try again with a fresh installation and restore your configuration."
|
||||||
|
echo "For more details see https://docs.buanet.de/iobroker-docker-image/docs/#restore"
|
||||||
|
stop_on_error
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
# check hostname
|
||||||
|
if [[ "$adminhostname" != "" && "$adminhostname" != "$(hostname)" ]]; then
|
||||||
|
echo "Hostname in ioBroker does not match the hostname of this container."
|
||||||
|
echo -n "Updating hostname to \"""$(hostname)""\"... "
|
||||||
|
bash iobroker host "$adminhostname"
|
||||||
|
echo "Done."
|
||||||
|
echo " "
|
||||||
|
elif [[ "$adminhostname" = "$(hostname)" ]]; then
|
||||||
|
echo "Hostname in ioBroker matches the hostname of this container."
|
||||||
|
echo "No action required."
|
||||||
|
echo " "
|
||||||
|
else
|
||||||
|
echo "There was a problem checking the hostname."
|
||||||
|
stop_on_error
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# extended debug output
|
||||||
|
if [[ "$debug" == "true" && "$multihost" != "slave" ]]; then
|
||||||
|
echo "[DEBUG] Collecting some more ioBroker debug information... "
|
||||||
|
echo " "
|
||||||
|
# get information and send to array
|
||||||
|
IFS=$'\n'
|
||||||
|
instances_array=("$(gosu iobroker iob list instances)")
|
||||||
|
repos_array=("$(gosu iobroker iob repo list)")
|
||||||
|
updates_array=("$(gosu iobroker iob update)")
|
||||||
|
# list iob instances
|
||||||
|
echo "[DEBUG] ##### iobroker list instances #####"
|
||||||
|
for i in "${instances_array[@]}"
|
||||||
|
do
|
||||||
|
echo "$i"
|
||||||
|
done
|
||||||
|
echo " "
|
||||||
|
echo "[DEBUG] ##### iobroker repo list #####"
|
||||||
|
for i in "${repos_array[@]}"
|
||||||
|
do
|
||||||
|
echo "$i"
|
||||||
|
done
|
||||||
|
echo " "
|
||||||
|
echo "[DEBUG] ##### iobroker update #####"
|
||||||
|
for i in "${updates_array[@]}"
|
||||||
|
do
|
||||||
|
echo "$i"
|
||||||
|
done
|
||||||
|
echo " "
|
||||||
|
unset IFS
|
||||||
|
fi
|
||||||
|
|
||||||
|
#####
|
||||||
|
# STEP 4 - Setting up special sessting for ioBroker-adapters
|
||||||
|
#####
|
||||||
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
|
echo "----- Step 4 of 5: Applying special settings -----"
|
||||||
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
|
echo " "
|
||||||
|
|
||||||
|
echo "Some adapters have special requirements/ settings which can be activated by the use of environment variables."
|
||||||
|
echo "For more information see ioBroker Docker Image Docs (https://docs.buanet.de/iobroker-docker-image/docs/)."
|
||||||
|
echo " "
|
||||||
|
|
||||||
|
# Checking ENV for Adminport
|
||||||
|
if [[ "$adminport" != "" && "$multihost" != "slave" ]]; then
|
||||||
|
adminportold=$(bash iobroker object get "$admininstance" --pretty | grep -oP '(?<="port": )[^,]*')
|
||||||
|
admininstanceshort=$(echo "$admininstance" | grep -m 1 -o 'admin..')
|
||||||
|
if [[ "$adminport" != "$adminportold" ]]; then
|
||||||
|
echo "IOB_ADMINPORT is set and does not match port configured in ioBroker."
|
||||||
|
if [[ "$debug" == "true" ]]; then echo "[DEBUG] Detected Admin Port in ioBroker: " "$adminportold"; fi
|
||||||
|
echo "Setting Adminport to \"""$adminport""\"... "
|
||||||
|
bash iobroker set "$admininstanceshort" --port "$adminport"
|
||||||
|
echo "Done."
|
||||||
|
echo " "
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Checking ENV for Backitup (external database backups)
|
||||||
|
if [[ "$backitup" == "true" ]]; then
|
||||||
|
echo -n "IOB_BACKITUP_EXTDB is \"true\". Unlocking features..."
|
||||||
|
echo "true" > /opt/.docker_config/.backitup
|
||||||
|
echo "Done."
|
||||||
|
echo " "
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Checking ENV for AVAHI
|
||||||
|
if [[ "$avahi" = "true" && "$offlinemode" = "true" ]]; then
|
||||||
|
echo "AVAHI is \"true\", but OFFLINE_MODE is also \"true\". Skipping Avahi daemon setup."
|
||||||
|
elif [[ "$avahi" = "true" ]]; then
|
||||||
|
echo "AVAHI is \"true\". Running setup script... "
|
||||||
|
chmod 755 /opt/scripts/setup_avahi.sh
|
||||||
|
bash /opt/scripts/setup_avahi.sh
|
||||||
|
echo "Done."
|
||||||
|
echo " "
|
||||||
|
fi
|
||||||
|
|
||||||
|
# checking ENV for USBDEVICES
|
||||||
|
if [[ "$usbdevices" != "" && "$usbdevices" != "none" ]]; then
|
||||||
|
echo "USBDEVICES is set."
|
||||||
|
IFS=';' read -ra devicearray <<< "$usbdevices"
|
||||||
|
for i in "${devicearray[@]}"
|
||||||
|
do
|
||||||
|
if [[ -e "$i" ]]; then
|
||||||
|
echo -n "Setting permissions for \"""$i""\"... "
|
||||||
|
chown root:dialout "$i"
|
||||||
|
chmod g+rw "$i"
|
||||||
|
echo "Done."
|
||||||
|
if [[ "$debug" == "true" ]]; then echo "[DEBUG] Permissions set: " "$(ls -al "$i")"; fi
|
||||||
|
else
|
||||||
|
echo "Looks like the device \"""$i""\" does not exist."
|
||||||
|
echo "Did you mount it correctly by using the \"--device\" option?"
|
||||||
|
echo "For more information see ioBroker Docker Image Docs (https://docs.buanet.de/iobroker-docker-image/docs/#mounting-usb-devices)."
|
||||||
|
stop_on_error
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
echo " "
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Checking for Userscripts in /opt/userscripts
|
||||||
|
if [[ $(find /opt/userscripts -type f | wc -l) -lt 1 ]]; then
|
||||||
|
echo -n "There is no data detected in /opt/userscripts. Restoring exapmple userscripts... "
|
||||||
|
tar -xf /opt/initial_userscripts.tar -C /
|
||||||
|
chmod 755 /opt/userscripts/userscript_firststart_example.sh
|
||||||
|
chmod 755 /opt/userscripts/userscript_everystart_example.sh
|
||||||
|
echo "Done."
|
||||||
|
elif [[ -f /opt/userscripts/userscript_firststart.sh || -f /opt/userscripts/userscript_everystart.sh ]]; then
|
||||||
|
if [[ -f /opt/userscripts/userscript_firststart.sh && -f /opt/.docker_config/.first_run ]]; then
|
||||||
|
echo "Userscript for first start detected and this is the first start of a new container."
|
||||||
|
echo "Running userscript_firststart.sh... "
|
||||||
|
chmod 755 /opt/userscripts/userscript_firststart.sh
|
||||||
|
bash /opt/userscripts/userscript_firststart.sh
|
||||||
|
echo "Done."
|
||||||
|
fi
|
||||||
|
if [[ -f /opt/userscripts/userscript_everystart.sh ]]; then
|
||||||
|
echo "Userscript for every start detected. Running userscript_everystart.sh... "
|
||||||
|
chmod 755 /opt/userscripts/userscript_everystart.sh
|
||||||
|
bash /opt/userscripts/userscript_everystart.sh
|
||||||
|
echo "Done."
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
echo " "
|
||||||
|
|
||||||
|
# Removing first run an fresh install markers when exists
|
||||||
|
if [[ -f /opt/.docker_config/.first_run ]]; then rm -f /opt/.docker_config/.first_run; fi
|
||||||
|
if [[ -f /opt/iobroker/.fresh_install ]]; then rm -f /opt/iobroker/.fresh_install; fi
|
||||||
|
|
||||||
|
#####
|
||||||
|
# STEP 5 - Starting ioBroker
|
||||||
|
#####
|
||||||
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
|
echo "----- Step 5 of 5: ioBroker startup -----"
|
||||||
|
echo "$(printf -- '-%.0s' {1..80})"
|
||||||
|
echo " "
|
||||||
|
echo "Starting ioBroker... "
|
||||||
|
echo " "
|
||||||
|
echo "##### #### ### ## # iobroker.js-controller log output # ## ### #### #####"
|
||||||
|
|
||||||
|
# Setting healthcheck status to "running"
|
||||||
|
echo "running" > /opt/.docker_config/.healthcheck
|
||||||
|
|
||||||
|
# Function for graceful shutdown by SIGTERM signal
|
||||||
|
shut_down() {
|
||||||
|
echo " "
|
||||||
|
echo "Recived termination signal (SIGTERM)."
|
||||||
|
echo "Shutting down ioBroker... "
|
||||||
|
|
||||||
|
local status timeout
|
||||||
|
|
||||||
|
timeout="$(date --date="now + ""$pkill_timeout"" sec" +%s)"
|
||||||
|
pkill -u iobroker -f iobroker.js-controller
|
||||||
|
status=$?
|
||||||
|
if (( status >= 2 )); then # syntax error or fatal error
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if (( status == 1 )); then # no processes matched
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
# pgrep exits with status 1 when there are no matches
|
||||||
|
while pgrep -u iobroker > /dev/null; (( $? != 1 )); do
|
||||||
|
if (($(date +%s) > timeout)); then
|
||||||
|
echo -e "\nTimeout reached. Killing remaining processes... "
|
||||||
|
pkill --signal SIGKILL -u iobroker
|
||||||
|
echo "Done. Have a nice day!"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo -n "."
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
|
||||||
|
echo -e '\nDone. Have a nice day!'
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
|
||||||
|
# Trap to get signal for graceful shutdown
|
||||||
|
trap 'shut_down' SIGTERM
|
||||||
|
|
||||||
|
# IoBroker start
|
||||||
|
gosu iobroker node node_modules/iobroker.js-controller/controller.js & wait
|
||||||
|
|
||||||
|
# Fallback process for keeping container running when ioBroker is stopped for maintenance (e.g. js-controller update)
|
||||||
|
gosu iobroker tail -f /dev/null
|
||||||
318
debian12/scripts/maintenance.sh
Normal file
318
debian12/scripts/maintenance.sh
Normal file
@@ -0,0 +1,318 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# bash strict mode
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
autoconfirm= # can be set to 'yes' by command line option
|
||||||
|
killbyname= # can be set to 'yes' by command line option (undocumented, only for use with backitup restore scripts)
|
||||||
|
healthcheck=/opt/.docker_config/.healthcheck # path of healthcheck file
|
||||||
|
pkill_timeout=10 # timeout for stopping iobroker in seconds
|
||||||
|
|
||||||
|
# check for user root
|
||||||
|
if [ "$(id -u)" -eq 0 ]; then
|
||||||
|
echo "WARNING! This script should be executed as iobroker user! Please change user and try again."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# display help text
|
||||||
|
display_help() {
|
||||||
|
echo "This script helps you manage your ioBroker container!"
|
||||||
|
echo " "
|
||||||
|
echo "Usage: maintenance [ COMMAND ] [ OPTION ]"
|
||||||
|
echo " maint [ COMMAND ] [ OPTION ]"
|
||||||
|
echo " m [ COMMAND ] [ OPTION ]"
|
||||||
|
echo " "
|
||||||
|
echo "COMMANDS"
|
||||||
|
echo "------------------"
|
||||||
|
echo " status > reports the current state of maintenance mode"
|
||||||
|
echo " on > switches mantenance mode ON"
|
||||||
|
echo " off > switches mantenance mode OFF and stops or restarts the container"
|
||||||
|
echo " upgrade > puts the container to maintenance mode and upgrades ioBroker"
|
||||||
|
echo " restart > stops iobroker and stops or restarts the container"
|
||||||
|
echo " restore > stops iobroker and restores the last backup"
|
||||||
|
echo " help > shows this help"
|
||||||
|
echo " "
|
||||||
|
echo "OPTIONS"
|
||||||
|
echo "------------------"
|
||||||
|
echo " -y|--yes > confirms the used command without asking"
|
||||||
|
echo " -h|--help > shows this help"
|
||||||
|
echo " "
|
||||||
|
}
|
||||||
|
|
||||||
|
# check maintenance enabled
|
||||||
|
maintenance_enabled() {
|
||||||
|
[[ -f "$healthcheck" && "$(cat "$healthcheck")" == maintenance ]]
|
||||||
|
}
|
||||||
|
|
||||||
|
# check status starting
|
||||||
|
check_starting() {
|
||||||
|
[[ -f "$healthcheck" && "$(cat "$healthcheck")" == starting ]]
|
||||||
|
}
|
||||||
|
|
||||||
|
# display maintenance status
|
||||||
|
maintenance_status() {
|
||||||
|
if maintenance_enabled; then
|
||||||
|
echo "Maintenance mode is turned ON."
|
||||||
|
else
|
||||||
|
echo "Maintenance mode is turned OFF."
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# enable maintenance mode
|
||||||
|
enable_maintenance() {
|
||||||
|
if maintenance_enabled; then
|
||||||
|
echo "Maintenance mode is already turned ON."
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "You are now going to stop ioBroker and activate maintenance mode for this container."
|
||||||
|
|
||||||
|
if [[ "$killbyname" != yes ]]; then
|
||||||
|
if [[ "$autoconfirm" != yes ]]; then
|
||||||
|
local reply
|
||||||
|
|
||||||
|
read -rp 'Do you want to continue [yes/no]? ' reply
|
||||||
|
if [[ "$reply" == y || "$reply" == Y || "$reply" == yes ]]; then
|
||||||
|
: # continue
|
||||||
|
else
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Activating maintenance mode..."
|
||||||
|
echo "maintenance" > "$healthcheck"
|
||||||
|
sleep 1
|
||||||
|
echo -n "Stopping ioBroker..."
|
||||||
|
stop_iob
|
||||||
|
}
|
||||||
|
|
||||||
|
# disable maintenance mode
|
||||||
|
disable_maintenance() {
|
||||||
|
if ! maintenance_enabled; then
|
||||||
|
echo "Maintenance mode is already turned OFF."
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "You are now going to deactivate maintenance mode for this container."
|
||||||
|
echo "Depending on the restart policy, your container will be stopped or restarted immediately."
|
||||||
|
|
||||||
|
if [[ "$autoconfirm" != yes ]]; then
|
||||||
|
local reply
|
||||||
|
|
||||||
|
read -rp 'Do you want to continue [yes/no]? ' reply
|
||||||
|
if [[ "$reply" == y || "$reply" == Y || "$reply" == yes ]]; then
|
||||||
|
: # continue
|
||||||
|
else
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Deactivating maintenance mode and forcing container to stop or restart..."
|
||||||
|
echo "stopping" > "$healthcheck"
|
||||||
|
pkill -u iobroker
|
||||||
|
echo "Done."
|
||||||
|
}
|
||||||
|
|
||||||
|
# upgrade js-controller
|
||||||
|
upgrade_jscontroller() {
|
||||||
|
echo "You are now going to upgrade your js-controller."
|
||||||
|
echo "As this will change data in /opt/iobroker, make sure you have a backup!"
|
||||||
|
echo "During the upgrade process, the container will automatically switch into maintenance mode and stop ioBroker."
|
||||||
|
echo "Depending on the restart policy, your container will be stopped or restarted automatically after the upgrade."
|
||||||
|
|
||||||
|
if [[ "$autoconfirm" != yes ]]; then
|
||||||
|
local reply
|
||||||
|
|
||||||
|
read -rp 'Do you want to continue [yes/no]? ' reply
|
||||||
|
if [[ "$reply" == y || "$reply" == Y || "$reply" == yes ]]; then
|
||||||
|
: # continue
|
||||||
|
else
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! maintenance_enabled > /dev/null; then
|
||||||
|
autoconfirm=yes
|
||||||
|
enable_maintenance
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Upgrading js-controller..."
|
||||||
|
iobroker update
|
||||||
|
sleep 1
|
||||||
|
iobroker upgrade self
|
||||||
|
sleep 1
|
||||||
|
echo "Done."
|
||||||
|
|
||||||
|
echo "Container will be stopped or restarted in 5 seconds..."
|
||||||
|
sleep 5
|
||||||
|
echo "stopping" > "$healthcheck"
|
||||||
|
pkill -u iobroker
|
||||||
|
}
|
||||||
|
|
||||||
|
# stop iobroker and wait until all processes stopped or pkill_timeout is reached
|
||||||
|
stop_iob() {
|
||||||
|
local status timeout
|
||||||
|
|
||||||
|
timeout="$(date --date="now + $pkill_timeout sec" +%s)"
|
||||||
|
pkill -u iobroker -f 'iobroker.js-controller[^/]*$'
|
||||||
|
status=$?
|
||||||
|
if (( status >= 2 )); then # syntax error or fatal error
|
||||||
|
return 1
|
||||||
|
elif (( status == 1 )); then # no processes matched
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$killbyname" != yes ]]; then
|
||||||
|
# pgrep exits with status 1 when there are no matches
|
||||||
|
while pgrep -u iobroker -f 'io.' > /dev/null; (( $? != 1 )); do
|
||||||
|
if (($(date +%s) > timeout)); then
|
||||||
|
echo -e "\nTimeout reached. Killing remaining processes..."
|
||||||
|
pgrep --list-full -u iobroker
|
||||||
|
pkill --signal SIGKILL -u iobroker -f 'io.'
|
||||||
|
echo "\nDone."
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
sleep 1
|
||||||
|
echo -n "."
|
||||||
|
done
|
||||||
|
else
|
||||||
|
for ((i=0; i<3; i++)); do
|
||||||
|
sleep 1
|
||||||
|
echo -n "."
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo -e "Done."
|
||||||
|
}
|
||||||
|
|
||||||
|
# restart container
|
||||||
|
restart_container() {
|
||||||
|
echo "You are now going to call a restart of your container."
|
||||||
|
echo "Restarting will work depending on the configured restart policy."
|
||||||
|
|
||||||
|
if [[ "$autoconfirm" != yes ]]; then
|
||||||
|
local reply
|
||||||
|
|
||||||
|
read -rp 'Do you want to continue [yes/no]? ' reply
|
||||||
|
if [[ "$reply" == y || "$reply" == Y || "$reply" == yes ]]; then
|
||||||
|
: # continue
|
||||||
|
else
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! maintenance_enabled > /dev/null; then
|
||||||
|
echo -n "Stopping ioBroker..."
|
||||||
|
stop_iob
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Container will be stopped or restarted in 5 seconds..."
|
||||||
|
sleep 5
|
||||||
|
echo "stopping" > "$healthcheck"
|
||||||
|
pkill -u iobroker
|
||||||
|
}
|
||||||
|
|
||||||
|
# restore iobroker
|
||||||
|
restore_iobroker() {
|
||||||
|
echo "You are now going to perform a restore of your iobroker."
|
||||||
|
echo "During the restore process, the container will automatically switch into maintenance mode and stop ioBroker."
|
||||||
|
echo "Depending on the restart policy, your container will be stopped or restarted automatically after the restore."
|
||||||
|
|
||||||
|
if [[ "$autoconfirm" != yes ]]; then
|
||||||
|
local reply
|
||||||
|
|
||||||
|
read -rp 'Do you want to continue [yes/no]? ' reply
|
||||||
|
if [[ "$reply" == y || "$reply" == Y || "$reply" == yes ]]; then
|
||||||
|
: # continue
|
||||||
|
else
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if check_starting > /dev/null; then
|
||||||
|
echo "Startup script is still running."
|
||||||
|
echo "Please check container log and wait until ioBroker is sucessfully started."
|
||||||
|
echo "Then try again."
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! maintenance_enabled > /dev/null; then
|
||||||
|
autoconfirm=yes
|
||||||
|
enable_maintenance
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo -n "Restoring ioBroker... "
|
||||||
|
set +e
|
||||||
|
bash iobroker restore 0 > /opt/iobroker/log/restore.log 2>&1
|
||||||
|
return=$?
|
||||||
|
set -e
|
||||||
|
if [[ "$return" -ne 0 ]]; then
|
||||||
|
echo "Failed."
|
||||||
|
echo "For more details see \"/opt/iobroker/log/restore.log\"."
|
||||||
|
echo "Please check backup file location and permissions and try again."
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
echo "Done."
|
||||||
|
echo " "
|
||||||
|
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
|
||||||
|
echo "!!!! IMPORTANT NOTE !!!!"
|
||||||
|
echo "!!!! The maintenance script restored iobroker from a backup file. !!!!"
|
||||||
|
echo "!!!! Check /opt/iobroker/log/restore.log to see if restore was successful. !!!!"
|
||||||
|
echo "!!!! When ioBroker starts it will reinstall all Adapters automatically. !!!!"
|
||||||
|
echo "!!!! This might be take a looooong time! Please be patient! !!!!"
|
||||||
|
echo "!!!! You can view installation process by taking a look at ioBroker log. !!!!"
|
||||||
|
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
|
||||||
|
sleep 10
|
||||||
|
echo "Container will be stopped or restarted in 10 seconds..."
|
||||||
|
sleep 10
|
||||||
|
echo "stopping" > "$healthcheck"
|
||||||
|
pkill -u iobroker
|
||||||
|
}
|
||||||
|
|
||||||
|
# parsing commands and options
|
||||||
|
|
||||||
|
# default command to run unless another was given
|
||||||
|
run=(display_help)
|
||||||
|
|
||||||
|
for arg in "$@"; do
|
||||||
|
case $arg in
|
||||||
|
help|-h|--help)
|
||||||
|
run=(display_help)
|
||||||
|
;;
|
||||||
|
status|stat|s)
|
||||||
|
run=(maintenance_status)
|
||||||
|
;;
|
||||||
|
on)
|
||||||
|
run=(enable_maintenance)
|
||||||
|
;;
|
||||||
|
off)
|
||||||
|
run=(disable_maintenance)
|
||||||
|
;;
|
||||||
|
upgrade|upgr|u)
|
||||||
|
run=(upgrade_jscontroller)
|
||||||
|
;;
|
||||||
|
restart|rest|r)
|
||||||
|
run=(restart_container)
|
||||||
|
;;
|
||||||
|
restore)
|
||||||
|
run=(restore_iobroker)
|
||||||
|
;;
|
||||||
|
-y|--yes)
|
||||||
|
autoconfirm=yes
|
||||||
|
;;
|
||||||
|
-kbn|--killbyname)
|
||||||
|
killbyname=yes
|
||||||
|
;;
|
||||||
|
--)
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
>&2 echo "Unknown parameter: $arg"
|
||||||
|
>&2 echo "Please try again or see help (help|-h|--help)."
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
"${run[@]}"
|
||||||
38
debian12/scripts/setup_avahi.sh
Normal file
38
debian12/scripts/setup_avahi.sh
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ -e /usr/sbin/avahi-daemon ] && [ -e /var/run/dbus ]
|
||||||
|
then
|
||||||
|
echo "[setup_avahi.sh] Avahi is already installed. Nothing to do here."
|
||||||
|
else
|
||||||
|
echo -n "[setup_avahi.sh] Avahi-daemon is NOT installed. Going to install it now... "
|
||||||
|
apt-get update > /opt/scripts/avahi_startup.log 2>&1
|
||||||
|
apt-get install -y --no-install-recommends libavahi-compat-libdnssd-dev avahi-daemon >> /opt/scripts/avahi_startup.log 2>&1
|
||||||
|
rm -rf /var/lib/apt/lists/* >> /opt/scripts/avahi_startup.log 2>&1
|
||||||
|
echo "Done."
|
||||||
|
echo -n "[setup_avahi.sh] Configuring avahi-daemon... "
|
||||||
|
sed -i '/^rlimit-nproc/s/^\(.*\)/#\1/g' /etc/avahi/avahi-daemon.conf
|
||||||
|
echo "Done."
|
||||||
|
echo -n "[setup_avahi.sh] Configuring dbus... "
|
||||||
|
mkdir /var/run/dbus/
|
||||||
|
echo "Done."
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f /var/run/dbus/pid ];
|
||||||
|
then
|
||||||
|
rm -f /var/run/dbus/pid
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f /var/run/avahi-daemon//pid ];
|
||||||
|
then
|
||||||
|
rm -f /var/run/avahi-daemon//pid
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo -n "[setup_avahi.sh] Starting dbus... "
|
||||||
|
dbus-daemon --system >> /opt/scripts/avahi_startup.log 2>&1
|
||||||
|
echo "Done."
|
||||||
|
|
||||||
|
echo -n "[setup_avahi.sh] Starting avahi-daemon... "
|
||||||
|
/etc/init.d/avahi-daemon start >> /opt/scripts/avahi_startup.log 2>&1
|
||||||
|
echo "Done."
|
||||||
|
|
||||||
|
exit 0
|
||||||
357
debian12/scripts/setup_iob_db.sh
Normal file
357
debian12/scripts/setup_iob_db.sh
Normal file
@@ -0,0 +1,357 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# reading env
|
||||||
|
debug=$DEBUG
|
||||||
|
objectsdbhost=$IOB_OBJECTSDB_HOST
|
||||||
|
objectsdbport=$IOB_OBJECTSDB_PORT
|
||||||
|
objectsdbtype=$IOB_OBJECTSDB_TYPE
|
||||||
|
objectsdbname=$IOB_OBJECTSDB_NAME # new for sentinel support
|
||||||
|
objectsdbpass=$IOB_OBJECTSDB_PASS # new for auth support
|
||||||
|
setgid=$SETGID
|
||||||
|
setuid=$SETUID
|
||||||
|
statesdbhost=$IOB_STATESDB_HOST
|
||||||
|
statesdbport=$IOB_STATESDB_PORT
|
||||||
|
statesdbtype=$IOB_STATESDB_TYPE
|
||||||
|
statesdbname=$IOB_STATESDB_NAME # new for sentinel support
|
||||||
|
statesdbpass=$IOB_STATESDB_PASS # new for auth support
|
||||||
|
|
||||||
|
# functions
|
||||||
|
write_iobroker_json() {
|
||||||
|
mv /opt/iobroker/iobroker-data/iobroker.json.tmp /opt/iobroker/iobroker-data/iobroker.json
|
||||||
|
chown -R "$setuid":"$setgid" /opt/iobroker/iobroker-data/iobroker.json && chmod 674 /opt/iobroker/iobroker-data/iobroker.json
|
||||||
|
}
|
||||||
|
set_objectsdb_type() {
|
||||||
|
if [[ "$objectsdbtype" != "$(jq -r '.objects.type' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
||||||
|
echo "IOB_OBJECTSDB_TYPE is available but value is different from detected ioBroker installation."
|
||||||
|
echo -n "Setting type of objects db to \"""$objectsdbtype""\"... "
|
||||||
|
jq --arg value "$objectsdbtype" '.objects.type = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "IOB_OBJECTSDB_TYPE is available and value meets detected ioBroker installation."
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
set_objectsdb_host() {
|
||||||
|
if [[ $objectsdbhost == *","* ]]; then
|
||||||
|
if [[ "$(jq -c -n --arg value "$objectsdbhost" '$value|split(",")')" != "$(jq -r '.objects.host' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
||||||
|
echo "IOB_OBJECTSDB_HOST is available but value is different from detected ioBroker installation."
|
||||||
|
echo -n "Setting host of objects db to \"""$objectsdbhost""\"... "
|
||||||
|
jq --arg value "$objectsdbhost" '.objects.host = ($value|split(","))' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "IOB_OBJECTSDB_HOST is available and value meets detected ioBroker installation."
|
||||||
|
fi
|
||||||
|
if [[ $objectsdbname != "" ]]; then
|
||||||
|
if [[ "$objectsdbname" != "$(jq -r '.objects.sentinelName' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
||||||
|
echo "IOB_OBJECTSDB_NAME is available but value is different from detected ioBroker installation."
|
||||||
|
echo -n "Setting name of objects db to \"""$objectsdbname""\"... "
|
||||||
|
jq --arg value "$objectsdbname" '.objects.sentinelName = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "IOB_OBJECTSDB_NAME is available and value meets detected ioBroker installation."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if [[ "$(jq -r '.objects.sentinelName' /opt/iobroker/iobroker-data/iobroker.json)" != "mymaster" ]]; then
|
||||||
|
echo "IOB_OBJECTSDB_NAME is not available. Using default value \"mymaster\" instead."
|
||||||
|
echo -n "Setting name of objects db to \"mymaster\"... "
|
||||||
|
jq --arg value "mymaster" '.objects.sentinelName = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "IOB_OBJECTSDB_NAME is not available but default value \"mymaster\" meets detected ioBroker installation.."
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if [[ "$objectsdbhost" != "$(jq -r '.objects.host' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
||||||
|
echo "IOB_OBJECTSDB_HOST is available but value is different from detected ioBroker installation."
|
||||||
|
echo -n "Setting host of objects db to \"""$objectsdbhost""\"... "
|
||||||
|
jq --arg value "$objectsdbhost" '.objects.host = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "IOB_OBJECTSDB_HOST is available and value meets detected ioBroker installation."
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
set_objectsdb_port() {
|
||||||
|
if [[ $objectsdbport == *","* ]]; then
|
||||||
|
if [[ "$(jq -c -n --arg value "$objectsdbport" '$value|split(",")')" != "$(jq -r '.objects.port' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
||||||
|
echo "IOB_OBJECTSDB_PORT is available but value is different from detected ioBroker installation."
|
||||||
|
echo -n "Setting port of objects db to \"""$objectsdbport""\"... "
|
||||||
|
jq --arg value "$objectsdbport" '.objects.port = ($value|split(","))' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "IOB_OBJECTSDB_PORT is available and value meets detected ioBroker installation."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if [[ "$objectsdbport" != "$(jq -r '.objects.port' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
||||||
|
echo "IOB_OBJECTSDB_PORT is available but value is different from detected ioBroker installation."
|
||||||
|
echo -n "Setting port of objects db to \"""$objectsdbport""\"... "
|
||||||
|
jq --arg value "$objectsdbport" '.objects.port = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "IOB_OBJECTSDB_PORT is available and value meets detected ioBroker installation."
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
set_objectsdb_pass() {
|
||||||
|
if [[ "$objectsdbpass" == "none" ]]; then
|
||||||
|
echo "IOB_OBJECTSDB_PASS is available but value is set to \"none\"."
|
||||||
|
echo -n "Removing password of objects db... "
|
||||||
|
jq '.objects.options.auth_pass = null' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
elif [[ "$objectsdbpass" != "$(jq -r '.objects.options.auth_pass' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
||||||
|
echo "IOB_OBJECTSDB_PASS is available but value is different from detected ioBroker installation."
|
||||||
|
echo -n "Setting password of objects db... "
|
||||||
|
jq --arg value "$objectsdbpass" '.objects.options.auth_pass = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "IOB_OBJECTSDB_PASS is available and value meets detected ioBroker installation."
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
set_statesdb_type() {
|
||||||
|
if [[ "$statesdbtype" != "$(jq -r '.states.type' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
||||||
|
echo "IOB_STATESDB_TYPE is available but value is different from detected ioBroker installation."
|
||||||
|
echo -n "Setting type of states db to \"""$statesdbtype""\"... "
|
||||||
|
jq --arg value "$statesdbtype" '.states.type = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "IOB_STATESDB_TYPE is available and value meets detected ioBroker installation."
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
set_statesdb_host() {
|
||||||
|
if [[ $statesdbhost == *","* ]]; then
|
||||||
|
if [[ "$(jq -c -n --arg parm "$statesdbhost" '$parm|split(",")')" != "$(jq -r '.states.host' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
||||||
|
echo "IOB_STATESDB_HOST is available but value is different from detected ioBroker installation."
|
||||||
|
echo -n "Setting host of states db to \"""$statesdbhost""\"... "
|
||||||
|
jq --arg value "$statesdbhost" '.states.host = ($value|split(","))' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "IOB_STATESDB_HOST is available and value meets detected ioBroker installation."
|
||||||
|
fi
|
||||||
|
if [[ $statesdbname != "" ]]; then
|
||||||
|
if [[ "$statesdbname" != "$(jq -r '.states.sentinelName' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
||||||
|
echo "IOB_STATESDB_NAME is available but value is different from detected ioBroker installation."
|
||||||
|
echo -n "Setting name of states db to \"""$statesdbname""\"... "
|
||||||
|
jq --arg value "$statesdbname" '.states.sentinelName = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "IOB_STATESDB_NAME is available and value meets detected ioBroker installation."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if [[ "$(jq -r '.states.sentinelName' /opt/iobroker/iobroker-data/iobroker.json)" != "mymaster" ]]; then
|
||||||
|
echo "IOB_STATESDB_NAME is not available. Using default value \"mymaster\" instead."
|
||||||
|
echo -n "Setting name of states db to \"mymaster\"... "
|
||||||
|
jq --arg value "mymaster" '.states.sentinelName = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "IOB_STATESDB_NAME is not available but default value \"mymaster\" meets detected ioBroker installation.."
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if [[ "$statesdbhost" != "$(jq -r '.states.host' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
||||||
|
echo "IOB_STATESDB_HOST is available but value is different from detected ioBroker installation."
|
||||||
|
echo -n "Setting host of states db to \"""$statesdbhost""\"... "
|
||||||
|
jq --arg value "$statesdbhost" '.states.host = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "IOB_STATESDB_HOST is available and value meets detected ioBroker installation."
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
set_statesdb_port() {
|
||||||
|
if [[ $statesdbport == *","* ]]; then
|
||||||
|
if [[ "$(jq -c -n --arg value "$statesdbport" '$value|split(",")')" != "$(jq -r '.states.port' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
||||||
|
echo "IOB_STATESDB_PORT is available but value is different from detected ioBroker installation."
|
||||||
|
echo -n "Setting port of states db to \"""$statesdbport""\"... "
|
||||||
|
jq --arg value "$statesdbport" '.states.port = ($value|split(","))' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "IOB_STATESDB_PORT is available and value meets detected ioBroker installation."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if [[ "$statesdbport" != "$(jq -r '.states.port' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
||||||
|
echo "IOB_STATESDB_PORT is available but value is different from detected ioBroker installation."
|
||||||
|
echo -n "Setting port of states db to \"""$statesdbport""\"... "
|
||||||
|
jq --arg value "$statesdbport" '.states.port = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "IOB_STATESDB_PORT is available and value meets detected ioBroker installation."
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
set_statesdb_pass() {
|
||||||
|
if [[ "$statesdbpass" == "none" ]]; then
|
||||||
|
echo "IOB_STATESDB_PASS is available but value is set to \"none\"."
|
||||||
|
echo -n "Removing password of states db... "
|
||||||
|
jq '.states.options.auth_pass = null' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
elif [[ "$statesdbpass" != "$(jq -r '.states.options.auth_pass' /opt/iobroker/iobroker-data/iobroker.json)" ]]; then
|
||||||
|
echo "IOB_STATESDB_PASS is available but value is different from detected ioBroker installation."
|
||||||
|
echo -n "Setting password of states db... "
|
||||||
|
jq --arg value "$statesdbpass" '.states.options.auth_pass = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "IOB_STATESDB_PASS is available and value meets detected ioBroker installation."
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
config_error_output() {
|
||||||
|
echo " "
|
||||||
|
echo "Something went wrong. Looks like at least one parameter defining the custom db connection was not set properly or is missing."
|
||||||
|
echo "Please check your configuration and try again."
|
||||||
|
echo "For more information see ioBroker Docker Image Docs (https://docs.buanet.de/iobroker-docker-image/docs/)."
|
||||||
|
}
|
||||||
|
|
||||||
|
# parameter check
|
||||||
|
if [[ "$1" == "-master" ]]; then # setup master
|
||||||
|
echo "IOB_MULTIHOST is available and set to \"master\"."
|
||||||
|
echo "Done."
|
||||||
|
echo " "
|
||||||
|
# multihost objects db
|
||||||
|
if [[ "$objectsdbtype" != "" && "$objectsdbhost" != "" && "$objectsdbport" != "" ]]; then
|
||||||
|
echo "Configuring custom objects db..."
|
||||||
|
set_objectsdb_type
|
||||||
|
set_objectsdb_host
|
||||||
|
set_objectsdb_port
|
||||||
|
if [[ "$objectsdbpass" != "" ]]; then set_objectsdb_pass; fi
|
||||||
|
echo "Done."
|
||||||
|
echo " "
|
||||||
|
elif [[ "$objectsdbtype" == "" && "$objectsdbhost" == "" && "$objectsdbport" == "" ]]; then
|
||||||
|
echo "No custom objects db is set."
|
||||||
|
if [[ "$(jq -r '.objects.host' /opt/iobroker/iobroker-data/iobroker.json)" != "0.0.0.0" ]]; then
|
||||||
|
echo -n "Configuring default objects db to accept external connections... "
|
||||||
|
jq --arg value "0.0.0.0" '.objects.host = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "Default objects db is accepting external connections."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if [[ "$debug" == "true" ]]; then
|
||||||
|
echo "[DEBUG] IOB_OBJECTSDB_TYPE = ""$objectsdbtype"
|
||||||
|
echo "[DEBUG] IOB_OBJECTSDB_HOST = ""$objectsdbhost"
|
||||||
|
echo "[DEBUG] IOB_OBJECTSDB_PORT = ""$objectsdbport"
|
||||||
|
fi
|
||||||
|
config_error_output
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
# multihost states db
|
||||||
|
if [[ "$statesdbtype" != "" && "$statesdbhost" != "" && "$statesdbport" != "" ]]; then
|
||||||
|
echo "Configuring custom states db..."
|
||||||
|
set_statesdb_type
|
||||||
|
set_statesdb_host
|
||||||
|
set_statesdb_port
|
||||||
|
if [[ "$statesdbpass" != "" ]]; then set_statesdb_pass; fi
|
||||||
|
echo "Done."
|
||||||
|
echo " "
|
||||||
|
elif [[ "$statesdbtype" == "" && "$statesdbhost" == "" && "$statesdbport" == "" ]]; then
|
||||||
|
echo "No custom states db is set."
|
||||||
|
if [[ "$(jq -r '.states.host' /opt/iobroker/iobroker-data/iobroker.json)" != "0.0.0.0" ]]; then
|
||||||
|
echo -n "Configuring default states db to accept external connections... "
|
||||||
|
jq --arg value "0.0.0.0" '.states.host = $value' /opt/iobroker/iobroker-data/iobroker.json > /opt/iobroker/iobroker-data/iobroker.json.tmp
|
||||||
|
write_iobroker_json
|
||||||
|
echo "Done."
|
||||||
|
else
|
||||||
|
echo "Default states db is accepting external connections."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if [[ "$debug" == "true" ]]; then
|
||||||
|
echo "[DEBUG] IOB_STATESDB_TYPE = ""$statesdbtype"
|
||||||
|
echo "[DEBUG] IOB_STATESDB_HOST = ""$statesdbhost"
|
||||||
|
echo "[DEBUG] IOB_STATESDB_PORT = ""$statesdbport"
|
||||||
|
fi
|
||||||
|
config_error_output
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
elif [[ "$1" == "-slave" ]]; then # setup slave
|
||||||
|
echo "IOB_MULTIHOST is available and set to \"slave\"."
|
||||||
|
echo "Done."
|
||||||
|
echo " "
|
||||||
|
# multihost slave objects db connection
|
||||||
|
if [[ "$objectsdbtype" != "" && "$objectsdbhost" != "" && "$objectsdbport" != "" ]]; then
|
||||||
|
echo "Configuring objects db connection..."
|
||||||
|
set_objectsdb_type
|
||||||
|
set_objectsdb_host
|
||||||
|
set_objectsdb_port
|
||||||
|
if [[ "$objectsdbpass" != "" ]]; then set_objectsdb_pass; fi
|
||||||
|
echo "Done."
|
||||||
|
echo " "
|
||||||
|
else
|
||||||
|
if [[ "$debug" == "true" ]]; then
|
||||||
|
echo "[DEBUG] IOB_OBJECTSDB_TYPE = ""$objectsdbtype"
|
||||||
|
echo "[DEBUG] IOB_OBJECTSDB_HOST = ""$objectsdbhost"
|
||||||
|
echo "[DEBUG] IOB_OBJECTSDB_PORT = ""$objectsdbport"
|
||||||
|
fi
|
||||||
|
config_error_output
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
# multihost slave states db connection
|
||||||
|
if [[ "$statesdbtype" != "" && "$statesdbhost" != "" && "$statesdbport" != "" ]]; then
|
||||||
|
echo "Configuring states db connection..."
|
||||||
|
set_statesdb_type
|
||||||
|
set_statesdb_host
|
||||||
|
set_statesdb_port
|
||||||
|
if [[ "$statesdbpass" != "" ]]; then set_statesdb_pass; fi
|
||||||
|
echo "Done."
|
||||||
|
echo " "
|
||||||
|
else
|
||||||
|
if [[ "$debug" == "true" ]]; then
|
||||||
|
echo "[DEBUG] IOB_STATESDB_TYPE = ""$statesdbtype"
|
||||||
|
echo "[DEBUG] IOB_STATESDB_HOST = ""$statesdbhost"
|
||||||
|
echo "[DEBUG] IOB_STATESDB_PORT = ""$statesdbport"
|
||||||
|
fi
|
||||||
|
config_error_output
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
elif [[ "$1" == "-objectsdb" ]]; then # setup objects db standalone
|
||||||
|
if [[ "$objectsdbtype" != "" && "$objectsdbhost" != "" && "$objectsdbport" != "" ]]; then
|
||||||
|
echo "Configuring custom objects db..."
|
||||||
|
set_objectsdb_type
|
||||||
|
set_objectsdb_host
|
||||||
|
set_objectsdb_port
|
||||||
|
if [[ "$objectsdbpass" != "" ]]; then set_objectsdb_pass; fi
|
||||||
|
echo "Done."
|
||||||
|
echo " "
|
||||||
|
else
|
||||||
|
if [[ "$debug" == "true" ]]; then
|
||||||
|
echo "[DEBUG] IOB_OBJECTSDB_TYPE = ""$objectsdbtype"
|
||||||
|
echo "[DEBUG] IOB_OBJECTSDB_HOST = ""$objectsdbhost"
|
||||||
|
echo "[DEBUG] IOB_OBJECTSDB_PORT = ""$objectsdbport"
|
||||||
|
fi
|
||||||
|
config_error_output
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
elif [[ "$1" == "-statesdb" ]]; then # setup states db standalone
|
||||||
|
if [[ "$statesdbtype" != "" && "$statesdbhost" != "" && "$statesdbport" != "" ]]; then
|
||||||
|
echo "Configuring custom states db..."
|
||||||
|
set_statesdb_type
|
||||||
|
set_statesdb_host
|
||||||
|
set_statesdb_port
|
||||||
|
if [[ "$statesdbpass" != "" ]]; then set_statesdb_pass; fi
|
||||||
|
echo "Done."
|
||||||
|
echo " "
|
||||||
|
else
|
||||||
|
if [[ "$debug" == "true" ]]; then
|
||||||
|
echo "[DEBUG] IOB_STATESDB_TYPE = ""$statesdbtype"
|
||||||
|
echo "[DEBUG] IOB_STATESDB_HOST = ""$statesdbhost"
|
||||||
|
echo "[DEBUG] IOB_STATESDB_PORT = ""$statesdbport"
|
||||||
|
fi
|
||||||
|
config_error_output
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
83
debian12/scripts/setup_packages.sh
Normal file
83
debian12/scripts/setup_packages.sh
Normal file
@@ -0,0 +1,83 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# bash strict mode
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
# Reading ENV
|
||||||
|
set +u
|
||||||
|
packages=$PACKAGES
|
||||||
|
debug=$DEBUG
|
||||||
|
set -u
|
||||||
|
|
||||||
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
|
check_package_preq() {
|
||||||
|
# check for influx packages
|
||||||
|
if [[ "$i" == "influxdb" || "$i" == "influxdb2-cli" ]]; then
|
||||||
|
# add influxdata repo keys
|
||||||
|
wget -qO- https://repos.influxdata.com/influxdata-archive_compat.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdata-archive_compat.gpg > /dev/null
|
||||||
|
echo "deb [signed-by=/etc/apt/trusted.gpg.d/influxdata-archive_compat.gpg] https://repos.influxdata.com/debian stable main" | sudo tee /etc/apt/sources.list.d/influxdata.list
|
||||||
|
apt-get -q update >> /opt/scripts/setup_packages.log 2>&1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
check_package_validity() {
|
||||||
|
# check string for double spaces
|
||||||
|
while echo "$packages" | grep -q ' '; do
|
||||||
|
packages=$(echo "$packages" | sed 's/ / /g')
|
||||||
|
done
|
||||||
|
# remove packages when "influxdb" AND "influxdb2-cli"
|
||||||
|
if echo "$packages" | grep -qw "influxdb" && echo "$packages" | grep -qw "influxdb2-cli"; then
|
||||||
|
echo "PACKAGES includes influxdb AND influxdb2-cli."
|
||||||
|
echo "As installing both packages together is not possible, they will be skipped."
|
||||||
|
packages=$(echo "$packages" | sed 's/influxdb2-cli//g;s/influxdb//g')
|
||||||
|
# check string for double spaces again
|
||||||
|
while echo "$packages" | grep -q ' '; do
|
||||||
|
packages=$(echo "$packages" | sed 's/ / /g')
|
||||||
|
done
|
||||||
|
if [[ $debug == "true" ]]; then echo "[DEBUG] New list of packages: ""$packages"; fi
|
||||||
|
echo " "
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
if [[ "$1" == "-install" ]]; then
|
||||||
|
echo " "
|
||||||
|
apt-get -q update >> /opt/scripts/setup_packages.log 2>&1
|
||||||
|
check_package_validity
|
||||||
|
for i in $packages; do
|
||||||
|
if ! dpkg -s "$i" >/dev/null 2>&1; then
|
||||||
|
echo -n "$i is not installed. Installing... "
|
||||||
|
check_package_preq >> /opt/scripts/setup_packages.log 2>&1
|
||||||
|
if ! apt-get -q -y --no-install-recommends install "$i" >> /opt/scripts/setup_packages.log 2>&1; then
|
||||||
|
echo "Failed."
|
||||||
|
echo "For more details see \"/opt/scripts/setup_packages.log\"."
|
||||||
|
else
|
||||||
|
echo "Done."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "$i is already installed."
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
elif [[ "$1" == "-update" ]]; then
|
||||||
|
echo -n "Updating Linux packages on first run... "
|
||||||
|
apt-get -q update >> /opt/scripts/setup_packages.log 2>&1
|
||||||
|
return1=$?
|
||||||
|
apt-get -q -y upgrade >> /opt/scripts/setup_packages.log 2>&1
|
||||||
|
return2=$?
|
||||||
|
if [[ "$return1" -ne 0 || "$return2" -ne 0 ]]; then
|
||||||
|
echo "Failed."
|
||||||
|
echo "For more details see \"/opt/scripts/setup_packages.log\"."
|
||||||
|
echo "Make sure the container has internet access to get the latest package updates."
|
||||||
|
echo "This has no impact to the setup process. The script will continue."
|
||||||
|
else
|
||||||
|
echo "Done."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "No paramerter found!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Silent Cleanup
|
||||||
|
apt-get -qq autoclean -y && apt-get -qq autoremove && apt-get -qq clean
|
||||||
|
rm -rf /tmp/* /var/tmp/* /root/.cache/* /var/lib/apt/lists/* || true
|
||||||
|
|
||||||
|
exit 0
|
||||||
13
debian12/userscripts/userscript_everystart_example.sh
Normal file
13
debian12/userscripts/userscript_everystart_example.sh
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# This is an example script file.
|
||||||
|
# To run the Script on every start of the container you have to rename it to userscript_everystart.sh.
|
||||||
|
|
||||||
|
# You can add your advanced script code here!
|
||||||
|
|
||||||
|
echo " "
|
||||||
|
echo "I'm your startscript userscript_everystart.sh. I will run on EVERY container startup."
|
||||||
|
echo " "
|
||||||
|
|
||||||
|
|
||||||
|
exit 0
|
||||||
12
debian12/userscripts/userscript_firststart_example.sh
Normal file
12
debian12/userscripts/userscript_firststart_example.sh
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# This is an example script file.
|
||||||
|
# To run the Script on the first start of a new container you have to rename it to userscript_firststart.sh.
|
||||||
|
|
||||||
|
# You can add your advanced script code here!
|
||||||
|
|
||||||
|
echo " "
|
||||||
|
echo "I'm your startscript userscript_firststart.sh. I will run only on the FIRST startup of the container."
|
||||||
|
echo " "
|
||||||
|
|
||||||
|
exit 0
|
||||||
@@ -35,7 +35,8 @@ New major image versions (e.g. v6, v7, v8) always include a new major version of
|
|||||||
It is highly recommended not to use the `latest` tag for production, especially when using any kind of automated update procedure like watchtower. Please use the `latest-v[major_version]` tag instead.
|
It is highly recommended not to use the `latest` tag for production, especially when using any kind of automated update procedure like watchtower. Please use the `latest-v[major_version]` tag instead.
|
||||||
|
|
||||||
### Node 18 versions
|
### Node 18 versions
|
||||||
* [`v8.0.1`](https://github.com/buanet/ioBroker.docker/blob/v8.0.0/debian/node18/Dockerfile), [`latest-v8`](https://github.com/buanet/ioBroker.docker/blob/v8.0.0/debian/node18/Dockerfile), [`latest`](https://github.com/buanet/ioBroker.docker/blob/v8.0.0/debian/node18/Dockerfile)
|
* [`v8.1.0`](https://github.com/buanet/ioBroker.docker/blob/v8.1.0/debian/node18/Dockerfile), [`latest-v8`](https://github.com/buanet/ioBroker.docker/blob/v8.1.0/debian/node18/Dockerfile), [`latest`](https://github.com/buanet/ioBroker.docker/blob/v8.1.0/debian/node18/Dockerfile)
|
||||||
|
* [`v8.0.1`](https://github.com/buanet/ioBroker.docker/blob/v8.0.1/debian/node18/Dockerfile)
|
||||||
* [`v8.0.0`](https://github.com/buanet/ioBroker.docker/blob/v8.0.0/debian/node18/Dockerfile)
|
* [`v8.0.0`](https://github.com/buanet/ioBroker.docker/blob/v8.0.0/debian/node18/Dockerfile)
|
||||||
|
|
||||||
### Node 16 versions
|
### Node 16 versions
|
||||||
|
|||||||
@@ -37,7 +37,8 @@ New major image versions (e.g. v6, v7, v8) always include a new major version of
|
|||||||
It is highly recommended not to use the `latest` tag for production, especially when using any kind of automated update procedure like watchtower. Please use the `latest-v[major_version]` tag instead.
|
It is highly recommended not to use the `latest` tag for production, especially when using any kind of automated update procedure like watchtower. Please use the `latest-v[major_version]` tag instead.
|
||||||
|
|
||||||
### Node 18 versions
|
### Node 18 versions
|
||||||
* [`v8.0.1`](https://github.com/buanet/ioBroker.docker/blob/v8.0.0/debian/node18/Dockerfile), [`latest-v8`](https://github.com/buanet/ioBroker.docker/blob/v8.0.0/debian/node18/Dockerfile), [`latest`](https://github.com/buanet/ioBroker.docker/blob/v8.0.0/debian/node18/Dockerfile)
|
* [`v8.1.0`](https://github.com/buanet/ioBroker.docker/blob/v8.1.0/debian/node18/Dockerfile), [`latest-v8`](https://github.com/buanet/ioBroker.docker/blob/v8.1.0/debian/node18/Dockerfile), [`latest`](https://github.com/buanet/ioBroker.docker/blob/v8.1.0/debian/node18/Dockerfile)
|
||||||
|
* [`v8.0.1`](https://github.com/buanet/ioBroker.docker/blob/v8.0.1/debian/node18/Dockerfile)
|
||||||
* [`v8.0.0`](https://github.com/buanet/ioBroker.docker/blob/v8.0.0/debian/node18/Dockerfile)
|
* [`v8.0.0`](https://github.com/buanet/ioBroker.docker/blob/v8.0.0/debian/node18/Dockerfile)
|
||||||
|
|
||||||
### Node 16 versions
|
### Node 16 versions
|
||||||
|
|||||||
Reference in New Issue
Block a user