mirror of
https://github.com/edgebox-iot/edgeboxctl.git
synced 2026-09-24 05:41:43 +02:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6202d13b9b |
@@ -13,11 +13,11 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: '1.20.2'
|
go-version: ^1.15
|
||||||
- name: Check out code
|
- name: Check out code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v2
|
||||||
- name: Build
|
- name: Build
|
||||||
run: make build
|
run: make build
|
||||||
- name: Test
|
- name: Test
|
||||||
|
|||||||
@@ -21,6 +21,3 @@ main
|
|||||||
# Build
|
# Build
|
||||||
|
|
||||||
/bin
|
/bin
|
||||||
|
|
||||||
# Logs from executed scripts
|
|
||||||
/scripts/output.log
|
|
||||||
|
|||||||
Vendored
-236
@@ -1,236 +0,0 @@
|
|||||||
{
|
|
||||||
"version": "2.0.0",
|
|
||||||
"tasks": [
|
|
||||||
{
|
|
||||||
"label": "Build",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["build"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
|
|
||||||
},
|
|
||||||
"group": {
|
|
||||||
"kind": "build",
|
|
||||||
"isDefault": true
|
|
||||||
},
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Build All",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["build-all"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"group": "build",
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Build Prod",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["build-prod"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"group": "build",
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Build Cloud",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["build-cloud"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"group": "build",
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Build ARM64",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["build-arm64"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"group": "build",
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Build ARMHF",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["build-armhf"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"group": "build",
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Build AMD64",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["build-amd64"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"group": "build",
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Clean",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["clean"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Test",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["test"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Test with Coverage",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["test-with-coverage"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Run",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["run"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Install",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["install"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Install Prod",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["install-prod"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Install Cloud",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["install-cloud"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Install ARM64",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["install-arm64"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Install ARMHF",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["install-armhf"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Install AMD64",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["install-amd64"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Start",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["start"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Stop",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["stop"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Restart",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["restart"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Status",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["status"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"problemMatcher": []
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Logs",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "make",
|
|
||||||
"args": ["log"],
|
|
||||||
"options": {
|
|
||||||
"cwd": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"problemMatcher": []
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
# Changelog
|
|
||||||
|
|
||||||
## [1.4.0] - 23-09-2026
|
|
||||||
|
|
||||||
* Added dashboard-managed SSH public-key access.
|
|
||||||
* Validates ED25519 public keys and reports their SHA256 fingerprints.
|
|
||||||
* Atomically installs or removes only the marked Edgebox key while preserving all other authorized keys.
|
|
||||||
* Never generates, reads, stores, logs, or returns SSH private keys.
|
|
||||||
|
|
||||||
## [1.3.2] - 08-12-2024
|
|
||||||
|
|
||||||
* Fix to Browser Dev feature:
|
|
||||||
* Checking browser dev url when internet_accessible was checking the incorrect path. This is now fixed.
|
|
||||||
|
|
||||||
## [1.3.1] - 08-12-2024
|
|
||||||
|
|
||||||
* Fixes to Browser Dev feature:
|
|
||||||
* Now edgeboxctl also fetches or generates the browser dev environment url and saves it into an option both when starting, and every time the browser dev status is fetched.
|
|
||||||
|
|
||||||
## [1.3.0] - 05-12-2024
|
|
||||||
|
|
||||||
* Added Edgebox Browser Development Environment Feature Support
|
|
||||||
* Added tasks for handling browser development environment into tasks.go
|
|
||||||
* Added executable tasks to ExecuteTask and scheduled ones to ExecuteSchedules
|
|
||||||
* Other bug fixes and improvements.
|
|
||||||
|
|
||||||
### Missing Past Releases
|
|
||||||
|
|
||||||
Release notes for past versions are not available in this file. Please refer to the [GitHub releases](https://hithub.com/edgebox-iot/edgeboxctl/releases) for more information. Feel free to contribute to this file by adding missing release notes.
|
|
||||||
+5
-3
@@ -1,9 +1,11 @@
|
|||||||
FROM golang:1.20.2
|
FROM golang:latest
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY ./ /app
|
COPY ./ /app
|
||||||
|
|
||||||
RUN go install github.com/githubnemo/CompileDaemon@latest
|
RUN go mod download
|
||||||
|
|
||||||
ENTRYPOINT CompileDaemon --build="make build" --command=./bin/edgeboxctl-$(go env GOOS)-$(go env GOARCH)
|
RUN go get github.com/githubnemo/CompileDaemon
|
||||||
|
|
||||||
|
ENTRYPOINT CompileDaemon --build="make build" --command=./bin/edgeboxctl
|
||||||
@@ -1,114 +1,35 @@
|
|||||||
.DEFAULT_GOAL := build
|
PROJECT?=github.com/edgebox-iot/edgeboxctl
|
||||||
|
|
||||||
PROJECT ?= github.com/edgebox-iot/edgeboxctl
|
|
||||||
RELEASE ?= dev
|
RELEASE ?= dev
|
||||||
COMMIT := $(shell git rev-parse --short HEAD)
|
COMMIT := $(shell git rev-parse --short HEAD)
|
||||||
BUILD_DATE := $(shell date -u '+%Y-%m-%d_%H:%M:%S')
|
BUILD_DATE := $(shell date -u '+%Y-%m-%d_%H:%M:%S')
|
||||||
BUILD_DIR = bin
|
BUILD_DIR = bin
|
||||||
GOOS := $(shell go env GOOS)
|
|
||||||
GOARCH := $(shell go env GOARCH)
|
|
||||||
|
|
||||||
|
|
||||||
build-all:
|
build-all:
|
||||||
@echo "\n🏗️ Building all architectures for ${RELEASE} mode"
|
|
||||||
@echo "🟡 This will build all supported architectures and release combinations. It can take a while...\n"
|
|
||||||
|
|
||||||
GOOS=linux GOARCH=amd64 make build
|
GOOS=linux GOARCH=amd64 make build
|
||||||
GOOS=linux GOARCH=arm make build
|
GOOS=linux GOARCH=arm make build
|
||||||
|
|
||||||
@echo "\n🟢 All builds completed and available at ./bin/ \n"
|
|
||||||
|
|
||||||
build-prod:
|
build-prod:
|
||||||
GOOS=linux GOARCH=arm RELEASE=prod make build
|
GOOS=linux GOARCH=arm RELEASE=prod make build
|
||||||
|
|
||||||
build-cloud:
|
build-cloud:
|
||||||
GOOS=linux GOARCH=amd64 RELEASE=cloud make build
|
GOOS=linux GOARCH=amd64 RELEASE=cloud make build
|
||||||
|
|
||||||
build-arm64:
|
|
||||||
GOOS=linux GOARCH=arm64 RELEASE=prod make build
|
|
||||||
|
|
||||||
build-armhf:
|
|
||||||
GOOS=linux GOARCH=arm RELEASE=prod make build
|
|
||||||
|
|
||||||
build-amd64:
|
|
||||||
GOOS=linux GOARCH=amd64 RELEASE=prod make build
|
|
||||||
|
|
||||||
|
|
||||||
build:
|
build:
|
||||||
@echo "\n🏗️ Building edgeboxctl (${RELEASE} release) on ${GOOS} (${GOARCH})"
|
@echo "Building ${GOOS}-${GOARCH}"
|
||||||
@echo "📦 Binary will be saved in ./${BUILD_DIR}/edgeboxctl-${GOOS}-${GOARCH}\n"
|
|
||||||
|
|
||||||
GOOS=${GOOS} GOARCH=${GOARCH} go build \
|
GOOS=${GOOS} GOARCH=${GOARCH} go build \
|
||||||
-trimpath -ldflags "-s -w -X ${PROJECT}/internal/diagnostics.Version=${RELEASE} \
|
-trimpath -ldflags "-s -w -X ${PROJECT}/internal/diagnostics.Version=${RELEASE} \
|
||||||
-X ${PROJECT}/internal/diagnostics.Commit=${COMMIT} \
|
-X ${PROJECT}/internal/diagnostics.Commit=${COMMIT} \
|
||||||
-X ${PROJECT}/internal/diagnostics.BuildDate=${BUILD_DATE}" \
|
-X ${PROJECT}/internal/diagnostics.BuildDate=${BUILD_DATE}" \
|
||||||
-o bin/edgeboxctl-${GOOS}-${GOARCH} ${PROJECT}/cmd/edgeboxctl
|
-o bin/edgeboxctl-${GOOS}-${GOARCH} ${PROJECT}/cmd/edgeboxctl
|
||||||
|
cp ./bin/edgeboxctl-${GOOS}-${GOARCH} ./bin/edgeboxctl
|
||||||
@echo "\n🟢 Build task completed\n"
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@echo "🧹 Cleaning build directory and go cache\n"
|
|
||||||
|
|
||||||
rm -rf ${BUILD_DIR}
|
rm -rf ${BUILD_DIR}
|
||||||
go clean
|
go clean
|
||||||
|
|
||||||
@echo "\n🟢 Clean task completed\n"
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
go test -tags=unit -timeout=600s -v ./...
|
go test -tags=unit -timeout=600s -v ./...
|
||||||
|
|
||||||
test-with-coverage:
|
test-with-coverage:
|
||||||
go test -tags=unit -timeout=600s -v ./... -coverprofile=coverage.out
|
go test -tags=unit -timeout=600s -v ./... -coverprofile=coverage.out
|
||||||
|
|
||||||
run:
|
|
||||||
@echo "\n🚀 Running edgeboxctl\n"
|
|
||||||
./bin/edgeboxctl-${GOOS}-${GOARCH}
|
|
||||||
|
|
||||||
install:
|
|
||||||
@echo "📦 Installing edgeboxctl service (${RELEASE}) for ${GOOS} (${GOARCH})\n"
|
|
||||||
|
|
||||||
@echo "�🚧 Stopping edgeboxctl service if it is running"
|
|
||||||
sudo systemctl stop edgeboxctl || true
|
|
||||||
|
|
||||||
@echo "\n🗑️ Removing old edgeboxctl binary and service"
|
|
||||||
sudo rm -rf /usr/local/bin/edgeboxctl /usr/local/sbin/edgeboctl /lib/systemd/system/edgeboxctl.service
|
|
||||||
|
|
||||||
@echo "\n🚚 Copying edgeboxctl binary to /usr/local/bin"
|
|
||||||
sudo cp ./bin/edgeboxctl-${GOOS}-${GOARCH} /usr/local/bin/edgeboxctl
|
|
||||||
sudo cp ./bin/edgeboxctl-${GOOS}-${GOARCH} /usr/local/sbin/edgeboxctl
|
|
||||||
|
|
||||||
@echo "\n🚚 Copying edgeboxctl service to /lib/systemd/system"
|
|
||||||
sudo cp ./edgeboxctl.service /lib/systemd/system/edgeboxctl.service
|
|
||||||
sudo systemctl daemon-reload
|
|
||||||
|
|
||||||
@echo "\n 🚀 To start edgeboxctl run: make start"
|
|
||||||
@echo "🟢 Edgeboxctl installed successfully\n"
|
|
||||||
|
|
||||||
install-prod: build-prod install
|
|
||||||
install-cloud: build-cloud install
|
|
||||||
install-arm64: build-arm64 install
|
|
||||||
install-armhf: build-armhf install
|
|
||||||
install-amd64: build-amd64 install
|
|
||||||
|
|
||||||
start:
|
|
||||||
@echo "\n 🚀 Starting edgeboxctl service\n"
|
|
||||||
systemctl start edgeboxctl
|
|
||||||
@echo "\n 🟢 Edgebox service started\n"
|
|
||||||
|
|
||||||
stop:
|
|
||||||
@echo "\n✋ Stopping edgeboxctl service\n"
|
|
||||||
systemctl stop edgeboxctl
|
|
||||||
@echo "\n 🟢 Edgebox service stopped\n"
|
|
||||||
|
|
||||||
restart:
|
|
||||||
@echo "\n💫 Restarting edgeboxctl service\n"
|
|
||||||
systemctl restart edgeboxctl
|
|
||||||
@echo "\n 🟢 Edgebox service restarted\n"
|
|
||||||
|
|
||||||
status:
|
|
||||||
@echo "\nℹ️ edgeboxctl Service Info:\n"
|
|
||||||
systemctl status edgeboxctl
|
|
||||||
|
|
||||||
log:
|
|
||||||
@echo "\n📰 edgeboxctl service logs:\n"
|
|
||||||
journalctl -fu edgeboxctl
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
<h3 align="center">Edgebox Control Module</h3>
|
<h3 align="center">Edgebox Control Module</h3>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
A System Control module written in Go. Its responsibility is to configure dependencies and perform system tasks, automatically on a schedule, or on demand.
|
A System Control module written in Go. Its resonsability is to configure dependencies and perform system tasks, automatically in a schedule, or by command.
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
<a href="https://github.com/github_username/edgeboxctl/issues">Report Bug</a>
|
<a href="https://github.com/github_username/edgeboxctl/issues">Report Bug</a>
|
||||||
@@ -38,6 +38,8 @@
|
|||||||
<!-- ABOUT THE PROJECT -->
|
<!-- ABOUT THE PROJECT -->
|
||||||
## About The Project
|
## About The Project
|
||||||
|
|
||||||
|
[![Edgebox Screen Shot][product-screenshot]](https://edgebox.co)
|
||||||
|
|
||||||
Edgebox is an easy to configure and use system. It brings powerful features that go alongside or can even completely replace various services that you already use in the day-to-day.
|
Edgebox is an easy to configure and use system. It brings powerful features that go alongside or can even completely replace various services that you already use in the day-to-day.
|
||||||
|
|
||||||
|
|
||||||
@@ -56,17 +58,18 @@ To get a local copy up and running follow these simple steps.
|
|||||||
|
|
||||||
### Prerequisites
|
### Prerequisites
|
||||||
|
|
||||||
If you're running for development purposes, a docker container suffices, so make sure you have:
|
If you're installing this to run natively in the system, you better be doing it inside of the [Development Virtual Machine](https://github.com/edgebox-iot/devm). This software can do destructive action in the system is is running. You've been warned.
|
||||||
|
|
||||||
* docker
|
If you're running for development purposes, a Docker container suffices, so make sure you have:
|
||||||
* docker compose (docker-compose-v2 package)
|
* Docker
|
||||||
|
* Docker Compose
|
||||||
|
```sh
|
||||||
|
sudo apt-get install docker docker-compose
|
||||||
|
```
|
||||||
|
|
||||||
Check the following links for more info on [Docker](https://www.docker.com/) and [Docker Compose](https://docs.docker.com/compose/).
|
Check the following links for more info on [Docker](https://www.docker.com/) and [Docker Compose](https://docs.docker.com/compose/).
|
||||||
|
|
||||||
**Note:** If you don't have `docker compose` available, install it with: `sudo apt-get install docker-compose-v2`
|
Aditionally, edgeboxctl needs the following bash commands available wherever it runs:
|
||||||
|
|
||||||
Aditionally, `edgeboxctl` needs the following bash commands available wherever it runs:
|
|
||||||
|
|
||||||
* `arm-linux-gnueabi-gcc` (`sudo apt-get install gcc-arm*`)
|
* `arm-linux-gnueabi-gcc` (`sudo apt-get install gcc-arm*`)
|
||||||
* `sh`
|
* `sh`
|
||||||
* `rm`
|
* `rm`
|
||||||
@@ -81,10 +84,10 @@ Aditionally, `edgeboxctl` needs the following bash commands available wherever i
|
|||||||
```sh
|
```sh
|
||||||
git clone https://github.com/edgebox-iot/edgeboxctl.git
|
git clone https://github.com/edgebox-iot/edgeboxctl.git
|
||||||
```
|
```
|
||||||
2. Run Docker Compose
|
2. Run Docker-Compose
|
||||||
|
```sh
|
||||||
|
docker-compose up
|
||||||
```
|
```
|
||||||
docker compose up
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -118,4 +121,4 @@ Contributions are what make the open source community such an amazing place to b
|
|||||||
<!-- LICENSE -->
|
<!-- LICENSE -->
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Distributed under the Elastic License 2.0. See `LICENSE` for more information.
|
Distributed under the MIT License. See `LICENSE` for more information.
|
||||||
|
|||||||
@@ -1,29 +0,0 @@
|
|||||||
[Unit]
|
|
||||||
Description=Edgebox Control Module Service
|
|
||||||
ConditionPathExists=/home/system/
|
|
||||||
After=network.target
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
Type=simple
|
|
||||||
User=root
|
|
||||||
Group=root
|
|
||||||
LimitNOFILE=1024
|
|
||||||
|
|
||||||
Restart=on-failure
|
|
||||||
RestartSec=10
|
|
||||||
startLimitIntervalSec=60
|
|
||||||
|
|
||||||
WorkingDirectory=/home/system/components/edgeboxctl
|
|
||||||
ExecStart=edgeboxctl --name=edgebox-cloud
|
|
||||||
|
|
||||||
# make sure log directory exists and owned by syslog
|
|
||||||
PermissionsStartOnly=true
|
|
||||||
ExecStartPre=/bin/mkdir -p /var/log/edgeboxctl
|
|
||||||
ExecStartPre=/bin/chown root:root /var/log/edgeboxctl
|
|
||||||
ExecStartPre=/bin/chmod 755 /var/log/edgeboxctl
|
|
||||||
StandardOutput=syslog
|
|
||||||
StandardError=syslog
|
|
||||||
SyslogIdentifier=edgeboxctl
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
||||||
@@ -4,15 +4,12 @@ go 1.15
|
|||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/StackExchange/wmi v0.0.0-20210224194228-fe8f1750fd46 // indirect
|
github.com/StackExchange/wmi v0.0.0-20210224194228-fe8f1750fd46 // indirect
|
||||||
github.com/dariubs/percent v0.0.0-20200128140941-b7801cf1c7e2 // indirect
|
|
||||||
github.com/dustin/go-humanize v1.0.0 // indirect
|
|
||||||
github.com/go-ole/go-ole v1.2.5 // indirect
|
github.com/go-ole/go-ole v1.2.5 // indirect
|
||||||
github.com/go-sql-driver/mysql v1.5.0
|
github.com/go-sql-driver/mysql v1.5.0
|
||||||
github.com/go-yaml/yaml v2.1.0+incompatible // indirect
|
github.com/joho/godotenv v1.5.1
|
||||||
github.com/joho/godotenv v1.3.0
|
github.com/mattn/go-sqlite3 v1.14.7
|
||||||
github.com/mattn/go-sqlite3 v1.14.7 // indirect
|
github.com/shirou/gopsutil v3.21.4+incompatible
|
||||||
github.com/shirou/gopsutil v3.21.4+incompatible // indirect
|
github.com/stretchr/testify v1.8.2 // indirect
|
||||||
github.com/tklauser/go-sysconf v0.3.6 // indirect
|
github.com/tklauser/go-sysconf v0.3.6 // indirect
|
||||||
golang.org/x/sys v0.0.0-20210531080801-fdfd190a6549 // indirect
|
golang.org/x/sys v0.0.0-20210531080801-fdfd190a6549 // indirect
|
||||||
gopkg.in/yaml.v2 v2.4.0
|
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,74 +1,37 @@
|
|||||||
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
|
|
||||||
github.com/StackExchange/wmi v0.0.0-20210224194228-fe8f1750fd46 h1:5sXbqlSomvdjlRbWyNqkPsJ3Fg+tQZCbgeX1VGljbQY=
|
github.com/StackExchange/wmi v0.0.0-20210224194228-fe8f1750fd46 h1:5sXbqlSomvdjlRbWyNqkPsJ3Fg+tQZCbgeX1VGljbQY=
|
||||||
github.com/StackExchange/wmi v0.0.0-20210224194228-fe8f1750fd46/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg=
|
github.com/StackExchange/wmi v0.0.0-20210224194228-fe8f1750fd46/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg=
|
||||||
github.com/dariubs/percent v0.0.0-20200128140941-b7801cf1c7e2 h1:5EPE4Uk7ucthLTJAZqZxu6LZluox5/AqXUxJDpzgJjg=
|
|
||||||
github.com/dariubs/percent v0.0.0-20200128140941-b7801cf1c7e2/go.mod h1:NDZpkezJ8QqyIW/510MywB5T2KdC8v/0oTlEoPcMsRM=
|
|
||||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
|
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
github.com/dustin/go-humanize v1.0.0 h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=
|
|
||||||
github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk=
|
|
||||||
github.com/go-ole/go-ole v1.2.5 h1:t4MGB5xEDZvXI+0rMjjsfBsD7yAgp/s9ZDkL1JndXwY=
|
github.com/go-ole/go-ole v1.2.5 h1:t4MGB5xEDZvXI+0rMjjsfBsD7yAgp/s9ZDkL1JndXwY=
|
||||||
github.com/go-ole/go-ole v1.2.5/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0=
|
github.com/go-ole/go-ole v1.2.5/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0=
|
||||||
github.com/go-sql-driver/mysql v1.5.0 h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs=
|
github.com/go-sql-driver/mysql v1.5.0 h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs=
|
||||||
github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
|
github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
|
||||||
github.com/go-yaml/yaml v2.1.0+incompatible h1:RYi2hDdss1u4YE7GwixGzWwVo47T8UQwnTLB6vQiq+o=
|
github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0=
|
||||||
github.com/go-yaml/yaml v2.1.0+incompatible/go.mod h1:w2MrLa16VYP0jy6N7M5kHaCkaLENm+P+Tv+MfurjSw0=
|
github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4=
|
||||||
github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=
|
|
||||||
github.com/joho/godotenv v1.3.0 h1:Zjp+RcGpHhGlrMbJzXTrZZPrWj+1vfm90La1wgB6Bhc=
|
|
||||||
github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg=
|
|
||||||
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
|
|
||||||
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
|
|
||||||
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
|
|
||||||
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
|
|
||||||
github.com/mattn/go-sqlite3 v1.14.7 h1:fxWBnXkxfM6sRiuH3bqJ4CfzZojMOLVc0UTsTglEghA=
|
github.com/mattn/go-sqlite3 v1.14.7 h1:fxWBnXkxfM6sRiuH3bqJ4CfzZojMOLVc0UTsTglEghA=
|
||||||
github.com/mattn/go-sqlite3 v1.14.7/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU=
|
github.com/mattn/go-sqlite3 v1.14.7/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU=
|
||||||
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||||
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
|
|
||||||
github.com/shirou/gopsutil v3.21.4+incompatible h1:fuHcTm5mX+wzo542cmYcV9RTGQLbnHLI5SyQ5ryTVck=
|
github.com/shirou/gopsutil v3.21.4+incompatible h1:fuHcTm5mX+wzo542cmYcV9RTGQLbnHLI5SyQ5ryTVck=
|
||||||
github.com/shirou/gopsutil v3.21.4+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA=
|
github.com/shirou/gopsutil v3.21.4+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA=
|
||||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||||
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
|
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
|
||||||
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
|
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
|
||||||
|
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||||
|
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
|
||||||
|
github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8=
|
||||||
|
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
|
||||||
github.com/tklauser/go-sysconf v0.3.6 h1:oc1sJWvKkmvIxhDHeKWvZS4f6AW+YcoguSfRF2/Hmo4=
|
github.com/tklauser/go-sysconf v0.3.6 h1:oc1sJWvKkmvIxhDHeKWvZS4f6AW+YcoguSfRF2/Hmo4=
|
||||||
github.com/tklauser/go-sysconf v0.3.6/go.mod h1:MkWzOF4RMCshBAMXuhXJs64Rte09mITnppBXY/rYEFI=
|
github.com/tklauser/go-sysconf v0.3.6/go.mod h1:MkWzOF4RMCshBAMXuhXJs64Rte09mITnppBXY/rYEFI=
|
||||||
github.com/tklauser/numcpus v0.2.2 h1:oyhllyrScuYI6g+h/zUvNXNp1wy7x8qQy3t/piefldA=
|
github.com/tklauser/numcpus v0.2.2 h1:oyhllyrScuYI6g+h/zUvNXNp1wy7x8qQy3t/piefldA=
|
||||||
github.com/tklauser/numcpus v0.2.2/go.mod h1:x3qojaO3uyYt0i56EW/VUYs7uBvdl2fkfZFu0T9wgjM=
|
github.com/tklauser/numcpus v0.2.2/go.mod h1:x3qojaO3uyYt0i56EW/VUYs7uBvdl2fkfZFu0T9wgjM=
|
||||||
go.uber.org/atomic v1.6.0 h1:Ezj3JGmsOnG1MoRWQkPBsKLe9DwWD9QeXzTRzzldNVk=
|
|
||||||
go.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=
|
|
||||||
go.uber.org/atomic v1.7.0 h1:ADUqmZGgLDDfbSL9ZmPxKTybcoEYHgpYfELNoN+7hsw=
|
|
||||||
go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
|
|
||||||
go.uber.org/multierr v1.5.0 h1:KCa4XfM8CWFCpxXRGok+Q0SS/0XBhMDbHHGABQLvD2A=
|
|
||||||
go.uber.org/multierr v1.5.0/go.mod h1:FeouvMocqHpRaaGuG9EjoKcStLC43Zu/fmqdUMPcKYU=
|
|
||||||
go.uber.org/multierr v1.6.0 h1:y6IPFStTAIT5Ytl7/XYmHvzXQ7S3g/IeZW9hyZ5thw4=
|
|
||||||
go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU=
|
|
||||||
go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA=
|
|
||||||
go.uber.org/zap v1.16.0 h1:uFRZXykJGK9lLY4HtgSw44DnIcAM+kRBP7x5m+NpAOM=
|
|
||||||
go.uber.org/zap v1.16.0/go.mod h1:MA8QOfq0BHJwdXa996Y4dYkAqRKB8/1K1QMMZVaNZjQ=
|
|
||||||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
|
||||||
golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
|
|
||||||
golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
|
|
||||||
golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc=
|
|
||||||
golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
|
||||||
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
|
||||||
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
|
||||||
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
|
||||||
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
|
||||||
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
|
||||||
golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210316164454-77fc1eacc6aa/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210316164454-77fc1eacc6aa/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210531080801-fdfd190a6549 h1:OL5GcZ2XPkte3dpfuFQ9o884vrE3BZQhajdntNMruv4=
|
golang.org/x/sys v0.0.0-20210531080801-fdfd190a6549 h1:OL5GcZ2XPkte3dpfuFQ9o884vrE3BZQhajdntNMruv4=
|
||||||
golang.org/x/sys v0.0.0-20210531080801-fdfd190a6549/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20210531080801-fdfd190a6549/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
|
||||||
golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
|
|
||||||
golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
|
|
||||||
golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
|
|
||||||
golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
|
|
||||||
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
|
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
||||||
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
|
|
||||||
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
|
|
||||||
honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=
|
|
||||||
|
|||||||
@@ -1,28 +0,0 @@
|
|||||||
package backups
|
|
||||||
|
|
||||||
// import (
|
|
||||||
// "fmt"
|
|
||||||
// "os"
|
|
||||||
// "path/filepath"
|
|
||||||
// "strings"
|
|
||||||
|
|
||||||
// "github.com/edgebox-iot/edgeboxctl/internal/diagnostics"
|
|
||||||
// "github.com/edgebox-iot/edgeboxctl/internal/utils"
|
|
||||||
// "github.com/shirou/gopsutil/disk"
|
|
||||||
// )
|
|
||||||
|
|
||||||
// Repository : Struct representing the backup repository of a device in the system
|
|
||||||
type Repository struct {
|
|
||||||
ID string `json:"id"`
|
|
||||||
FileCount int64 `json:"file_count"`
|
|
||||||
Size string `json:"size"`
|
|
||||||
Snapshots []Snapshot `json:"snapshots"`
|
|
||||||
Status string `json:"status"`
|
|
||||||
// UsageStat UsageStat `json:"usage_stat"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// Snapshot : Struct representing a single snapshot in the backup repository
|
|
||||||
type Snapshot struct {
|
|
||||||
ID string `json:"id"`
|
|
||||||
time string `json:"time"`
|
|
||||||
}
|
|
||||||
+19
-292
@@ -9,9 +9,7 @@ import (
|
|||||||
|
|
||||||
"github.com/joho/godotenv"
|
"github.com/joho/godotenv"
|
||||||
|
|
||||||
"github.com/edgebox-iot/edgeboxctl/internal/system"
|
|
||||||
"github.com/edgebox-iot/edgeboxctl/internal/utils"
|
"github.com/edgebox-iot/edgeboxctl/internal/utils"
|
||||||
"github.com/edgebox-iot/edgeboxctl/internal/diagnostics"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// EdgeApp : Struct representing an EdgeApp in the system
|
// EdgeApp : Struct representing an EdgeApp in the system
|
||||||
@@ -19,15 +17,11 @@ type EdgeApp struct {
|
|||||||
ID string `json:"id"`
|
ID string `json:"id"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Description string `json:"description"`
|
Description string `json:"description"`
|
||||||
Experimental bool `json:"experimental"`
|
|
||||||
Status EdgeAppStatus `json:"status"`
|
Status EdgeAppStatus `json:"status"`
|
||||||
Services []EdgeAppService `json:"services"`
|
Services []EdgeAppService `json:"services"`
|
||||||
InternetAccessible bool `json:"internet_accessible"`
|
InternetAccessible bool `json:"internet_accessible"`
|
||||||
NetworkURL string `json:"network_url"`
|
NetworkURL string `json:"network_url"`
|
||||||
InternetURL string `json:"internet_url"`
|
InternetURL string `json:"internet_url"`
|
||||||
Options []EdgeAppOption `json:"options"`
|
|
||||||
NeedsConfig bool `json:"needs_config"`
|
|
||||||
Login EdgeAppLogin `json:"login"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// MaybeEdgeApp : Boolean flag for validation of edgeapp existance
|
// MaybeEdgeApp : Boolean flag for validation of edgeapp existance
|
||||||
@@ -48,30 +42,9 @@ type EdgeAppService struct {
|
|||||||
IsRunning bool `json:"is_running"`
|
IsRunning bool `json:"is_running"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type EdgeAppOption struct {
|
|
||||||
Key string `json:"key"`
|
|
||||||
Value string `json:"value"`
|
|
||||||
DefaultValue string `json:"default_value"`
|
|
||||||
Format string `json:"format"`
|
|
||||||
Description string `json:"description"`
|
|
||||||
IsSecret bool `json:"is_secret"`
|
|
||||||
IsInstallLocked bool `json:"is_install_locked"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type EdgeAppLogin struct {
|
|
||||||
Enabled bool `json:"enabled"`
|
|
||||||
Username string `json:"username"`
|
|
||||||
Password string `json:"password"`
|
|
||||||
}
|
|
||||||
|
|
||||||
const configFilename = "/edgebox-compose.yml"
|
const configFilename = "/edgebox-compose.yml"
|
||||||
const envFilename = "/edgebox.env"
|
const envFilename = "/edgebox.env"
|
||||||
const optionsTemplateFilename = "/edgeapp.template.env"
|
|
||||||
const optionsEnvFilename = "/edgeapp.env"
|
|
||||||
const authEnvFilename = "/auth.env"
|
|
||||||
const runnableFilename = "/.run"
|
const runnableFilename = "/.run"
|
||||||
const appdataFoldername = "/appdata"
|
|
||||||
const postInstallFilename = "/edgebox-postinstall.done"
|
|
||||||
const myEdgeAppServiceEnvFilename = "/myedgeapp.env"
|
const myEdgeAppServiceEnvFilename = "/myedgeapp.env"
|
||||||
const defaultContainerOperationSleepTime time.Duration = time.Second * 10
|
const defaultContainerOperationSleepTime time.Duration = time.Second * 10
|
||||||
|
|
||||||
@@ -89,8 +62,6 @@ func GetEdgeApp(ID string) MaybeEdgeApp {
|
|||||||
|
|
||||||
edgeAppName := ID
|
edgeAppName := ID
|
||||||
edgeAppDescription := ""
|
edgeAppDescription := ""
|
||||||
edgeAppExperimental := false
|
|
||||||
edgeAppOptions := []EdgeAppOption{}
|
|
||||||
|
|
||||||
edgeAppEnv, err := godotenv.Read(utils.GetPath(utils.EdgeAppsPath) + ID + envFilename)
|
edgeAppEnv, err := godotenv.Read(utils.GetPath(utils.EdgeAppsPath) + ID + envFilename)
|
||||||
|
|
||||||
@@ -103,108 +74,8 @@ func GetEdgeApp(ID string) MaybeEdgeApp {
|
|||||||
if edgeAppEnv["EDGEAPP_DESCRIPTION"] != "" {
|
if edgeAppEnv["EDGEAPP_DESCRIPTION"] != "" {
|
||||||
edgeAppDescription = edgeAppEnv["EDGEAPP_DESCRIPTION"]
|
edgeAppDescription = edgeAppEnv["EDGEAPP_DESCRIPTION"]
|
||||||
}
|
}
|
||||||
if edgeAppEnv["EDGEAPP_EXPERIMENTAL"] == "true" {
|
|
||||||
edgeAppExperimental = true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
needsConfig := false
|
|
||||||
hasFilledOptions := false
|
|
||||||
edgeAppOptionsTemplate, err := godotenv.Read(utils.GetPath(utils.EdgeAppsPath) + ID + optionsTemplateFilename)
|
|
||||||
if err != nil {
|
|
||||||
log.Println("Error loading options template file for edgeapp " + edgeAppName)
|
|
||||||
} else {
|
|
||||||
// Try to read the edgeAppOptionsEnv file
|
|
||||||
edgeAppOptionsEnv, err := godotenv.Read(utils.GetPath(utils.EdgeAppsPath) + ID + optionsEnvFilename)
|
|
||||||
if err != nil {
|
|
||||||
log.Println("Error loading options env file for edgeapp " + edgeAppName)
|
|
||||||
} else {
|
|
||||||
hasFilledOptions = true
|
|
||||||
}
|
|
||||||
|
|
||||||
for key, value := range edgeAppOptionsTemplate {
|
|
||||||
|
|
||||||
optionFilledValue := ""
|
|
||||||
if hasFilledOptions {
|
|
||||||
// Check if key exists in edgeAppOptionsEnv
|
|
||||||
optionFilledValue = edgeAppOptionsEnv[key]
|
|
||||||
}
|
|
||||||
|
|
||||||
format := ""
|
|
||||||
defaultValue := ""
|
|
||||||
description := ""
|
|
||||||
installLocked := false
|
|
||||||
|
|
||||||
// Parse value to separate by | and get the format, installLocked, description and default value
|
|
||||||
// Format is the first element
|
|
||||||
// InstallLocked is the second element
|
|
||||||
// Description is the third element
|
|
||||||
// Default value is the fourth element
|
|
||||||
|
|
||||||
valueSlices := strings.Split(value, "|")
|
|
||||||
if len(valueSlices) > 0 {
|
|
||||||
format = valueSlices[0]
|
|
||||||
}
|
|
||||||
if len(valueSlices) > 1 {
|
|
||||||
installLocked = valueSlices[1] == "true"
|
|
||||||
}
|
|
||||||
if len(valueSlices) > 2 {
|
|
||||||
description = valueSlices[2]
|
|
||||||
}
|
|
||||||
if len(valueSlices) > 3 {
|
|
||||||
defaultValue = valueSlices[3]
|
|
||||||
}
|
|
||||||
|
|
||||||
// // If value contains ">|", then get everything that is to the right of it as the description
|
|
||||||
// // and get everything between "<>" as the format
|
|
||||||
// if strings.Contains(value, ">|") {
|
|
||||||
// description = strings.Split(value, ">|")[1]
|
|
||||||
// // Check if description has default value. That would be everything that is to the right of the last "|"
|
|
||||||
// if strings.Contains(description, "|") {
|
|
||||||
// defaultValue = strings.Split(description, "|")[1]
|
|
||||||
// description = strings.Split(description, "|")[0]
|
|
||||||
// }
|
|
||||||
|
|
||||||
// value = strings.Split(value, ">|")[0]
|
|
||||||
// // Remove the initial < from value
|
|
||||||
// value = strings.TrimPrefix(value, "<")
|
|
||||||
// } else {
|
|
||||||
// // Trim initial < and final > from value
|
|
||||||
// value = strings.TrimPrefix(value, "<")
|
|
||||||
// value = strings.TrimSuffix(value, ">")
|
|
||||||
// }
|
|
||||||
|
|
||||||
isSecret := false
|
|
||||||
|
|
||||||
// Check if the lowercased key string contains the letters "pass", "secret", "key"
|
|
||||||
lowercaseKey := strings.ToLower(key)
|
|
||||||
// check if lowercaseInput contains "pass", "key", or "secret", or "token"
|
|
||||||
if strings.Contains(lowercaseKey, "pass") ||
|
|
||||||
strings.Contains(lowercaseKey, "key") ||
|
|
||||||
strings.Contains(lowercaseKey, "secret") ||
|
|
||||||
strings.Contains(lowercaseKey, "token") {
|
|
||||||
isSecret = true
|
|
||||||
}
|
|
||||||
|
|
||||||
currentOption := EdgeAppOption{
|
|
||||||
Key: key,
|
|
||||||
Value: optionFilledValue,
|
|
||||||
DefaultValue: defaultValue,
|
|
||||||
Description: description,
|
|
||||||
Format: format,
|
|
||||||
IsSecret: isSecret,
|
|
||||||
IsInstallLocked: installLocked,
|
|
||||||
}
|
|
||||||
edgeAppOptions = append(edgeAppOptions, currentOption)
|
|
||||||
|
|
||||||
if optionFilledValue == "" {
|
|
||||||
needsConfig = true
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
edgeAppInternetAccessible := false
|
edgeAppInternetAccessible := false
|
||||||
edgeAppInternetURL := ""
|
edgeAppInternetURL := ""
|
||||||
|
|
||||||
@@ -218,36 +89,16 @@ func GetEdgeApp(ID string) MaybeEdgeApp {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
edgeAppBasicAuthEnabled := false
|
|
||||||
edgeAppBasicAuthUsername := ""
|
|
||||||
edgeAppBasicAuthPassword := ""
|
|
||||||
|
|
||||||
edgeAppAuthEnv, err := godotenv.Read(utils.GetPath(utils.EdgeAppsPath) + ID + authEnvFilename)
|
|
||||||
if err != nil {
|
|
||||||
log.Println("No auth.env file found. Login status is disabled.")
|
|
||||||
} else {
|
|
||||||
if edgeAppAuthEnv["USERNAME"] != "" && edgeAppAuthEnv["PASSWORD"] != "" {
|
|
||||||
edgeAppBasicAuthEnabled = true
|
|
||||||
edgeAppBasicAuthUsername = edgeAppAuthEnv["USERNAME"]
|
|
||||||
edgeAppBasicAuthPassword = edgeAppAuthEnv["PASSWORD"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
result = MaybeEdgeApp{
|
result = MaybeEdgeApp{
|
||||||
EdgeApp: EdgeApp{
|
EdgeApp: EdgeApp{
|
||||||
ID: ID,
|
ID: ID,
|
||||||
Name: edgeAppName,
|
Name: edgeAppName,
|
||||||
Description: edgeAppDescription,
|
Description: edgeAppDescription,
|
||||||
Experimental: edgeAppExperimental,
|
|
||||||
Status: GetEdgeAppStatus(ID),
|
Status: GetEdgeAppStatus(ID),
|
||||||
Services: GetEdgeAppServices(ID),
|
Services: GetEdgeAppServices(ID),
|
||||||
InternetAccessible: edgeAppInternetAccessible,
|
InternetAccessible: edgeAppInternetAccessible,
|
||||||
NetworkURL: ID + "." + system.GetHostname() + ".local",
|
NetworkURL: ID + ".edgebox.local",
|
||||||
InternetURL: edgeAppInternetURL,
|
InternetURL: edgeAppInternetURL,
|
||||||
Options: edgeAppOptions,
|
|
||||||
NeedsConfig: needsConfig,
|
|
||||||
Login: EdgeAppLogin{edgeAppBasicAuthEnabled, edgeAppBasicAuthUsername, edgeAppBasicAuthPassword},
|
|
||||||
|
|
||||||
},
|
},
|
||||||
Valid: true,
|
Valid: true,
|
||||||
}
|
}
|
||||||
@@ -271,53 +122,21 @@ func IsEdgeAppInstalled(ID string) bool {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func writeAppRunnableFiles(ID string) bool {
|
|
||||||
edgeAppPath := utils.GetPath(utils.EdgeAppsPath)
|
|
||||||
_, err := os.Stat(edgeAppPath + ID + runnableFilename)
|
|
||||||
if os.IsNotExist(err) {
|
|
||||||
_, err := os.Create(edgeAppPath + ID + runnableFilename)
|
|
||||||
if err != nil {
|
|
||||||
log.Fatal("Runnable file for EdgeApp could not be created!")
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check the block default apps option
|
|
||||||
blockDefaultAppsOption := utils.ReadOption("DASHBOARD_BLOCK_DEFAULT_APPS_PUBLIC_ACCESS")
|
|
||||||
if blockDefaultAppsOption != "yes" {
|
|
||||||
// Create myedgeapp.env file with default network URL
|
|
||||||
envFilePath := edgeAppPath + ID + myEdgeAppServiceEnvFilename
|
|
||||||
|
|
||||||
var networkURL string
|
|
||||||
domainName := utils.ReadOption("DOMAIN_NAME")
|
|
||||||
|
|
||||||
if domainName != "" {
|
|
||||||
networkURL = ID + "." + domainName
|
|
||||||
} else if diagnostics.GetReleaseVersion() == diagnostics.CLOUD_VERSION {
|
|
||||||
cluster := utils.ReadOption("CLUSTER")
|
|
||||||
username := utils.ReadOption("USERNAME")
|
|
||||||
if cluster != "" && username != "" {
|
|
||||||
networkURL = username + "-" + ID + "." + cluster
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
networkURL = ID + "." + system.GetHostname() + ".local" // default
|
|
||||||
}
|
|
||||||
|
|
||||||
env, _ := godotenv.Unmarshal("INTERNET_URL=" + networkURL)
|
|
||||||
err = godotenv.Write(env, envFilePath)
|
|
||||||
if err != nil {
|
|
||||||
log.Printf("Error creating myedgeapp.env file: %s", err)
|
|
||||||
// result = false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
func SetEdgeAppInstalled(ID string) bool {
|
func SetEdgeAppInstalled(ID string) bool {
|
||||||
|
|
||||||
result := true
|
result := true
|
||||||
|
edgeAppPath := utils.GetPath(utils.EdgeAppsPath)
|
||||||
|
|
||||||
if writeAppRunnableFiles(ID) {
|
_, err := os.Stat(edgeAppPath + ID + runnableFilename)
|
||||||
|
if os.IsNotExist(err) {
|
||||||
|
|
||||||
|
_, err := os.Create(edgeAppPath + ID + runnableFilename)
|
||||||
|
result = true
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal("Runnable file for EdgeApp could not be created!")
|
||||||
|
result = false
|
||||||
|
}
|
||||||
|
|
||||||
buildFrameworkContainers()
|
buildFrameworkContainers()
|
||||||
|
|
||||||
@@ -332,63 +151,13 @@ func SetEdgeAppInstalled(ID string) bool {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func SetEdgeAppBulkInstalled(IDs []string) bool {
|
|
||||||
|
|
||||||
result := true
|
|
||||||
|
|
||||||
for _, ID := range IDs {
|
|
||||||
writeAppRunnableFiles(ID)
|
|
||||||
}
|
|
||||||
|
|
||||||
buildFrameworkContainers()
|
|
||||||
|
|
||||||
return result
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
func SetEdgeAppNotInstalled(ID string) bool {
|
func SetEdgeAppNotInstalled(ID string) bool {
|
||||||
|
|
||||||
// Stop the app first
|
|
||||||
StopEdgeApp(ID)
|
|
||||||
|
|
||||||
// Now remove any files
|
|
||||||
result := true
|
result := true
|
||||||
|
|
||||||
err := os.Remove(utils.GetPath(utils.EdgeAppsPath) + ID + runnableFilename)
|
err := os.Remove(utils.GetPath(utils.EdgeAppsPath) + ID + runnableFilename)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
result = false
|
result = false
|
||||||
log.Println(err)
|
log.Fatal(err)
|
||||||
}
|
|
||||||
|
|
||||||
err = os.Remove(utils.GetPath(utils.EdgeAppsPath) + ID + authEnvFilename)
|
|
||||||
if err != nil {
|
|
||||||
result = false
|
|
||||||
log.Println(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
err = os.RemoveAll(utils.GetPath(utils.EdgeAppsPath) + ID + appdataFoldername)
|
|
||||||
if err != nil {
|
|
||||||
result = false
|
|
||||||
log.Println(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
err = os.Remove(utils.GetPath(utils.EdgeAppsPath) + ID + myEdgeAppServiceEnvFilename)
|
|
||||||
if err != nil {
|
|
||||||
result = false
|
|
||||||
log.Println(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
err = os.Remove(utils.GetPath(utils.EdgeAppsPath) + ID + optionsEnvFilename)
|
|
||||||
if err != nil {
|
|
||||||
result = false
|
|
||||||
log.Println(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
err = os.Remove(utils.GetPath(utils.EdgeAppsPath) + ID + postInstallFilename)
|
|
||||||
if err != nil {
|
|
||||||
result = false
|
|
||||||
log.Println(err)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
buildFrameworkContainers()
|
buildFrameworkContainers()
|
||||||
@@ -477,24 +246,12 @@ func GetEdgeAppServices(ID string) []EdgeAppService {
|
|||||||
var edgeAppServices []EdgeAppService
|
var edgeAppServices []EdgeAppService
|
||||||
|
|
||||||
for _, serviceID := range serviceSlices {
|
for _, serviceID := range serviceSlices {
|
||||||
shouldBeRunning := false
|
cmdArgs = []string{"-f", wsPath + "/docker-compose.yml", "exec", "-T", serviceID, "echo", "'Service Check'"}
|
||||||
|
cmdResult := utils.Exec(wsPath, "docker-compose", cmdArgs)
|
||||||
isRunning := false
|
isRunning := false
|
||||||
|
if cmdResult != "" {
|
||||||
// Is service "runnable" when .run lockfile in the app folder
|
isRunning = true
|
||||||
_, err := os.Stat(utils.GetPath(utils.EdgeAppsPath) + ID + runnableFilename)
|
|
||||||
if !os.IsNotExist(err) {
|
|
||||||
shouldBeRunning = true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if the service is actually running
|
|
||||||
if shouldBeRunning {
|
|
||||||
cmdArgs = []string{"-f", wsPath + "/docker-compose.yml", "exec", "-T", serviceID, "echo", "'Service Check'"}
|
|
||||||
cmdResult := utils.Exec(wsPath, "docker", append([]string{"compose"}, cmdArgs...))
|
|
||||||
if cmdResult != "" {
|
|
||||||
isRunning = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
edgeAppServices = append(edgeAppServices, EdgeAppService{ID: serviceID, IsRunning: isRunning})
|
edgeAppServices = append(edgeAppServices, EdgeAppService{ID: serviceID, IsRunning: isRunning})
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -511,7 +268,7 @@ func RunEdgeApp(ID string) EdgeAppStatus {
|
|||||||
for _, service := range services {
|
for _, service := range services {
|
||||||
|
|
||||||
cmdArgs = []string{"-f", wsPath + "/docker-compose.yml", "start", service.ID}
|
cmdArgs = []string{"-f", wsPath + "/docker-compose.yml", "start", service.ID}
|
||||||
utils.Exec(wsPath, "docker", append([]string{"compose"}, cmdArgs...))
|
utils.Exec(wsPath, "docker-compose", cmdArgs)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wait for it to settle up before continuing...
|
// Wait for it to settle up before continuing...
|
||||||
@@ -529,7 +286,7 @@ func StopEdgeApp(ID string) EdgeAppStatus {
|
|||||||
for _, service := range services {
|
for _, service := range services {
|
||||||
|
|
||||||
cmdArgs = []string{"-f", wsPath + "/docker-compose.yml", "stop", service.ID}
|
cmdArgs = []string{"-f", wsPath + "/docker-compose.yml", "stop", service.ID}
|
||||||
utils.Exec(wsPath, "docker", append([]string{"compose"}, cmdArgs...))
|
utils.Exec(wsPath, "docker-compose", cmdArgs)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wait for it to settle up before continuing...
|
// Wait for it to settle up before continuing...
|
||||||
@@ -539,36 +296,6 @@ func StopEdgeApp(ID string) EdgeAppStatus {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// StopAllEdgeApps: Stops all EdgeApps and returns a count of how many were stopped
|
|
||||||
func StopAllEdgeApps() int {
|
|
||||||
edgeApps := GetEdgeApps()
|
|
||||||
appCount := 0
|
|
||||||
for _, edgeApp := range edgeApps {
|
|
||||||
StopEdgeApp(edgeApp.ID)
|
|
||||||
appCount++
|
|
||||||
}
|
|
||||||
|
|
||||||
return appCount
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
// StartAllEdgeApps: Starts all EdgeApps and returns a count of how many were started
|
|
||||||
func StartAllEdgeApps() int {
|
|
||||||
edgeApps := GetEdgeApps()
|
|
||||||
appCount := 0
|
|
||||||
for _, edgeApp := range edgeApps {
|
|
||||||
RunEdgeApp(edgeApp.ID)
|
|
||||||
appCount++
|
|
||||||
}
|
|
||||||
|
|
||||||
return appCount
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
func RestartEdgeAppsService() {
|
|
||||||
buildFrameworkContainers()
|
|
||||||
}
|
|
||||||
|
|
||||||
// EnableOnline : Write environment file and rebuild the necessary containers. Rebuilds containers in project (in case of change only)
|
// EnableOnline : Write environment file and rebuild the necessary containers. Rebuilds containers in project (in case of change only)
|
||||||
func EnableOnline(ID string, InternetURL string) MaybeEdgeApp {
|
func EnableOnline(ID string, InternetURL string) MaybeEdgeApp {
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ package storage
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
@@ -74,13 +73,12 @@ const (
|
|||||||
DISK_TYPE_SDA DeviceIdentifier = "sda"
|
DISK_TYPE_SDA DeviceIdentifier = "sda"
|
||||||
DISK_TYPE_MCBLK DeviceIdentifier = "mmcblk0"
|
DISK_TYPE_MCBLK DeviceIdentifier = "mmcblk0"
|
||||||
DISK_TYPE_VDA DeviceIdentifier = "vda"
|
DISK_TYPE_VDA DeviceIdentifier = "vda"
|
||||||
MIN_DISK_SIZE int = 1048576 // 1GB in bytes
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetDeviceIdentifier(release_version diagnostics.ReleaseVersion) DeviceIdentifier {
|
func GetDeviceIdentifier(release_version diagnostics.ReleaseVersion) DeviceIdentifier {
|
||||||
switch release_version {
|
switch release_version {
|
||||||
case diagnostics.CLOUD_VERSION:
|
case diagnostics.CLOUD_VERSION:
|
||||||
return DISK_TYPE_SDA
|
return DISK_TYPE_VDA
|
||||||
case diagnostics.PROD_VERSION:
|
case diagnostics.PROD_VERSION:
|
||||||
return DISK_TYPE_MCBLK
|
return DISK_TYPE_MCBLK
|
||||||
}
|
}
|
||||||
@@ -136,13 +134,7 @@ func GetDevices(release_version diagnostics.ReleaseVersion) []Device {
|
|||||||
currentDevice.InUse = currentDeviceInUseFlag
|
currentDevice.InUse = currentDeviceInUseFlag
|
||||||
currentDeviceInUseFlag = false
|
currentDeviceInUseFlag = false
|
||||||
currentPartitions = []Partition{}
|
currentPartitions = []Partition{}
|
||||||
size, err := strconv.Atoi(currentDevice.Size)
|
devices = append(devices, currentDevice)
|
||||||
if err != nil {
|
|
||||||
size = 0
|
|
||||||
}
|
|
||||||
if size > MIN_DISK_SIZE {
|
|
||||||
devices = append(devices, currentDevice)
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
firstDevice = false
|
firstDevice = false
|
||||||
}
|
}
|
||||||
@@ -201,22 +193,8 @@ func GetDevices(release_version diagnostics.ReleaseVersion) []Device {
|
|||||||
currentDevice.Status.Description = "Not configured"
|
currentDevice.Status.Description = "Not configured"
|
||||||
}
|
}
|
||||||
currentDevice.InUse = currentDeviceInUseFlag
|
currentDevice.InUse = currentDeviceInUseFlag
|
||||||
|
devices = append([]Device{currentDevice}, devices...) // Prepending the first device...
|
||||||
|
|
||||||
fmt.Println("Secondary Storage Devices Found: ", len(devices))
|
|
||||||
fmt.Println("Main Storage Device size: ", currentDevice.Size)
|
|
||||||
|
|
||||||
// only append device if size > 1GB
|
|
||||||
if currentDevice.Size != "" && currentDevice.Size != "0" {
|
|
||||||
// Convert size to int
|
|
||||||
// Convert string to int
|
|
||||||
size, err := strconv.Atoi(currentDevice.Size)
|
|
||||||
if err != nil {
|
|
||||||
size = 0
|
|
||||||
}
|
|
||||||
if size > MIN_DISK_SIZE {
|
|
||||||
devices = append([]Device{currentDevice}, devices...) // Prepending the first device...
|
|
||||||
}
|
|
||||||
}
|
|
||||||
devices = getDevicesSpaceUsage(devices)
|
devices = getDevicesSpaceUsage(devices)
|
||||||
|
|
||||||
return devices
|
return devices
|
||||||
|
|||||||
@@ -4,29 +4,13 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"log"
|
|
||||||
"os"
|
|
||||||
"io"
|
|
||||||
"errors"
|
|
||||||
"os/exec"
|
|
||||||
"bufio"
|
|
||||||
"path/filepath"
|
|
||||||
"io/ioutil"
|
|
||||||
"encoding/json"
|
|
||||||
|
|
||||||
"github.com/edgebox-iot/edgeboxctl/internal/utils"
|
"github.com/edgebox-iot/edgeboxctl/internal/utils"
|
||||||
|
|
||||||
"github.com/joho/godotenv"
|
"github.com/joho/godotenv"
|
||||||
"github.com/shirou/gopsutil/host"
|
"github.com/shirou/gopsutil/host"
|
||||||
"github.com/go-yaml/yaml"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type cloudflaredTunnelJson struct {
|
|
||||||
AccountTag string `json:"AccountTag"`
|
|
||||||
TunnelSecret string `json:"TunnelSecret"`
|
|
||||||
TunnelID string `json:"TunnelID"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// GetUptimeInSeconds: Returns a value (as string) of the total system uptime
|
// GetUptimeInSeconds: Returns a value (as string) of the total system uptime
|
||||||
func GetUptimeInSeconds() string {
|
func GetUptimeInSeconds() string {
|
||||||
uptime, _ := host.Uptime()
|
uptime, _ := host.Uptime()
|
||||||
@@ -94,22 +78,6 @@ func SetupCloudOptions() {
|
|||||||
utils.WriteOption("EMAIL", cloudEnv["EMAIL"])
|
utils.WriteOption("EMAIL", cloudEnv["EMAIL"])
|
||||||
}
|
}
|
||||||
|
|
||||||
if cloudEnv["USERNAME"] != "" {
|
|
||||||
utils.WriteOption("USERNAME", cloudEnv["USERNAME"])
|
|
||||||
}
|
|
||||||
|
|
||||||
if cloudEnv["CLUSTER"] != "" {
|
|
||||||
utils.WriteOption("CLUSTER", cloudEnv["CLUSTER"])
|
|
||||||
}
|
|
||||||
|
|
||||||
if cloudEnv["CLUSTER_IP"] != "" {
|
|
||||||
utils.WriteOption("CLUSTER_IP", cloudEnv["CLUSTER_IP"])
|
|
||||||
}
|
|
||||||
|
|
||||||
if cloudEnv["CLUSTER_SSH_PORT"] != "" {
|
|
||||||
utils.WriteOption("CLUSTER_SSH_PORT", cloudEnv["CLUSTER_SSH_PORT"])
|
|
||||||
}
|
|
||||||
|
|
||||||
if cloudEnv["EDGEBOXIO_API_TOKEN"] != "" {
|
if cloudEnv["EDGEBOXIO_API_TOKEN"] != "" {
|
||||||
utils.WriteOption("EDGEBOXIO_API_TOKEN", cloudEnv["EDGEBOXIO_API_TOKEN"])
|
utils.WriteOption("EDGEBOXIO_API_TOKEN", cloudEnv["EDGEBOXIO_API_TOKEN"])
|
||||||
}
|
}
|
||||||
@@ -117,484 +85,3 @@ func SetupCloudOptions() {
|
|||||||
// In the end of this operation takes place, remove the env file as to not overwrite any options once they are set.
|
// In the end of this operation takes place, remove the env file as to not overwrite any options once they are set.
|
||||||
utils.Exec("/", "rm", []string{cloudEnvFileLocationPath})
|
utils.Exec("/", "rm", []string{cloudEnvFileLocationPath})
|
||||||
}
|
}
|
||||||
|
|
||||||
func StartSystemLogger() {
|
|
||||||
fmt.Println("Starting system logger")
|
|
||||||
loggerPath := utils.GetPath(utils.LoggerPath)
|
|
||||||
utils.Exec(loggerPath, "make", []string{"start"})
|
|
||||||
}
|
|
||||||
|
|
||||||
// UpdateSystemLoggerServices: Updates the services.txt file with the services that are currently running
|
|
||||||
func UpdateSystemLoggerServices(services []string) {
|
|
||||||
fmt.Println("Updating system logger services:")
|
|
||||||
fmt.Println(services)
|
|
||||||
loggerPath := utils.GetPath(utils.LoggerPath)
|
|
||||||
|
|
||||||
utils.Exec(loggerPath, "bash", []string{"-c", "rm services.txt && touch services.txt"})
|
|
||||||
|
|
||||||
for _, service := range services {
|
|
||||||
fmt.Println("Adding " + service + " to services.txt")
|
|
||||||
utils.Exec(loggerPath, "bash", []string{"-c", "echo " + service + " >> services.txt"})
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add empty line at the end of file (best practice)
|
|
||||||
utils.Exec(loggerPath, "bash", []string{"-c", "echo '' >> services.txt"})
|
|
||||||
}
|
|
||||||
|
|
||||||
// StartWs: Starts the webserver service for Edgeapps
|
|
||||||
func StartWs() {
|
|
||||||
wsPath := utils.GetPath(utils.WsPath)
|
|
||||||
fmt.Println("Starting WS")
|
|
||||||
cmdargs := []string{"-b"}
|
|
||||||
utils.Exec(wsPath, "./ws", cmdargs)
|
|
||||||
}
|
|
||||||
|
|
||||||
// StartService: Starts a service
|
|
||||||
func StartService(serviceID string) {
|
|
||||||
wsPath := utils.GetPath(utils.WsPath)
|
|
||||||
fmt.Println("Starting" + serviceID + "service")
|
|
||||||
cmdargs := []string{"start", serviceID}
|
|
||||||
utils.Exec(wsPath, "systemctl", cmdargs)
|
|
||||||
}
|
|
||||||
|
|
||||||
// StopService: Stops a service
|
|
||||||
func StopService(serviceID string) {
|
|
||||||
wsPath := utils.GetPath(utils.WsPath)
|
|
||||||
fmt.Println("Stopping" + serviceID + "service")
|
|
||||||
cmdargs := []string{"stop", "cloudflared"}
|
|
||||||
utils.Exec(wsPath, "systemctl", cmdargs)
|
|
||||||
}
|
|
||||||
|
|
||||||
// RestartService: Restarts a service
|
|
||||||
func RestartService(serviceID string) {
|
|
||||||
wsPath := utils.GetPath(utils.WsPath)
|
|
||||||
fmt.Println("Restarting" + serviceID + "service")
|
|
||||||
cmdargs := []string{"restart", serviceID}
|
|
||||||
utils.Exec(wsPath, "systemctl", cmdargs)
|
|
||||||
}
|
|
||||||
|
|
||||||
// GetServiceStatus: Returns the status output of a service
|
|
||||||
func GetServiceStatus(serviceID string) string {
|
|
||||||
wsPath := utils.GetPath(utils.WsPath)
|
|
||||||
cmdargs := []string{"status", serviceID}
|
|
||||||
return utils.Exec(wsPath, "systemctl", cmdargs)
|
|
||||||
}
|
|
||||||
|
|
||||||
func CreateBackupsPasswordFile(password string) {
|
|
||||||
// Create a password file for backups
|
|
||||||
backupPasswordFile := utils.GetPath(utils.BackupPasswordFileLocation)
|
|
||||||
backupPasswordFileDir := filepath.Dir(backupPasswordFile)
|
|
||||||
|
|
||||||
if _, err := os.Stat(backupPasswordFileDir); os.IsNotExist(err) {
|
|
||||||
os.MkdirAll(backupPasswordFileDir, 0755)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Write the password to the file, overriting an existing file
|
|
||||||
err := ioutil.WriteFile(backupPasswordFile, []byte(password), 0644)
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// CreateTunnel: Creates a tunnel via cloudflared, needs to be authenticated first
|
|
||||||
func CreateTunnel(configDestination string) {
|
|
||||||
fmt.Println("Creating Tunnel for Edgebox.")
|
|
||||||
cmd := exec.Command("sh", "/home/system/components/edgeboxctl/scripts/cloudflared_tunnel_create.sh")
|
|
||||||
stdout, err := cmd.StdoutPipe()
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
scanner := bufio.NewScanner(stdout)
|
|
||||||
err = cmd.Start()
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
for scanner.Scan() {
|
|
||||||
fmt.Println(scanner.Text())
|
|
||||||
text := scanner.Text()
|
|
||||||
fmt.Println(text)
|
|
||||||
}
|
|
||||||
if scanner.Err() != nil {
|
|
||||||
cmd.Process.Kill()
|
|
||||||
cmd.Wait()
|
|
||||||
panic(scanner.Err())
|
|
||||||
}
|
|
||||||
|
|
||||||
// This also needs to be executed in root and non root variants
|
|
||||||
fmt.Println("Reading cloudflared folder to get the JSON file.")
|
|
||||||
isRoot := false
|
|
||||||
dir := "/home/system/.cloudflared/"
|
|
||||||
dir2 := "/root/.cloudflared/"
|
|
||||||
files, err := os.ReadDir(dir)
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
var jsonFile os.DirEntry
|
|
||||||
for _, file := range files {
|
|
||||||
// check if file has json extension
|
|
||||||
if filepath.Ext(file.Name()) == ".json" {
|
|
||||||
fmt.Println("Non-Root JSON file found: " + file.Name())
|
|
||||||
jsonFile = file
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// If the files are not in the home folder, try the root folder
|
|
||||||
if jsonFile == nil {
|
|
||||||
files, err = os.ReadDir(dir2)
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
for _, file := range files {
|
|
||||||
// check if file has json extension
|
|
||||||
if filepath.Ext(file.Name()) == ".json" {
|
|
||||||
fmt.Println("Root JSON file found: " + file.Name())
|
|
||||||
jsonFile = file
|
|
||||||
isRoot = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if jsonFile == nil {
|
|
||||||
panic("No JSON file found in directory")
|
|
||||||
}
|
|
||||||
|
|
||||||
fmt.Println("Reading JSON file.")
|
|
||||||
targetDir := "/home/system/.cloudflared/"
|
|
||||||
if isRoot {
|
|
||||||
targetDir = "/root/.cloudflared/"
|
|
||||||
}
|
|
||||||
|
|
||||||
jsonFilePath := filepath.Join(targetDir, jsonFile.Name())
|
|
||||||
jsonBytes, err := ioutil.ReadFile(jsonFilePath)
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
fmt.Println("Parsing JSON file.")
|
|
||||||
var data cloudflaredTunnelJson
|
|
||||||
err = json.Unmarshal(jsonBytes, &data)
|
|
||||||
if err != nil {
|
|
||||||
log.Printf("Error reading tunnel JSON file: %s", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
fmt.Println("Tunnel ID is:" + data.TunnelID)
|
|
||||||
|
|
||||||
// create the config.yml file with the following content in each line:
|
|
||||||
// "url": "http://localhost:80"
|
|
||||||
// "tunnel": "<TunnelID>"
|
|
||||||
// "credentials-file": "/root/.cloudflared/<tunnelID>.json"
|
|
||||||
|
|
||||||
file := configDestination
|
|
||||||
f, err := os.Create(file)
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
defer f.Close()
|
|
||||||
|
|
||||||
_, err = f.WriteString("url: http://localhost:80\ntunnel: " + data.TunnelID + "\ncredentials-file: " + jsonFilePath)
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// DeleteTunnel: Deletes a tunnel via cloudflared, this does not remove the service
|
|
||||||
func DeleteTunnel() {
|
|
||||||
fmt.Println("Deleting possible previous tunnel.")
|
|
||||||
|
|
||||||
// Configure the service and start it
|
|
||||||
cmd := exec.Command("sh", "/home/system/components/edgeboxctl/scripts/cloudflared_tunnel_delete.sh")
|
|
||||||
stdout, err := cmd.StdoutPipe()
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
scanner := bufio.NewScanner(stdout)
|
|
||||||
err = cmd.Start()
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
for scanner.Scan() {
|
|
||||||
fmt.Println(scanner.Text())
|
|
||||||
text := scanner.Text()
|
|
||||||
fmt.Println(text)
|
|
||||||
}
|
|
||||||
if scanner.Err() != nil {
|
|
||||||
cmd.Process.Kill()
|
|
||||||
cmd.Wait()
|
|
||||||
panic(scanner.Err())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// InstallTunnelService: Installs the tunnel service
|
|
||||||
func InstallTunnelService(config string) {
|
|
||||||
fmt.Println("Installing cloudflared service.")
|
|
||||||
cmd := exec.Command("cloudflared", "--config", config, "service", "install")
|
|
||||||
cmd.Start()
|
|
||||||
cmd.Wait()
|
|
||||||
}
|
|
||||||
|
|
||||||
// RemoveTunnelService: Removes the tunnel service
|
|
||||||
func RemoveTunnelService() {
|
|
||||||
wsPath := utils.GetPath(utils.WsPath)
|
|
||||||
fmt.Println("Removing possibly previous service install.")
|
|
||||||
cmd := exec.Command("cloudflared", "service", "uninstall")
|
|
||||||
cmd.Start()
|
|
||||||
cmd.Wait()
|
|
||||||
|
|
||||||
fmt.Println("Removing cloudflared files")
|
|
||||||
cmdargs := []string{"-rf", "/home/system/.cloudflared"}
|
|
||||||
utils.Exec(wsPath, "rm", cmdargs)
|
|
||||||
cmdargs = []string{"-rf", "/etc/cloudflared/config.yml"}
|
|
||||||
utils.Exec(wsPath, "rm", cmdargs)
|
|
||||||
cmdargs = []string{"-rf", "/root/.cloudflared/cert.pem"}
|
|
||||||
utils.Exec(wsPath, "rm", cmdargs)
|
|
||||||
}
|
|
||||||
|
|
||||||
func CopyDir(src string, dest string) error {
|
|
||||||
srcInfo, err := os.Stat(src)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if !srcInfo.IsDir() {
|
|
||||||
return fmt.Errorf("%s is not a directory", src)
|
|
||||||
}
|
|
||||||
|
|
||||||
err = os.MkdirAll(dest, srcInfo.Mode())
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
items, err := ioutil.ReadDir(src)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, item := range items {
|
|
||||||
srcPath := filepath.Join(src, item.Name())
|
|
||||||
destPath := filepath.Join(dest, item.Name())
|
|
||||||
|
|
||||||
if item.IsDir() {
|
|
||||||
err = CopyDir(srcPath, destPath)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Printf("error copying directory %s to %s: %s\n", srcPath, destPath, err.Error())
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
err = CopyFile(srcPath, destPath)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Printf("error copying file %s to %s: %s\n", srcPath, destPath, err.Error())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func CopyFile(src string, dest string) error {
|
|
||||||
srcFile, err := os.Open(src)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer srcFile.Close()
|
|
||||||
|
|
||||||
destFile, err := os.Create(dest)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer destFile.Close()
|
|
||||||
|
|
||||||
_, err = io.Copy(destFile, srcFile)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
err = destFile.Sync()
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
srcInfo, err := os.Stat(src)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
err = os.Chmod(dest, srcInfo.Mode())
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func CheckUpdates() {
|
|
||||||
fmt.Println("Checking for Edgebox System Updates.")
|
|
||||||
|
|
||||||
// Configure the service and start it
|
|
||||||
cmd := exec.Command("sh", "/home/system/components/updater/run.sh", "--check")
|
|
||||||
stdout, err := cmd.StdoutPipe()
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
scanner := bufio.NewScanner(stdout)
|
|
||||||
err = cmd.Start()
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
for scanner.Scan() {
|
|
||||||
// fmt.Println(scanner.Text())
|
|
||||||
text := scanner.Text()
|
|
||||||
fmt.Println(text)
|
|
||||||
}
|
|
||||||
if scanner.Err() != nil {
|
|
||||||
cmd.Process.Kill()
|
|
||||||
cmd.Wait()
|
|
||||||
fmt.Println("Error running updates check.")
|
|
||||||
utils.WriteOption("SYSTEM_UPDATES", "[]")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// Read targets.env file into JSON list structure
|
|
||||||
targets := []string{}
|
|
||||||
targetsFile, err := os.Open("/home/system/components/updater/targets.env")
|
|
||||||
if err != nil {
|
|
||||||
fmt.Println("No targets.env file found. Skipping.")
|
|
||||||
utils.WriteOption("SYSTEM_UPDATES", "[]")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
defer targetsFile.Close()
|
|
||||||
scanner = bufio.NewScanner(targetsFile)
|
|
||||||
for scanner.Scan() {
|
|
||||||
text := scanner.Text()
|
|
||||||
// text line should look like: {"target": "<target>", "version": "<version>"}
|
|
||||||
target := strings.Split(text, "=")
|
|
||||||
newText := "{\"target\": \"" + strings.Replace(target[0], "_VERSION", "", -1) + "\", \"version\": \"" + target[1] + "\"}"
|
|
||||||
targets = append(targets, newText)
|
|
||||||
}
|
|
||||||
if scanner.Err() != nil {
|
|
||||||
fmt.Println("Error reading update targets file.")
|
|
||||||
utils.WriteOption("SYSTEM_UPDATES", "[]")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// convert targets to string
|
|
||||||
targetsString := strings.Join(targets, ",")
|
|
||||||
targetsString = "[" + targetsString + "]"
|
|
||||||
|
|
||||||
fmt.Println(targetsString)
|
|
||||||
|
|
||||||
// Write option with targets
|
|
||||||
utils.WriteOption("SYSTEM_UPDATES", targetsString)
|
|
||||||
}
|
|
||||||
|
|
||||||
func ApplyUpdates() {
|
|
||||||
fmt.Println("Applying Edgebox System Updates.")
|
|
||||||
|
|
||||||
utils.WriteOption("UPDATING_SYSTEM", "true")
|
|
||||||
|
|
||||||
// Configure the service and start it
|
|
||||||
cmd := exec.Command("sh", "/home/system/components/updater/run.sh", "--update")
|
|
||||||
stdout, err := cmd.StdoutPipe()
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
scanner := bufio.NewScanner(stdout)
|
|
||||||
err = cmd.Start()
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
for scanner.Scan() {
|
|
||||||
fmt.Println(scanner.Text())
|
|
||||||
text := scanner.Text()
|
|
||||||
fmt.Println(text)
|
|
||||||
}
|
|
||||||
if scanner.Err() != nil {
|
|
||||||
cmd.Process.Kill()
|
|
||||||
cmd.Wait()
|
|
||||||
panic(scanner.Err())
|
|
||||||
}
|
|
||||||
|
|
||||||
// If the system did not yet restart, set updating system to false
|
|
||||||
utils.WriteOption("UPDATING_SYSTEM", "false")
|
|
||||||
}
|
|
||||||
|
|
||||||
func FetchBrowserDevPasswordFromFile() (string, error) {
|
|
||||||