From b4f3158a5d43d4f45ce5932aea68277d3d65b356 Mon Sep 17 00:00:00 2001 From: Andy Funk Date: Mon, 9 Dec 2024 08:10:40 -0700 Subject: [PATCH] systemctl enable func --- .github/workflows/go.yml | 2 +- FUNC.iss | 2 +- create-package.sh | 2 +- deb/control | 2 +- deb/postinst | 3 ++- webui/package.json | 2 +- 6 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index a081683..c73a882 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -139,5 +139,5 @@ jobs: uses: ncipollo/release-action@v1 with: allowUpdates: true - tag: v2.0.4 + tag: v2.0.5 artifacts: "Output/*" diff --git a/FUNC.iss b/FUNC.iss index 1373d50..a544d22 100644 --- a/FUNC.iss +++ b/FUNC.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "FUNC" -#define MyAppVersion "2.0.4" +#define MyAppVersion "2.0.5" #define MyAppPublisher "Galaxy Pay, LLC" #define MyAppPublisherURL "https://galaxy-pay.com" #define MyPublishPath "publish" diff --git a/create-package.sh b/create-package.sh index 6758efe..4ec28fd 100644 --- a/create-package.sh +++ b/create-package.sh @@ -1,6 +1,6 @@ rm -r Output -PKG=Output/func_2.0.4_amd64 +PKG=Output/func_2.0.5_amd64 mkdir -p $PKG/lib/systemd/system mkdir -p $PKG/opt/func diff --git a/deb/control b/deb/control index 8c0fd51..f8048d5 100644 --- a/deb/control +++ b/deb/control @@ -1,5 +1,5 @@ Package: func -Version: 2.0.4 +Version: 2.0.5 Section: base Priority: optional Architecture: amd64 diff --git a/deb/postinst b/deb/postinst index d39d562..f0ce53f 100644 --- a/deb/postinst +++ b/deb/postinst @@ -1,3 +1,4 @@ systemctl daemon-reload systemctl start func -systemctl restart func \ No newline at end of file +systemctl restart func +systemctl enable func \ No newline at end of file diff --git a/webui/package.json b/webui/package.json index e166ef9..5d1fa9e 100644 --- a/webui/package.json +++ b/webui/package.json @@ -1,6 +1,6 @@ { "name": "func-webui", - "version": "2.0.4", + "version": "2.0.5", "scripts": { "dev": "vite", "build": "vue-tsc --noEmit && vite build",