mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-04-28 13:20:40 +00:00
Compare commits
34 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a9fbde2ae5 | |||
| c926f0ef47 | |||
| 513e58b5d1 | |||
| 8da59d6133 | |||
| 1f6303c918 | |||
| d05305d4c4 | |||
| ed7156b89c | |||
| 4dc7418b3d | |||
| 608b77a662 | |||
| a7b8259022 | |||
| b226c87a00 | |||
| ea296b59f4 | |||
| 6ab9737137 | |||
| 6044637f12 | |||
| 93a53fe16e | |||
| 5cab784bcb | |||
| 585de1ba0c | |||
| c32ca537f1 | |||
| 424575d8c1 | |||
| 782420b4e4 | |||
| 9b8129abd3 | |||
| 1c169fc7e2 | |||
| f985d84952 | |||
| 88397b48dc | |||
| 91b03574e4 | |||
| ca915da8c1 | |||
| 95f2d24f53 | |||
| df9fa394b8 | |||
| 1e1e96b68e | |||
| 13bd09532a | |||
| b78cdb4008 | |||
| 4963385bf9 | |||
| 799f3bf0fb | |||
| 2f6f0880ac |
Generated
+182
-2
@@ -7,7 +7,7 @@ on:
|
|||||||
permissions:
|
permissions:
|
||||||
issues: write
|
issues: write
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
contents: read
|
contents: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
pocketbase-bot:
|
pocketbase-bot:
|
||||||
@@ -95,6 +95,149 @@ jobs:
|
|||||||
return request('https://api.github.com' + path, { method: method || 'GET', headers, body: bodyStr });
|
return request('https://api.github.com' + path, { method: method || 'GET', headers, body: bodyStr });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function encodeContentPath(filePath) {
|
||||||
|
return filePath.split('/').map(encodeURIComponent).join('/');
|
||||||
|
}
|
||||||
|
|
||||||
|
function decodeGitHubContent(content) {
|
||||||
|
return Buffer.from((content || '').replace(/\n/g, ''), 'base64').toString('utf8');
|
||||||
|
}
|
||||||
|
|
||||||
|
function sanitizeBranchPart(value) {
|
||||||
|
return (value || '')
|
||||||
|
.toLowerCase()
|
||||||
|
.replace(/[^a-z0-9._/-]+/g, '-')
|
||||||
|
.replace(/\/+/g, '/')
|
||||||
|
.replace(/^-+|-+$/g, '');
|
||||||
|
}
|
||||||
|
|
||||||
|
function applyCtDefaultChanges(scriptText, varChanges) {
|
||||||
|
let nextText = scriptText;
|
||||||
|
const updatedVars = [];
|
||||||
|
const unchangedVars = [];
|
||||||
|
for (const [varName, rawValue] of Object.entries(varChanges)) {
|
||||||
|
const newValue = String(rawValue);
|
||||||
|
const pattern = new RegExp('(^\\s*' + varName + '="\\$\\{' + varName + ':-)([^"}]*)(\\}"\\s*$)', 'm');
|
||||||
|
const match = nextText.match(pattern);
|
||||||
|
if (!match) continue;
|
||||||
|
if (match[2] === newValue) {
|
||||||
|
unchangedVars.push(varName);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
nextText = nextText.replace(pattern, '$1' + newValue + '$3');
|
||||||
|
updatedVars.push(varName);
|
||||||
|
}
|
||||||
|
return { nextText, updatedVars, unchangedVars };
|
||||||
|
}
|
||||||
|
|
||||||
|
async function ensureBranch(defaultBranch, branchName) {
|
||||||
|
const branchRefRes = await ghRequest('/repos/' + owner + '/' + repo + '/git/ref/heads/' + encodeURIComponent(branchName));
|
||||||
|
if (branchRefRes.ok) return;
|
||||||
|
|
||||||
|
const defaultRefRes = await ghRequest('/repos/' + owner + '/' + repo + '/git/ref/heads/' + encodeURIComponent(defaultBranch));
|
||||||
|
if (!defaultRefRes.ok) {
|
||||||
|
throw new Error('Could not read default branch ref: ' + defaultRefRes.body);
|
||||||
|
}
|
||||||
|
const defaultRef = JSON.parse(defaultRefRes.body);
|
||||||
|
const createBranchRes = await ghRequest('/repos/' + owner + '/' + repo + '/git/refs', 'POST', {
|
||||||
|
ref: 'refs/heads/' + branchName,
|
||||||
|
sha: defaultRef.object.sha
|
||||||
|
});
|
||||||
|
if (!createBranchRes.ok) {
|
||||||
|
throw new Error('Could not create branch: ' + createBranchRes.body);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function upsertCtDefaultsPr(slugValue, varChanges) {
|
||||||
|
const wantedEntries = Object.entries(varChanges || {}).filter(function ([, v]) {
|
||||||
|
return v !== undefined && v !== null && String(v) !== '';
|
||||||
|
});
|
||||||
|
if (wantedEntries.length === 0) {
|
||||||
|
return { status: 'skipped', reason: 'No mapped CT defaults changed.' };
|
||||||
|
}
|
||||||
|
|
||||||
|
const repoRes = await ghRequest('/repos/' + owner + '/' + repo);
|
||||||
|
if (!repoRes.ok) {
|
||||||
|
throw new Error('Could not read repository metadata: ' + repoRes.body);
|
||||||
|
}
|
||||||
|
const repoInfo = JSON.parse(repoRes.body);
|
||||||
|
const defaultBranch = repoInfo.default_branch;
|
||||||
|
|
||||||
|
const ctPath = 'ct/' + slugValue + '.sh';
|
||||||
|
const encodedCtPath = encodeContentPath(ctPath);
|
||||||
|
const defaultFileRes = await ghRequest('/repos/' + owner + '/' + repo + '/contents/' + encodedCtPath + '?ref=' + encodeURIComponent(defaultBranch));
|
||||||
|
if (defaultFileRes.statusCode === 404) {
|
||||||
|
return { status: 'skipped', reason: 'No matching CT file found at `' + ctPath + '`.' };
|
||||||
|
}
|
||||||
|
if (!defaultFileRes.ok) {
|
||||||
|
throw new Error('Could not read CT file from default branch: ' + defaultFileRes.body);
|
||||||
|
}
|
||||||
|
|
||||||
|
const branchName = 'pocketbase-sync/' + sanitizeBranchPart(slugValue || 'unknown');
|
||||||
|
await ensureBranch(defaultBranch, branchName);
|
||||||
|
|
||||||
|
const branchFileRes = await ghRequest('/repos/' + owner + '/' + repo + '/contents/' + encodedCtPath + '?ref=' + encodeURIComponent(branchName));
|
||||||
|
if (!branchFileRes.ok) {
|
||||||
|
throw new Error('Could not read CT file from sync branch: ' + branchFileRes.body);
|
||||||
|
}
|
||||||
|
const branchFile = JSON.parse(branchFileRes.body);
|
||||||
|
const currentBranchText = decodeGitHubContent(branchFile.content);
|
||||||
|
|
||||||
|
const updateResult = applyCtDefaultChanges(currentBranchText, Object.fromEntries(wantedEntries));
|
||||||
|
if (updateResult.updatedVars.length === 0) {
|
||||||
|
return { status: 'skipped', reason: 'CT defaults already up to date.', unchangedVars: updateResult.unchangedVars };
|
||||||
|
}
|
||||||
|
|
||||||
|
const commitMessage = 'chore(ct): sync ' + slugValue + ' defaults from PocketBase';
|
||||||
|
const putRes = await ghRequest('/repos/' + owner + '/' + repo + '/contents/' + encodedCtPath, 'PUT', {
|
||||||
|
message: commitMessage,
|
||||||
|
content: Buffer.from(updateResult.nextText, 'utf8').toString('base64'),
|
||||||
|
sha: branchFile.sha,
|
||||||
|
branch: branchName
|
||||||
|
});
|
||||||
|
if (!putRes.ok) {
|
||||||
|
throw new Error('Could not update CT file: ' + putRes.body);
|
||||||
|
}
|
||||||
|
|
||||||
|
const openPrRes = await ghRequest(
|
||||||
|
'/repos/' + owner + '/' + repo + '/pulls?state=open&head=' + encodeURIComponent(owner + ':' + branchName) + '&base=' + encodeURIComponent(defaultBranch)
|
||||||
|
);
|
||||||
|
if (!openPrRes.ok) {
|
||||||
|
throw new Error('Could not query existing PRs: ' + openPrRes.body);
|
||||||
|
}
|
||||||
|
const openPrs = JSON.parse(openPrRes.body);
|
||||||
|
if (openPrs.length > 0) {
|
||||||
|
return { status: 'updated', prUrl: openPrs[0].html_url, updatedVars: updateResult.updatedVars };
|
||||||
|
}
|
||||||
|
|
||||||
|
const prTitle = 'chore(ct): sync ' + slugValue + ' defaults with PocketBase';
|
||||||
|
const prBody =
|
||||||
|
'## Summary\n' +
|
||||||
|
'- Sync default CT variables for `' + slugValue + '` after `/pocketbase` update.\n' +
|
||||||
|
'- Updated vars: `' + updateResult.updatedVars.join('`, `') + '`.\n\n' +
|
||||||
|
'## Source\n' +
|
||||||
|
'- Triggered by @' + actor + ' via PocketBase bot.\n';
|
||||||
|
const createPrRes = await ghRequest('/repos/' + owner + '/' + repo + '/pulls', 'POST', {
|
||||||
|
title: prTitle,
|
||||||
|
body: prBody,
|
||||||
|
head: branchName,
|
||||||
|
base: defaultBranch
|
||||||
|
});
|
||||||
|
if (!createPrRes.ok) {
|
||||||
|
throw new Error('Could not create PR: ' + createPrRes.body);
|
||||||
|
}
|
||||||
|
const pr = JSON.parse(createPrRes.body);
|
||||||
|
return { status: 'created', prUrl: pr.html_url, updatedVars: updateResult.updatedVars };
|
||||||
|
}
|
||||||
|
|
||||||
|
function formatCtSyncResult(syncResult) {
|
||||||
|
if (!syncResult) return '';
|
||||||
|
if (syncResult.status === 'created') return '\n\n**CT sync PR:** ' + syncResult.prUrl;
|
||||||
|
if (syncResult.status === 'updated') return '\n\n**CT sync PR updated:** ' + syncResult.prUrl;
|
||||||
|
if (syncResult.status === 'skipped') return '\n\n**CT sync skipped:** ' + syncResult.reason;
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
async function addReaction(content) {
|
async function addReaction(content) {
|
||||||
try {
|
try {
|
||||||
await ghRequest(
|
await ghRequest(
|
||||||
@@ -510,6 +653,7 @@ jobs:
|
|||||||
const RESOURCE_KEYS = { cpu: 'number', ram: 'number', hdd: 'number', os: 'string', version: 'string' };
|
const RESOURCE_KEYS = { cpu: 'number', ram: 'number', hdd: 'number', os: 'string', version: 'string' };
|
||||||
const METHOD_KEYS = { config_path: 'string', script: 'string' };
|
const METHOD_KEYS = { config_path: 'string', script: 'string' };
|
||||||
const ALL_METHOD_KEYS = Object.assign({}, RESOURCE_KEYS, METHOD_KEYS);
|
const ALL_METHOD_KEYS = Object.assign({}, RESOURCE_KEYS, METHOD_KEYS);
|
||||||
|
const RESOURCE_TO_CT_VAR = { cpu: 'var_cpu', ram: 'var_ram', hdd: 'var_disk', os: 'var_os', version: 'var_version' };
|
||||||
|
|
||||||
function applyMethodChanges(method, parsed) {
|
function applyMethodChanges(method, parsed) {
|
||||||
if (!method.resources) method.resources = {};
|
if (!method.resources) method.resources = {};
|
||||||
@@ -550,6 +694,7 @@ jobs:
|
|||||||
if (addMatch) {
|
if (addMatch) {
|
||||||
// ── METHOD ADD ───────────────────────────────────────────────
|
// ── METHOD ADD ───────────────────────────────────────────────
|
||||||
const newType = addMatch[1];
|
const newType = addMatch[1];
|
||||||
|
const parsed = addMatch[2] ? parseKVPairs(addMatch[2]) : {};
|
||||||
if (methodsArr.some(function (im) { return (im.type || '').toLowerCase() === newType.toLowerCase(); })) {
|
if (methodsArr.some(function (im) { return (im.type || '').toLowerCase() === newType.toLowerCase(); })) {
|
||||||
await addReaction('-1');
|
await addReaction('-1');
|
||||||
await postComment('❌ **PocketBase Bot**: Install method `' + newType + '` already exists for `' + slug + '`.\n\nUse `/pocketbase ' + slug + ' method list` to see all methods.');
|
await postComment('❌ **PocketBase Bot**: Install method `' + newType + '` already exists for `' + slug + '`.\n\nUse `/pocketbase ' + slug + ' method list` to see all methods.');
|
||||||
@@ -557,7 +702,6 @@ jobs:
|
|||||||
}
|
}
|
||||||
const newMethod = { type: newType, resources: { cpu: 1, ram: 512, hdd: 4, os: 'debian', version: '13' } };
|
const newMethod = { type: newType, resources: { cpu: 1, ram: 512, hdd: 4, os: 'debian', version: '13' } };
|
||||||
if (addMatch[2]) {
|
if (addMatch[2]) {
|
||||||
const parsed = parseKVPairs(addMatch[2]);
|
|
||||||
const unknown = Object.keys(parsed).filter(function (k) { return !ALL_METHOD_KEYS[k]; });
|
const unknown = Object.keys(parsed).filter(function (k) { return !ALL_METHOD_KEYS[k]; });
|
||||||
if (unknown.length > 0) {
|
if (unknown.length > 0) {
|
||||||
await addReaction('-1');
|
await addReaction('-1');
|
||||||
@@ -569,10 +713,21 @@ jobs:
|
|||||||
methodsArr.push(newMethod);
|
methodsArr.push(newMethod);
|
||||||
await patchMethods(methodsArr);
|
await patchMethods(methodsArr);
|
||||||
await revalidate(slug);
|
await revalidate(slug);
|
||||||
|
const addCtChanges = {};
|
||||||
|
for (const [k, v] of Object.entries(parsed)) {
|
||||||
|
if (RESOURCE_TO_CT_VAR[k]) addCtChanges[RESOURCE_TO_CT_VAR[k]] = v;
|
||||||
|
}
|
||||||
|
let addCtSync = null;
|
||||||
|
try {
|
||||||
|
addCtSync = await upsertCtDefaultsPr(slug, addCtChanges);
|
||||||
|
} catch (e) {
|
||||||
|
addCtSync = { status: 'skipped', reason: 'CT sync failed: ' + e.message };
|
||||||
|
}
|
||||||
await addReaction('+1');
|
await addReaction('+1');
|
||||||
await postComment(
|
await postComment(
|
||||||
'✅ **PocketBase Bot**: Added install method **`' + newType + '`** to **`' + slug + '`**\n\n' +
|
'✅ **PocketBase Bot**: Added install method **`' + newType + '`** to **`' + slug + '`**\n\n' +
|
||||||
formatMethodsList([newMethod]) + '\n\n' +
|
formatMethodsList([newMethod]) + '\n\n' +
|
||||||
|
formatCtSyncResult(addCtSync) + '\n\n' +
|
||||||
'*Executed by @' + actor + '*'
|
'*Executed by @' + actor + '*'
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -640,6 +795,16 @@ jobs:
|
|||||||
applyMethodChanges(methodsArr[idx], parsed);
|
applyMethodChanges(methodsArr[idx], parsed);
|
||||||
await patchMethods(methodsArr);
|
await patchMethods(methodsArr);
|
||||||
await revalidate(slug);
|
await revalidate(slug);
|
||||||
|
const editCtChanges = {};
|
||||||
|
for (const [k, v] of Object.entries(parsed)) {
|
||||||
|
if (RESOURCE_TO_CT_VAR[k]) editCtChanges[RESOURCE_TO_CT_VAR[k]] = v;
|
||||||
|
}
|
||||||
|
let editCtSync = null;
|
||||||
|
try {
|
||||||
|
editCtSync = await upsertCtDefaultsPr(slug, editCtChanges);
|
||||||
|
} catch (e) {
|
||||||
|
editCtSync = { status: 'skipped', reason: 'CT sync failed: ' + e.message };
|
||||||
|
}
|
||||||
|
|
||||||
const changesLines = Object.entries(parsed)
|
const changesLines = Object.entries(parsed)
|
||||||
.map(function ([k, v]) {
|
.map(function ([k, v]) {
|
||||||
@@ -650,6 +815,7 @@ jobs:
|
|||||||
await postComment(
|
await postComment(
|
||||||
'✅ **PocketBase Bot**: Updated install method **`' + methodsArr[idx].type + '`** for **`' + slug + '`**\n\n' +
|
'✅ **PocketBase Bot**: Updated install method **`' + methodsArr[idx].type + '`** for **`' + slug + '`**\n\n' +
|
||||||
'**Changes applied:**\n' + changesLines + '\n\n' +
|
'**Changes applied:**\n' + changesLines + '\n\n' +
|
||||||
|
formatCtSyncResult(editCtSync) + '\n\n' +
|
||||||
'*Executed by @' + actor + '*'
|
'*Executed by @' + actor + '*'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -712,9 +878,11 @@ jobs:
|
|||||||
project_url: 'string',
|
project_url: 'string',
|
||||||
github: 'string',
|
github: 'string',
|
||||||
config_path: 'string',
|
config_path: 'string',
|
||||||
|
tags: 'string',
|
||||||
port: 'number',
|
port: 'number',
|
||||||
default_user: 'nullable_string',
|
default_user: 'nullable_string',
|
||||||
default_passwd: 'nullable_string',
|
default_passwd: 'nullable_string',
|
||||||
|
unprivileged: 'number',
|
||||||
updateable: 'boolean',
|
updateable: 'boolean',
|
||||||
privileged: 'boolean',
|
privileged: 'boolean',
|
||||||
has_arm: 'boolean',
|
has_arm: 'boolean',
|
||||||
@@ -781,6 +949,17 @@ jobs:
|
|||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
await revalidate(slug);
|
await revalidate(slug);
|
||||||
|
const FIELD_TO_CT_VAR = { tags: 'var_tags', unprivileged: 'var_unprivileged' };
|
||||||
|
const fieldCtChanges = {};
|
||||||
|
for (const [k, v] of Object.entries(payload)) {
|
||||||
|
if (FIELD_TO_CT_VAR[k]) fieldCtChanges[FIELD_TO_CT_VAR[k]] = v;
|
||||||
|
}
|
||||||
|
let fieldCtSync = null;
|
||||||
|
try {
|
||||||
|
fieldCtSync = await upsertCtDefaultsPr(slug, fieldCtChanges);
|
||||||
|
} catch (e) {
|
||||||
|
fieldCtSync = { status: 'skipped', reason: 'CT sync failed: ' + e.message };
|
||||||
|
}
|
||||||
await addReaction('+1');
|
await addReaction('+1');
|
||||||
const changesLines = Object.entries(payload)
|
const changesLines = Object.entries(payload)
|
||||||
.map(function ([k, v]) { return '- `' + k + '` → `' + JSON.stringify(v) + '`'; })
|
.map(function ([k, v]) { return '- `' + k + '` → `' + JSON.stringify(v) + '`'; })
|
||||||
@@ -788,6 +967,7 @@ jobs:
|
|||||||
await postComment(
|
await postComment(
|
||||||
'✅ **PocketBase Bot**: Updated **`' + slug + '`** successfully!\n\n' +
|
'✅ **PocketBase Bot**: Updated **`' + slug + '`** successfully!\n\n' +
|
||||||
'**Changes applied:**\n' + changesLines + '\n\n' +
|
'**Changes applied:**\n' + changesLines + '\n\n' +
|
||||||
|
formatCtSyncResult(fieldCtSync) + '\n\n' +
|
||||||
'*Executed by @' + actor + '*'
|
'*Executed by @' + actor + '*'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -448,8 +448,69 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
|
|||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
## 2026-04-28
|
||||||
|
|
||||||
|
### 🆕 New Scripts
|
||||||
|
|
||||||
|
- StoryBook ([#14081](https://github.com/community-scripts/ProxmoxVE/pull/14081))
|
||||||
|
- CoreDNS ([#14082](https://github.com/community-scripts/ProxmoxVE/pull/14082))
|
||||||
|
|
||||||
|
### 🚀 Updated Scripts
|
||||||
|
|
||||||
|
- Fix Dawarich Install/Update [@Jerry1098](https://github.com/Jerry1098) ([#14078](https://github.com/community-scripts/ProxmoxVE/pull/14078))
|
||||||
|
|
||||||
|
## 2026-04-27
|
||||||
|
|
||||||
|
### 🚀 Updated Scripts
|
||||||
|
|
||||||
|
- Add pamUsername column to userOrgs table [@JVKeller](https://github.com/JVKeller) ([#14075](https://github.com/community-scripts/ProxmoxVE/pull/14075))
|
||||||
|
|
||||||
|
- #### 🐞 Bug Fixes
|
||||||
|
|
||||||
|
- Dawarich: run db:migrate before assets:precompile [@MickLesk](https://github.com/MickLesk) ([#14051](https://github.com/community-scripts/ProxmoxVE/pull/14051))
|
||||||
|
- TechnitiumDNS: always install .NET 10 if not already present [@MickLesk](https://github.com/MickLesk) ([#14049](https://github.com/community-scripts/ProxmoxVE/pull/14049))
|
||||||
|
|
||||||
|
- #### 💥 Breaking Changes
|
||||||
|
|
||||||
|
- PatchMon: v2.0.0 migration [@vhsdream](https://github.com/vhsdream) ([#14015](https://github.com/community-scripts/ProxmoxVE/pull/14015))
|
||||||
|
|
||||||
|
### 💾 Core
|
||||||
|
|
||||||
|
- #### 🔧 Refactor
|
||||||
|
|
||||||
|
- Update build.func - fixed spelling mistake [@m1ckywill](https://github.com/m1ckywill) ([#14047](https://github.com/community-scripts/ProxmoxVE/pull/14047))
|
||||||
|
|
||||||
|
### 🧰 Tools
|
||||||
|
|
||||||
|
- #### 🐞 Bug Fixes
|
||||||
|
|
||||||
|
- update-lxcs/apps: avoid pct exec on containers mid-shutdown [@MickLesk](https://github.com/MickLesk) ([#14050](https://github.com/community-scripts/ProxmoxVE/pull/14050))
|
||||||
|
|
||||||
|
- #### ✨ New Features
|
||||||
|
|
||||||
|
- Add patchmon-agent report execution in update script [@heinemannj](https://github.com/heinemannj) ([#14054](https://github.com/community-scripts/ProxmoxVE/pull/14054))
|
||||||
|
|
||||||
## 2026-04-26
|
## 2026-04-26
|
||||||
|
|
||||||
|
### 🆕 New Scripts
|
||||||
|
|
||||||
|
- TREK ([#14017](https://github.com/community-scripts/ProxmoxVE/pull/14017))
|
||||||
|
|
||||||
|
### 🚀 Updated Scripts
|
||||||
|
|
||||||
|
- fix(2fauth): handle stale backup directory on update [@omertahaoztop](https://github.com/omertahaoztop) ([#14018](https://github.com/community-scripts/ProxmoxVE/pull/14018))
|
||||||
|
|
||||||
|
- #### 🐞 Bug Fixes
|
||||||
|
|
||||||
|
- Increase Frigate default CPU cores from 4 to 8 [@MickLesk](https://github.com/MickLesk) ([#14039](https://github.com/community-scripts/ProxmoxVE/pull/14039))
|
||||||
|
- Technitium DNS: Ensure directories exist before running service [@tremor021](https://github.com/tremor021) ([#14030](https://github.com/community-scripts/ProxmoxVE/pull/14030))
|
||||||
|
|
||||||
|
### 💾 Core
|
||||||
|
|
||||||
|
- #### 🐞 Bug Fixes
|
||||||
|
|
||||||
|
- core: Correct deb822 repository flat path detection [@MickLesk](https://github.com/MickLesk) ([#14037](https://github.com/community-scripts/ProxmoxVE/pull/14037))
|
||||||
|
|
||||||
## 2026-04-25
|
## 2026-04-25
|
||||||
|
|
||||||
### 🚀 Updated Scripts
|
### 🚀 Updated Scripts
|
||||||
|
|||||||
+10
-7
@@ -24,7 +24,7 @@ function update_script() {
|
|||||||
check_container_storage
|
check_container_storage
|
||||||
check_container_resources
|
check_container_resources
|
||||||
|
|
||||||
if [[ ! -d "/opt/2fauth" ]]; then
|
if [[ ! -d /opt/2fauth ]]; then
|
||||||
msg_error "No ${APP} Installation Found!"
|
msg_error "No ${APP} Installation Found!"
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
@@ -34,7 +34,8 @@ function update_script() {
|
|||||||
$STD apt -y upgrade
|
$STD apt -y upgrade
|
||||||
|
|
||||||
msg_info "Creating Backup"
|
msg_info "Creating Backup"
|
||||||
mv "/opt/2fauth" "/opt/2fauth-backup"
|
rm -rf /opt/2fauth-backup
|
||||||
|
mv /opt/2fauth /opt/2fauth-backup
|
||||||
if ! dpkg -l | grep -q 'php8.4'; then
|
if ! dpkg -l | grep -q 'php8.4'; then
|
||||||
cp /etc/nginx/conf.d/2fauth.conf /etc/nginx/conf.d/2fauth.conf.bak
|
cp /etc/nginx/conf.d/2fauth.conf /etc/nginx/conf.d/2fauth.conf.bak
|
||||||
fi
|
fi
|
||||||
@@ -46,15 +47,17 @@ function update_script() {
|
|||||||
fi
|
fi
|
||||||
fetch_and_deploy_gh_release "2fauth" "Bubka/2FAuth" "tarball"
|
fetch_and_deploy_gh_release "2fauth" "Bubka/2FAuth" "tarball"
|
||||||
setup_composer
|
setup_composer
|
||||||
mv "/opt/2fauth-backup/.env" "/opt/2fauth/.env"
|
cp /opt/2fauth-backup/.env /opt/2fauth/.env
|
||||||
mv "/opt/2fauth-backup/storage" "/opt/2fauth/storage"
|
cp -r /opt/2fauth-backup/storage /opt/2fauth/storage
|
||||||
cd "/opt/2fauth" || return
|
cd /opt/2fauth || return
|
||||||
chown -R www-data: "/opt/2fauth"
|
|
||||||
chmod -R 755 "/opt/2fauth"
|
|
||||||
export COMPOSER_ALLOW_SUPERUSER=1
|
export COMPOSER_ALLOW_SUPERUSER=1
|
||||||
$STD composer install --no-dev --prefer-dist
|
$STD composer install --no-dev --prefer-dist
|
||||||
php artisan 2fauth:install
|
php artisan 2fauth:install
|
||||||
|
chown -R www-data: /opt/2fauth
|
||||||
|
chmod -R 755 /opt/2fauth
|
||||||
|
$STD systemctl restart php8.4-fpm
|
||||||
$STD systemctl restart nginx
|
$STD systemctl restart nginx
|
||||||
|
rm -rf /opt/2fauth-backup
|
||||||
msg_ok "Updated successfully!"
|
msg_ok "Updated successfully!"
|
||||||
fi
|
fi
|
||||||
exit
|
exit
|
||||||
|
|||||||
@@ -0,0 +1,56 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
||||||
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
|
# Author: MickLesk (CanbiZ)
|
||||||
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
|
# Source: https://github.com/coredns/coredns
|
||||||
|
|
||||||
|
APP="CoreDNS"
|
||||||
|
var_tags="${var_tags:-dns;network}"
|
||||||
|
var_cpu="${var_cpu:-1}"
|
||||||
|
var_ram="${var_ram:-256}"
|
||||||
|
var_disk="${var_disk:-1}"
|
||||||
|
var_os="${var_os:-debian}"
|
||||||
|
var_version="${var_version:-13}"
|
||||||
|
var_unprivileged="${var_unprivileged:-1}"
|
||||||
|
|
||||||
|
header_info "$APP"
|
||||||
|
variables
|
||||||
|
color
|
||||||
|
catch_errors
|
||||||
|
|
||||||
|
function update_script() {
|
||||||
|
header_info
|
||||||
|
check_container_storage
|
||||||
|
check_container_resources
|
||||||
|
|
||||||
|
if [[ ! -f /usr/local/bin/coredns ]]; then
|
||||||
|
msg_error "No ${APP} Installation Found!"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
if check_for_gh_release "coredns" "coredns/coredns"; then
|
||||||
|
msg_info "Stopping Service"
|
||||||
|
systemctl stop coredns
|
||||||
|
msg_ok "Stopped Service"
|
||||||
|
|
||||||
|
fetch_and_deploy_gh_release "coredns" "coredns/coredns" "prebuild" "latest" "/usr/local/bin" \
|
||||||
|
"coredns_*_linux_$(dpkg --print-architecture).tgz"
|
||||||
|
chmod +x /usr/local/bin/coredns
|
||||||
|
|
||||||
|
msg_info "Starting Service"
|
||||||
|
systemctl start coredns
|
||||||
|
msg_ok "Started Service"
|
||||||
|
msg_ok "Updated successfully!"
|
||||||
|
fi
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
|
||||||
|
start
|
||||||
|
build_container
|
||||||
|
description
|
||||||
|
|
||||||
|
msg_ok "Completed Successfully!\n"
|
||||||
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
||||||
|
echo -e "${INFO}${YW} CoreDNS is listening on port 53 (DNS)${CL}"
|
||||||
|
echo -e "${TAB}${GATEWAY}${BGN}dns://${IP}${CL}"
|
||||||
+13
-1
@@ -53,6 +53,18 @@ function update_script() {
|
|||||||
export PATH="/root/.rbenv/shims:/root/.rbenv/bin:$PATH"
|
export PATH="/root/.rbenv/shims:/root/.rbenv/bin:$PATH"
|
||||||
eval "$(/root/.rbenv/bin/rbenv init - bash)"
|
eval "$(/root/.rbenv/bin/rbenv init - bash)"
|
||||||
|
|
||||||
|
if ! grep -q "OTP_ENCRYPTION_PRIMARY_KEY" /opt/dawarich/.env; then
|
||||||
|
echo "OTP_ENCRYPTION_PRIMARY_KEY=$(openssl rand -hex 64)" >>/opt/dawarich/.env
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! grep -q "OTP_ENCRYPTION_DETERMINISTIC_KEY" /opt/dawarich/.env; then
|
||||||
|
echo "OTP_ENCRYPTION_DETERMINISTIC_KEY=$(openssl rand -hex 64)" >>/opt/dawarich/.env
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! grep -q "OTP_ENCRYPTION_KEY_DERIVATION_SALT" /opt/dawarich/.env; then
|
||||||
|
echo "OTP_ENCRYPTION_KEY_DERIVATION_SALT=$(openssl rand -hex 64)" >>/opt/dawarich/.env
|
||||||
|
fi
|
||||||
|
|
||||||
set -a && source /opt/dawarich/.env && set +a
|
set -a && source /opt/dawarich/.env && set +a
|
||||||
|
|
||||||
$STD bundle config set --local deployment 'true'
|
$STD bundle config set --local deployment 'true'
|
||||||
@@ -67,8 +79,8 @@ function update_script() {
|
|||||||
$STD npm install
|
$STD npm install
|
||||||
fi
|
fi
|
||||||
|
|
||||||
$STD bundle exec rake assets:precompile
|
|
||||||
$STD bundle exec rails db:migrate
|
$STD bundle exec rails db:migrate
|
||||||
|
$STD bundle exec rake assets:precompile
|
||||||
$STD bundle exec rake data:migrate
|
$STD bundle exec rake data:migrate
|
||||||
msg_ok "Ran Migrations"
|
msg_ok "Ran Migrations"
|
||||||
|
|
||||||
|
|||||||
+5
-5
@@ -7,11 +7,11 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV
|
|||||||
|
|
||||||
APP="Debian"
|
APP="Debian"
|
||||||
var_tags="${var_tags:-os}"
|
var_tags="${var_tags:-os}"
|
||||||
var_cpu="${var_cpu:-1}"
|
var_cpu="${var_cpu:-2}"
|
||||||
var_ram="${var_ram:-512}"
|
var_ram="${var_ram:-2048}"
|
||||||
var_disk="${var_disk:-2}"
|
var_disk="${var_disk:-8}"
|
||||||
var_os="${var_os:-debian}"
|
var_os="${var_os:-ubuntu}"
|
||||||
var_version="${var_version:-13}"
|
var_version="${var_version:-22}"
|
||||||
var_unprivileged="${var_unprivileged:-1}"
|
var_unprivileged="${var_unprivileged:-1}"
|
||||||
|
|
||||||
header_info "$APP"
|
header_info "$APP"
|
||||||
|
|||||||
+1
-1
@@ -7,7 +7,7 @@ source <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxV
|
|||||||
|
|
||||||
APP="Frigate"
|
APP="Frigate"
|
||||||
var_tags="${var_tags:-nvr}"
|
var_tags="${var_tags:-nvr}"
|
||||||
var_cpu="${var_cpu:-4}"
|
var_cpu="${var_cpu:-8}"
|
||||||
var_ram="${var_ram:-4096}"
|
var_ram="${var_ram:-4096}"
|
||||||
var_disk="${var_disk:-20}"
|
var_disk="${var_disk:-20}"
|
||||||
var_os="${var_os:-debian}"
|
var_os="${var_os:-debian}"
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
______ ____ _ _______
|
||||||
|
/ ____/___ ________ / __ \/ | / / ___/
|
||||||
|
/ / / __ \/ ___/ _ \/ / / / |/ /\__ \
|
||||||
|
/ /___/ /_/ / / / __/ /_/ / /| /___/ /
|
||||||
|
\____/\____/_/ \___/_____/_/ |_//____/
|
||||||
|
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
_____ __ __ __
|
||||||
|
/ ___// /_____ _______ __/ /_ ____ ____ / /__
|
||||||
|
\__ \/ __/ __ \/ ___/ / / / __ \/ __ \/ __ \/ //_/
|
||||||
|
___/ / /_/ /_/ / / / /_/ / /_/ / /_/ / /_/ / ,<
|
||||||
|
/____/\__/\____/_/ \__, /_.___/\____/\____/_/|_|
|
||||||
|
/____/
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
__________ ________ __
|
||||||
|
/_ __/ __ \/ ____/ //_/
|
||||||
|
/ / / /_/ / __/ / ,<
|
||||||
|
/ / / _, _/ /___/ /| |
|
||||||
|
/_/ /_/ |_/_____/_/ |_|
|
||||||
|
|
||||||
@@ -76,6 +76,7 @@ function update_script() {
|
|||||||
if [[ -f "$DB" ]]; then
|
if [[ -f "$DB" ]]; then
|
||||||
sqlite3 "$DB" "ALTER TABLE 'orgs' ADD COLUMN 'settingsLogRetentionDaysConnection' integer DEFAULT 0 NOT NULL;" 2>/dev/null || true
|
sqlite3 "$DB" "ALTER TABLE 'orgs' ADD COLUMN 'settingsLogRetentionDaysConnection' integer DEFAULT 0 NOT NULL;" 2>/dev/null || true
|
||||||
sqlite3 "$DB" "ALTER TABLE 'clientSitesAssociationsCache' ADD COLUMN 'isJitMode' integer DEFAULT 0 NOT NULL;" 2>/dev/null || true
|
sqlite3 "$DB" "ALTER TABLE 'clientSitesAssociationsCache' ADD COLUMN 'isJitMode' integer DEFAULT 0 NOT NULL;" 2>/dev/null || true
|
||||||
|
sqlite3 "$DB" "ALTER TABLE 'userOrgs' ADD COLUMN 'pamUsername' text;" 2>/dev/null || true
|
||||||
|
|
||||||
# Create new role-mapping tables and migrate data before drizzle-kit
|
# Create new role-mapping tables and migrate data before drizzle-kit
|
||||||
# drops the roleId columns from userOrgs and userInvites.
|
# drops the roleId columns from userOrgs and userInvites.
|
||||||
|
|||||||
+61
-49
@@ -29,63 +29,75 @@ function update_script() {
|
|||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! grep -q "PORT=3001" /opt/patchmon/backend/.env; then
|
RELEASE="v2.0.1"
|
||||||
msg_warn "⚠️ The next PatchMon update will include breaking changes (port changes)."
|
|
||||||
msg_warn "See details here: https://github.com/community-scripts/ProxmoxVE/pull/11888"
|
|
||||||
msg_warn "Press Enter to continue with the update, or Ctrl+C to abort..."
|
|
||||||
read -r
|
|
||||||
fi
|
|
||||||
|
|
||||||
RELEASE="v1.4.2"
|
|
||||||
NODE_VERSION="24" setup_nodejs
|
|
||||||
if check_for_gh_release "PatchMon" "PatchMon/PatchMon" "${RELEASE}"; then
|
if check_for_gh_release "PatchMon" "PatchMon/PatchMon" "${RELEASE}"; then
|
||||||
msg_info "Stopping Service"
|
msg_info "Stopping Service"
|
||||||
systemctl stop patchmon-server
|
systemctl stop patchmon-server
|
||||||
msg_ok "Stopped Service"
|
msg_ok "Stopped Service"
|
||||||
|
|
||||||
msg_info "Creating Backup"
|
if [[ -d /opt/patchmon/backend ]]; then
|
||||||
cp /opt/patchmon/backend/.env /opt/backend.env
|
msg_info "Legacy install detected - creating full backup, please wait..."
|
||||||
cp /opt/patchmon/frontend/.env /opt/frontend.env
|
$STD tar czf ~/patchmon_legacy.tar.gz /opt/patchmon
|
||||||
msg_ok "Backup Created"
|
cp /opt/patchmon/backend/.env /opt/legacy.env
|
||||||
|
msg_ok "Full backup saved in /root"
|
||||||
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "PatchMon" "PatchMon/PatchMon" "tarball" "${RELEASE}" "/opt/patchmon"
|
msg_info "Starting migration to PatchMon v2.x.x"
|
||||||
|
systemctl disable -q --now nginx
|
||||||
msg_info "Updating PatchMon"
|
$STD npm cache clean --force
|
||||||
VERSION=$(get_latest_github_release "PatchMon/PatchMon")
|
$STD apt autoremove --purge -y {nginx,nodejs}
|
||||||
SERVER_PORT="$(sed -n '/SERVER_PORT/s/[^=]*=//p' /opt/backend.env)"
|
if [[ -f /etc/apt/sources.list.d/nodesource.sources ]]; then
|
||||||
sed -i 's/PORT=3399/PORT=3001/' /opt/backend.env
|
cp /etc/apt/sources.list.d/nodesource.sources /etc/apt/sources.list.d/nodesource.sources.bak
|
||||||
sed -i -e "s/VERSION=.*/VERSION=$VERSION/" \
|
rm -f /etc/apt/sources.list.d/nodesource.sources
|
||||||
-e '/^VITE_API_URL/d' /opt/frontend.env
|
elif [[ -f /etc/apt/sources.list.d/nodesource.list ]]; then
|
||||||
export NODE_ENV=production
|
cp /etc/apt/sources.list.d/nodesource.list /etc/apt/sources.list.d/nodesource.list.bak
|
||||||
cd /opt/patchmon
|
rm -f /etc/apt/sources.list.d/nodesource.list
|
||||||
$STD npm install --no-audit --no-fund --no-save --ignore-scripts
|
fi
|
||||||
cd /opt/patchmon/frontend
|
rm -rf /opt/patchmon
|
||||||
mv /opt/frontend.env /opt/patchmon/frontend/.env
|
mkdir -p /opt/patchmon/agents
|
||||||
$STD npm install --no-audit --no-fund --no-save --ignore-scripts --include=dev
|
cp /opt/legacy.env /opt/patchmon/.env
|
||||||
$STD npm run build
|
sed -i -e 's/^PORT=.*/PORT=3000/' \
|
||||||
cd /opt/patchmon/backend
|
-e 's/^NODE_/APP_/' \
|
||||||
mv /opt/backend.env /opt/patchmon/backend/.env
|
-e '/^SERVER_*/d' \
|
||||||
$STD npm run db:generate
|
-e '/^# API*/,+2d' /opt/patchmon/.env
|
||||||
$STD npx prisma migrate deploy
|
{
|
||||||
cp /opt/patchmon/docker/nginx.conf.template /etc/nginx/sites-available/patchmon.conf
|
echo ""
|
||||||
sed -i -e 's|proxy_pass .*|proxy_pass http://127.0.0.1:3001;|' \
|
echo "SESSION_SECRET=$(openssl rand -hex 64)"
|
||||||
-e '\|try_files |i\ root /opt/patchmon/frontend/dist;' \
|
echo "AI_ENCRYPTION_KEY=$(openssl rand -hex 64)"
|
||||||
-e 's|alias.*|alias /opt/patchmon/frontend/dist/assets;|' \
|
echo "AGENT_BINARIES_DIR=/opt/patchmon/agents"
|
||||||
-e '\|expires 1y|i\ root /opt/patchmon/frontend/dist;' /etc/nginx/sites-available/patchmon.conf
|
} >>/opt/patchmon/.env
|
||||||
if [[ -n "$SERVER_PORT" ]] && [[ "$SERVER_PORT" != "443" ]]; then
|
sed -i -e '\|Directory|s|/backend||' \
|
||||||
sed -i "s/listen [[:digit:]].*/listen ${SERVER_PORT};/" /etc/nginx/sites-available/patchmon.conf
|
-e 's|^ExecStart=.*|ExecStart=/opt/patchmon/patchmon-server|' \
|
||||||
|
-e 's|^Environment=NODE_.*|EnvironmentFile=/opt/patchmon/.env|' \
|
||||||
|
/etc/systemd/system/patchmon-server.service
|
||||||
|
systemctl daemon-reload
|
||||||
|
rm /opt/legacy.env
|
||||||
|
msg_ok "Migration complete!"
|
||||||
fi
|
fi
|
||||||
ln -sf /etc/nginx/sites-available/patchmon.conf /etc/nginx/sites-enabled/
|
|
||||||
rm -f /etc/nginx/sites-enabled/default
|
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "PatchMon" "PatchMon/PatchMon" "singlefile" "${RELEASE}" "/opt/patchmon" "patchmon-server-linux-amd64"
|
||||||
$STD nginx -t
|
mv /opt/patchmon/PatchMon /opt/patchmon/patchmon-server
|
||||||
systemctl restart nginx
|
|
||||||
msg_ok "Updated PatchMon"
|
msg_info "Fetching PatchMon agent binaries"
|
||||||
|
[[ ! -d /opt/patchmon/agents ]] && mkdir -p /opt/patchmon/agents
|
||||||
|
FILE_URL="https://github.com/PatchMon/PatchMon/releases/download/${RELEASE}/patchmon-agent-"
|
||||||
|
AGENT_NAME=(
|
||||||
|
"linux-amd64"
|
||||||
|
"linux-arm64"
|
||||||
|
"linux-arm"
|
||||||
|
"linux-386"
|
||||||
|
"freebsd-amd64"
|
||||||
|
"freebsd-arm64"
|
||||||
|
"freebsd-arm"
|
||||||
|
"freebsd-386"
|
||||||
|
"windows-amd64.exe"
|
||||||
|
"windows-arm64.exe"
|
||||||
|
)
|
||||||
|
for arch in "${AGENT_NAME[@]}"; do
|
||||||
|
curl_with_retry "${FILE_URL}${arch}" "/opt/patchmon/agents/patchmon-agent-${arch}"
|
||||||
|
[[ "${arch}" != *.exe ]] && chmod 755 "/opt/patchmon/agents/patchmon-agent-${arch}"
|
||||||
|
done
|
||||||
|
msg_ok "Fetched PatchMon agent binaries"
|
||||||
|
|
||||||
msg_info "Starting Service"
|
msg_info "Starting Service"
|
||||||
if grep -q '/usr/bin/node' /etc/systemd/system/patchmon-server.service; then
|
|
||||||
sed -i 's|ExecStart=.*|ExecStart=/usr/bin/npm run start|' /etc/systemd/system/patchmon-server.service
|
|
||||||
systemctl daemon-reload
|
|
||||||
fi
|
|
||||||
systemctl start patchmon-server
|
systemctl start patchmon-server
|
||||||
msg_ok "Started Service"
|
msg_ok "Started Service"
|
||||||
msg_ok "Updated successfully!"
|
msg_ok "Updated successfully!"
|
||||||
|
|||||||
@@ -0,0 +1,54 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
||||||
|
|
||||||
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
|
# Author: MickLesk (CanbiZ)
|
||||||
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
|
# Source: https://github.com/storybookjs/storybook
|
||||||
|
|
||||||
|
APP="Storybook"
|
||||||
|
var_tags="${var_tags:-dev-tools;frontend;ui}"
|
||||||
|
var_cpu="${var_cpu:-2}"
|
||||||
|
var_ram="${var_ram:-2048}"
|
||||||
|
var_disk="${var_disk:-8}"
|
||||||
|
var_os="${var_os:-debian}"
|
||||||
|
var_version="${var_version:-13}"
|
||||||
|
var_unprivileged="${var_unprivileged:-1}"
|
||||||
|
|
||||||
|
header_info "$APP"
|
||||||
|
variables
|
||||||
|
color
|
||||||
|
catch_errors
|
||||||
|
|
||||||
|
function update_script() {
|
||||||
|
header_info
|
||||||
|
check_container_storage
|
||||||
|
check_container_resources
|
||||||
|
|
||||||
|
if [[ ! -f /opt/storybook/.projectpath ]]; then
|
||||||
|
msg_error "No ${APP} Installation Found!"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
PROJECT_PATH=$(cat /opt/storybook/.projectpath)
|
||||||
|
|
||||||
|
if [[ ! -d "$PROJECT_PATH" ]]; then
|
||||||
|
msg_error "Project directory not found: $PROJECT_PATH"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
msg_info "Updating Storybook"
|
||||||
|
cd "$PROJECT_PATH"
|
||||||
|
$STD npx storybook@latest upgrade --yes
|
||||||
|
msg_ok "Updated Storybook"
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
|
||||||
|
start
|
||||||
|
build_container
|
||||||
|
description
|
||||||
|
|
||||||
|
msg_ok "Completed Successfully!\n"
|
||||||
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
||||||
|
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
|
||||||
|
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:6006${CL}"
|
||||||
+2
-2
@@ -32,8 +32,8 @@ function update_script() {
|
|||||||
systemctl daemon-reload
|
systemctl daemon-reload
|
||||||
systemctl enable -q --now technitium
|
systemctl enable -q --now technitium
|
||||||
fi
|
fi
|
||||||
if is_package_installed "aspnetcore-runtime-8.0" || is_package_installed "aspnetcore-runtime-9.0"; then
|
if ! is_package_installed "aspnetcore-runtime-10.0"; then
|
||||||
$STD apt remove -y aspnetcore-runtime-*
|
$STD apt remove -y aspnetcore-runtime-8.0 aspnetcore-runtime-9.0 2>/dev/null || true
|
||||||
[ -f /etc/apt/sources.list.d/microsoft-prod.list ] && rm -f /etc/apt/sources.list.d/microsoft-prod.list
|
[ -f /etc/apt/sources.list.d/microsoft-prod.list ] && rm -f /etc/apt/sources.list.d/microsoft-prod.list
|
||||||
[ -f /usr/share/keyrings/microsoft-prod.gpg ] && rm -f /usr/share/keyrings/microsoft-prod.gpg
|
[ -f /usr/share/keyrings/microsoft-prod.gpg ] && rm -f /usr/share/keyrings/microsoft-prod.gpg
|
||||||
setup_deb822_repo \
|
setup_deb822_repo \
|
||||||
|
|||||||
+84
@@ -0,0 +1,84 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
||||||
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
|
# Author: MickLesk (CanbiZ)
|
||||||
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
|
# Source: https://github.com/mauriceboe/TREK
|
||||||
|
|
||||||
|
APP="TREK"
|
||||||
|
var_tags="${var_tags:-travel;planning;collaboration}"
|
||||||
|
var_cpu="${var_cpu:-2}"
|
||||||
|
var_ram="${var_ram:-2048}"
|
||||||
|
var_disk="${var_disk:-8}"
|
||||||
|
var_os="${var_os:-debian}"
|
||||||
|
var_version="${var_version:-13}"
|
||||||
|
var_unprivileged="${var_unprivileged:-1}"
|
||||||
|
|
||||||
|
header_info "$APP"
|
||||||
|
variables
|
||||||
|
color
|
||||||
|
catch_errors
|
||||||
|
|
||||||
|
function update_script() {
|
||||||
|
header_info
|
||||||
|
check_container_storage
|
||||||
|
check_container_resources
|
||||||
|
|
||||||
|
if [[ ! -d /opt/trek ]]; then
|
||||||
|
msg_error "No ${APP} Installation Found!"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
if check_for_gh_release "trek" "mauriceboe/TREK"; then
|
||||||
|
msg_info "Stopping Service"
|
||||||
|
systemctl stop trek
|
||||||
|
msg_ok "Stopped Service"
|
||||||
|
|
||||||
|
msg_info "Backing up Data"
|
||||||
|
cp /opt/trek/server/.env /opt/trek.env.bak
|
||||||
|
mv /opt/trek/data /opt/trek-data.bak
|
||||||
|
mv /opt/trek/uploads /opt/trek-uploads.bak
|
||||||
|
msg_ok "Backed up Data"
|
||||||
|
|
||||||
|
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "trek" "mauriceboe/TREK" "tarball"
|
||||||
|
|
||||||
|
msg_info "Building Client"
|
||||||
|
cd /opt/trek/client
|
||||||
|
$STD npm ci
|
||||||
|
$STD npm run build
|
||||||
|
mkdir -p /opt/trek/server/public
|
||||||
|
cp -r /opt/trek/client/dist/* /opt/trek/server/public/
|
||||||
|
cp -r /opt/trek/client/public/fonts /opt/trek/server/public/fonts 2>/dev/null || true
|
||||||
|
msg_ok "Built Client"
|
||||||
|
|
||||||
|
msg_info "Installing Server Dependencies"
|
||||||
|
cd /opt/trek/server
|
||||||
|
$STD npm ci
|
||||||
|
msg_ok "Installed Server Dependencies"
|
||||||
|
|
||||||
|
msg_info "Restoring Data"
|
||||||
|
mv /opt/trek-data.bak /opt/trek/data
|
||||||
|
mv /opt/trek-uploads.bak /opt/trek/uploads
|
||||||
|
rm -rf /opt/trek/server/data /opt/trek/server/uploads
|
||||||
|
ln -s /opt/trek/data /opt/trek/server/data
|
||||||
|
ln -s /opt/trek/uploads /opt/trek/server/uploads
|
||||||
|
cp /opt/trek.env.bak /opt/trek/server/.env
|
||||||
|
rm -f /opt/trek.env.bak
|
||||||
|
msg_ok "Restored Data"
|
||||||
|
|
||||||
|
msg_info "Starting Service"
|
||||||
|
systemctl start trek
|
||||||
|
msg_ok "Started Service"
|
||||||
|
msg_ok "Updated Successfully!"
|
||||||
|
fi
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
|
||||||
|
start
|
||||||
|
build_container
|
||||||
|
description
|
||||||
|
|
||||||
|
msg_ok "Completed Successfully!\n"
|
||||||
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
||||||
|
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
|
||||||
|
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}"
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
|
# Author: MickLesk (CanbiZ)
|
||||||
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
|
# Source: https://github.com/coredns/coredns
|
||||||
|
|
||||||
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||||||
|
color
|
||||||
|
verb_ip6
|
||||||
|
catch_errors
|
||||||
|
setting_up_container
|
||||||
|
network_check
|
||||||
|
update_os
|
||||||
|
|
||||||
|
fetch_and_deploy_gh_release "coredns" "coredns/coredns" "prebuild" "latest" "/usr/local/bin" \
|
||||||
|
"coredns_*_linux_$(dpkg --print-architecture).tgz"
|
||||||
|
chmod +x /usr/local/bin/coredns
|
||||||
|
|
||||||
|
msg_info "Configuring CoreDNS"
|
||||||
|
mkdir -p /etc/coredns
|
||||||
|
cat <<EOF >/etc/coredns/Corefile
|
||||||
|
. {
|
||||||
|
forward . 1.1.1.1 1.0.0.1
|
||||||
|
cache 30
|
||||||
|
log
|
||||||
|
errors
|
||||||
|
health :8080
|
||||||
|
ready :8181
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
msg_ok "Configured CoreDNS"
|
||||||
|
|
||||||
|
msg_info "Creating Service"
|
||||||
|
cat <<EOF >/etc/systemd/system/coredns.service
|
||||||
|
[Unit]
|
||||||
|
Description=CoreDNS DNS Server
|
||||||
|
After=network.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=simple
|
||||||
|
ExecStart=/usr/local/bin/coredns -conf /etc/coredns/Corefile
|
||||||
|
Restart=on-failure
|
||||||
|
RestartSec=5
|
||||||
|
LimitNOFILE=1048576
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
EOF
|
||||||
|
systemctl enable -q --now coredns
|
||||||
|
msg_ok "Created Service"
|
||||||
|
|
||||||
|
motd_ssh
|
||||||
|
customize
|
||||||
|
cleanup_lxc
|
||||||
@@ -46,10 +46,16 @@ msg_ok "Set up Directories"
|
|||||||
|
|
||||||
msg_info "Configuring Environment"
|
msg_info "Configuring Environment"
|
||||||
SECRET_KEY_BASE=$(openssl rand -hex 64)
|
SECRET_KEY_BASE=$(openssl rand -hex 64)
|
||||||
|
OTP_ENCRYPTION_PRIMARY_KEY=$(openssl rand -hex 64)
|
||||||
|
OTP_ENCRYPTION_DETERMINISTIC_KEY=$(openssl rand -hex 64)
|
||||||
|
OTP_ENCRYPTION_KEY_DERIVATION_SALT=$(openssl rand -hex 64)
|
||||||
RELEASE=$(get_latest_github_release "Freika/dawarich")
|
RELEASE=$(get_latest_github_release "Freika/dawarich")
|
||||||
cat <<EOF >/opt/dawarich/.env
|
cat <<EOF >/opt/dawarich/.env
|
||||||
RAILS_ENV=production
|
RAILS_ENV=production
|
||||||
SECRET_KEY_BASE=${SECRET_KEY_BASE}
|
SECRET_KEY_BASE=${SECRET_KEY_BASE}
|
||||||
|
OTP_ENCRYPTION_PRIMARY_KEY=${OTP_ENCRYPTION_PRIMARY_KEY}
|
||||||
|
OTP_ENCRYPTION_DETERMINISTIC_KEY=${OTP_ENCRYPTION_DETERMINISTIC_KEY}
|
||||||
|
OTP_ENCRYPTION_KEY_DERIVATION_SALT=${OTP_ENCRYPTION_KEY_DERIVATION_SALT}
|
||||||
DATABASE_HOST=localhost
|
DATABASE_HOST=localhost
|
||||||
DATABASE_USERNAME=${PG_DB_USER}
|
DATABASE_USERNAME=${PG_DB_USER}
|
||||||
DATABASE_PASSWORD=${PG_DB_PASS}
|
DATABASE_PASSWORD=${PG_DB_PASS}
|
||||||
|
|||||||
+62
-46
@@ -14,74 +14,90 @@ network_check
|
|||||||
update_os
|
update_os
|
||||||
|
|
||||||
msg_info "Installing Dependencies"
|
msg_info "Installing Dependencies"
|
||||||
$STD apt install -y \
|
$STD apt install -y redis-server
|
||||||
build-essential \
|
|
||||||
nginx \
|
|
||||||
redis-server
|
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
NODE_VERSION="24" setup_nodejs
|
|
||||||
PG_VERSION="17" setup_postgresql
|
PG_VERSION="17" setup_postgresql
|
||||||
PG_DB_NAME="patchmon_db" PG_DB_USER="patchmon_usr" setup_postgresql_db
|
PG_DB_NAME="patchmon_db" PG_DB_USER="patchmon_usr" setup_postgresql_db
|
||||||
|
|
||||||
fetch_and_deploy_gh_release "PatchMon" "PatchMon/PatchMon" "tarball" "v1.4.2" "/opt/patchmon"
|
RELEASE="v2.0.1"
|
||||||
|
fetch_and_deploy_gh_release "PatchMon" "PatchMon/PatchMon" "singlefile" "$RELEASE" "/opt/patchmon" "patchmon-server-linux-amd64"
|
||||||
|
mv /opt/patchmon/PatchMon /opt/patchmon/patchmon-server
|
||||||
|
|
||||||
msg_info "Configuring PatchMon"
|
msg_info "Configuring PatchMon"
|
||||||
VERSION=$(get_latest_github_release "PatchMon/PatchMon")
|
cat <<EOF >/opt/patchmon/.env
|
||||||
export NODE_ENV=production
|
DATABASE_URL="postgresql://$PG_DB_USER:$PG_DB_PASS@localhost:5432/$PG_DB_NAME"
|
||||||
cd /opt/patchmon
|
|
||||||
$STD npm install --no-audit --no-fund --no-save --ignore-scripts
|
|
||||||
|
|
||||||
cd /opt/patchmon/frontend
|
|
||||||
cat <<EOF >./.env
|
|
||||||
VITE_APP_NAME=PatchMon
|
|
||||||
VITE_APP_VERSION=${VERSION}
|
|
||||||
EOF
|
|
||||||
$STD npm install --no-audit --no-fund --no-save --ignore-scripts --include=dev
|
|
||||||
$STD npm run build
|
|
||||||
|
|
||||||
JWT_SECRET="$(openssl rand -hex 64)"
|
JWT_SECRET="$(openssl rand -hex 64)"
|
||||||
mv /opt/patchmon/backend/env.example /opt/patchmon/backend/.env
|
SESSION_SECRET="$(openssl rand -hex 64)"
|
||||||
sed -i -e "s|DATABASE_URL=.*|DATABASE_URL=\"postgresql://$PG_DB_USER:$PG_DB_PASS@localhost:5432/$PG_DB_NAME\"|" \
|
AI_ENCRYPTION_KEY="$(openssl rand -hex 64)"
|
||||||
-e "/JWT_SECRET/s/[=$].*/=$JWT_SECRET/" \
|
CORS_ORIGIN=http://${LOCAL_IP}:3000
|
||||||
-e "\|CORS_ORIGIN|s|localhost|$LOCAL_IP|" \
|
PORT=3000
|
||||||
-e "/PORT=3001/aSERVER_PROTOCOL=http \\
|
APP_ENV=production
|
||||||
SERVER_HOST=$LOCAL_IP \\
|
|
||||||
SERVER_PORT=3000" \
|
|
||||||
-e '/_ENV=production/aTRUST_PROXY=1' \
|
|
||||||
-e '/REDIS_USER=.*/,+1d' /opt/patchmon/backend/.env
|
|
||||||
|
|
||||||
cd /opt/patchmon/backend
|
# Redis
|
||||||
$STD npm run db:generate
|
REDIS_HOST=localhost
|
||||||
$STD npx prisma migrate deploy
|
REDIS_PORT=6379
|
||||||
|
|
||||||
|
## OIDC / SSO (when OIDC_ENABLED=true, issuer/client/secret/redirect required)
|
||||||
|
# OIDC_ENABLED=false
|
||||||
|
# OIDC_ISSUER_URL=
|
||||||
|
# OIDC_CLIENT_ID=
|
||||||
|
# OIDC_CLIENT_SECRET=
|
||||||
|
# OIDC_REDIRECT_URI=
|
||||||
|
# OIDC_SCOPES=openid email profile groups
|
||||||
|
# OIDC_AUTO_CREATE_USERS=false
|
||||||
|
# OIDC_DEFAULT_ROLE=user
|
||||||
|
# OIDC_DISABLE_LOCAL_AUTH=false
|
||||||
|
# OIDC_BUTTON_TEXT=Login with SSO
|
||||||
|
# OIDC_SESSION_TTL=600
|
||||||
|
# OIDC_POST_LOGOUT_URI=
|
||||||
|
# OIDC_SYNC_ROLES=false
|
||||||
|
# OIDC_ADMIN_GROUP=
|
||||||
|
# OIDC_SUPERADMIN_GROUP=
|
||||||
|
# OIDC_HOST_MANAGER_GROUP=
|
||||||
|
# OIDC_READONLY_GROUP=
|
||||||
|
# OIDC_USER_GROUP=
|
||||||
|
# OIDC_ENFORCE_HTTPS=true
|
||||||
|
|
||||||
|
AGENT_BINARIES_DIR=/opt/patchmon/agents
|
||||||
|
EOF
|
||||||
msg_ok "Configured PatchMon"
|
msg_ok "Configured PatchMon"
|
||||||
|
|
||||||
msg_info "Configuring Nginx"
|
msg_info "Fetching PatchMon agent binaries"
|
||||||
cp /opt/patchmon/docker/nginx.conf.template /etc/nginx/sites-available/patchmon.conf
|
mkdir -p /opt/patchmon/agents
|
||||||
sed -i -e 's|proxy_pass .*|proxy_pass http://127.0.0.1:3001;|' \
|
FILE_URL="https://github.com/PatchMon/PatchMon/releases/download/${RELEASE}/patchmon-agent-"
|
||||||
-e '\|try_files |i\ root /opt/patchmon/frontend/dist;' \
|
AGENT_NAME=(
|
||||||
-e 's|alias.*|alias /opt/patchmon/frontend/dist/assets;|' \
|
"linux-amd64"
|
||||||
-e '\|expires 1y|i\ root /opt/patchmon/frontend/dist;' /etc/nginx/sites-available/patchmon.conf
|
"linux-arm64"
|
||||||
ln -sf /etc/nginx/sites-available/patchmon.conf /etc/nginx/sites-enabled/
|
"linux-arm"
|
||||||
rm -f /etc/nginx/sites-enabled/default
|
"linux-386"
|
||||||
$STD nginx -t
|
"freebsd-amd64"
|
||||||
systemctl restart nginx
|
"freebsd-arm64"
|
||||||
msg_ok "Configured Nginx"
|
"freebsd-arm"
|
||||||
|
"freebsd-386"
|
||||||
|
"windows-amd64.exe"
|
||||||
|
"windows-arm64.exe"
|
||||||
|
)
|
||||||
|
for arch in "${AGENT_NAME[@]}"; do
|
||||||
|
curl_with_retry "${FILE_URL}${arch}" "/opt/patchmon/agents/patchmon-agent-${arch}"
|
||||||
|
[[ "${arch}" != *.exe ]] && chmod 755 "/opt/patchmon/agents/patchmon-agent-${arch}"
|
||||||
|
done
|
||||||
|
msg_ok "Fetched PatchMon agent binaries"
|
||||||
|
|
||||||
msg_info "Creating service"
|
msg_info "Creating service"
|
||||||
cat <<EOF >/etc/systemd/system/patchmon-server.service
|
cat <<EOF >/etc/systemd/system/patchmon-server.service
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=PatchMon Service
|
Description=PatchMon Server
|
||||||
After=network.target postgresql.service
|
After=network.target postgresql.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=simple
|
Type=simple
|
||||||
WorkingDirectory=/opt/patchmon/backend
|
WorkingDirectory=/opt/patchmon
|
||||||
ExecStart=/usr/bin/npm run start
|
ExecStart=/opt/patchmon/patchmon-server
|
||||||
Restart=always
|
Restart=always
|
||||||
RestartSec=10
|
RestartSec=10
|
||||||
Environment=NODE_ENV=production
|
|
||||||
Environment=PATH=/usr/bin:/usr/local/bin
|
Environment=PATH=/usr/bin:/usr/local/bin
|
||||||
|
EnvironmentFile=/opt/patchmon/.env
|
||||||
NoNewPrivileges=true
|
NoNewPrivileges=true
|
||||||
PrivateTmp=true
|
PrivateTmp=true
|
||||||
ProtectSystem=strict
|
ProtectSystem=strict
|
||||||
|
|||||||
@@ -0,0 +1,55 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
|
# Author: MickLesk (CanbiZ)
|
||||||
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
|
# Source: https://github.com/storybookjs/storybook
|
||||||
|
|
||||||
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||||||
|
color
|
||||||
|
verb_ip6
|
||||||
|
catch_errors
|
||||||
|
setting_up_container
|
||||||
|
network_check
|
||||||
|
update_os
|
||||||
|
|
||||||
|
NODE_VERSION="24" NODE_MODULE="pnpm" setup_nodejs
|
||||||
|
|
||||||
|
msg_info "Preparing Storybook"
|
||||||
|
mkdir -p /opt/storybook
|
||||||
|
cd /opt/storybook
|
||||||
|
msg_ok "Important: Interactive configuration will start now."
|
||||||
|
|
||||||
|
npx -y storybook@latest init --yes --no-dev
|
||||||
|
PROJECT_PATH=$(find /opt/storybook -maxdepth 2 -name ".storybook" -type d 2>/dev/null | head -n1 | xargs dirname)
|
||||||
|
|
||||||
|
if [[ -z "$PROJECT_PATH" ]]; then
|
||||||
|
PROJECT_PATH="/opt/storybook"
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd "$PROJECT_PATH"
|
||||||
|
echo "$PROJECT_PATH" >/opt/storybook/.projectpath
|
||||||
|
|
||||||
|
msg_info "Creating Service"
|
||||||
|
cat <<EOF >/etc/systemd/system/storybook.service
|
||||||
|
[Unit]
|
||||||
|
Description=Storybook Dev Server
|
||||||
|
After=network.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=simple
|
||||||
|
User=root
|
||||||
|
WorkingDirectory=${PROJECT_PATH}
|
||||||
|
ExecStart=/usr/bin/npx storybook dev --host 0.0.0.0 --port 6006 --no-open
|
||||||
|
Restart=on-failure
|
||||||
|
RestartSec=5
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
EOF
|
||||||
|
systemctl enable -q --now storybook
|
||||||
|
msg_ok "Created Service"
|
||||||
|
|
||||||
|
motd_ssh
|
||||||
|
customize
|
||||||
|
cleanup_lxc
|
||||||
@@ -28,6 +28,7 @@ fetch_and_deploy_from_url "https://download.technitium.com/dns/DnsServerPortable
|
|||||||
echo "${RELEASE}" >~/.technitium
|
echo "${RELEASE}" >~/.technitium
|
||||||
|
|
||||||
msg_info "Creating service"
|
msg_info "Creating service"
|
||||||
|
mkdir -p /etc/dns /var/log/technitium/dns
|
||||||
sed -i '/^User=/d;/^Group=/d' /opt/technitium/dns/systemd.service
|
sed -i '/^User=/d;/^Group=/d' /opt/technitium/dns/systemd.service
|
||||||
cp /opt/technitium/dns/systemd.service /etc/systemd/system/technitium.service
|
cp /opt/technitium/dns/systemd.service /etc/systemd/system/technitium.service
|
||||||
systemctl enable -q --now technitium
|
systemctl enable -q --now technitium
|
||||||
|
|||||||
@@ -0,0 +1,79 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
|
# Author: MickLesk (CanbiZ)
|
||||||
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
|
# Source: https://github.com/mauriceboe/TREK
|
||||||
|
|
||||||
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||||||
|
color
|
||||||
|
verb_ip6
|
||||||
|
catch_errors
|
||||||
|
setting_up_container
|
||||||
|
network_check
|
||||||
|
update_os
|
||||||
|
|
||||||
|
msg_info "Installing Dependencies"
|
||||||
|
$STD apt install -y build-essential
|
||||||
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
|
NODE_VERSION="22" setup_nodejs
|
||||||
|
fetch_and_deploy_gh_release "trek" "mauriceboe/TREK" "tarball"
|
||||||
|
|
||||||
|
msg_info "Building Client"
|
||||||
|
cd /opt/trek/client
|
||||||
|
$STD npm ci
|
||||||
|
$STD npm run build
|
||||||
|
msg_ok "Built Client"
|
||||||
|
|
||||||
|
msg_info "Setting up Server"
|
||||||
|
cd /opt/trek/server
|
||||||
|
$STD npm ci
|
||||||
|
mkdir -p /opt/trek/server/public
|
||||||
|
cp -r /opt/trek/client/dist/* /opt/trek/server/public/
|
||||||
|
cp -r /opt/trek/client/public/fonts /opt/trek/server/public/fonts 2>/dev/null || true
|
||||||
|
mkdir -p /opt/trek/{data/logs,uploads/{files,covers,avatars,photos}}
|
||||||
|
rm -rf /opt/trek/server/data /opt/trek/server/uploads
|
||||||
|
ln -s /opt/trek/data /opt/trek/server/data
|
||||||
|
ln -s /opt/trek/uploads /opt/trek/server/uploads
|
||||||
|
ENCRYPTION_KEY=$(openssl rand -hex 32)
|
||||||
|
ADMIN_EMAIL="admin@trek.local"
|
||||||
|
ADMIN_PASSWORD=$(openssl rand -base64 18 | tr -dc 'A-Za-z0-9' | head -c 16)
|
||||||
|
cat <<EOF >/opt/trek/server/.env
|
||||||
|
NODE_ENV=production
|
||||||
|
PORT=3000
|
||||||
|
ENCRYPTION_KEY=${ENCRYPTION_KEY}
|
||||||
|
ADMIN_EMAIL=${ADMIN_EMAIL}
|
||||||
|
ADMIN_PASSWORD=${ADMIN_PASSWORD}
|
||||||
|
COOKIE_SECURE=false
|
||||||
|
FORCE_HTTPS=false
|
||||||
|
LOG_LEVEL=info
|
||||||
|
TZ=UTC
|
||||||
|
EOF
|
||||||
|
chmod 600 /opt/trek/server/.env
|
||||||
|
msg_ok "Set up Server"
|
||||||
|
|
||||||
|
msg_info "Creating Service"
|
||||||
|
cat <<EOF >/etc/systemd/system/trek.service
|
||||||
|
[Unit]
|
||||||
|
Description=TREK Travel Planner
|
||||||
|
After=network.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=simple
|
||||||
|
User=root
|
||||||
|
WorkingDirectory=/opt/trek/server
|
||||||
|
EnvironmentFile=/opt/trek/server/.env
|
||||||
|
ExecStart=/usr/bin/node --import tsx src/index.ts
|
||||||
|
Restart=on-failure
|
||||||
|
RestartSec=5
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
EOF
|
||||||
|
systemctl enable -q --now trek
|
||||||
|
msg_ok "Created Service"
|
||||||
|
|
||||||
|
motd_ssh
|
||||||
|
customize
|
||||||
|
cleanup_lxc
|
||||||
+2
-2
@@ -5456,14 +5456,14 @@ create_lxc_container() {
|
|||||||
local _has_fallback_option=false
|
local _has_fallback_option=false
|
||||||
if [[ "$do_retry" == "yes" ]] && has_previous_os_version_template; then
|
if [[ "$do_retry" == "yes" ]] && has_previous_os_version_template; then
|
||||||
_has_fallback_option=true
|
_has_fallback_option=true
|
||||||
echo " [1] Run host upgrade now (recommended). WARNING: this runs apt upgrade and updates all Packeages on your host!"
|
echo " [1] Run host upgrade now (recommended). WARNING: this runs apt upgrade and updates all Packages on your host!"
|
||||||
echo " [2] Use an older ${PCT_OSTYPE} template instead (may not work with all scripts)"
|
echo " [2] Use an older ${PCT_OSTYPE} template instead (may not work with all scripts)"
|
||||||
echo " [3] Ignore"
|
echo " [3] Ignore"
|
||||||
echo " [4] Cancel"
|
echo " [4] Cancel"
|
||||||
echo
|
echo
|
||||||
read -rp "Select option [1/2/3/4]: " _ans </dev/tty
|
read -rp "Select option [1/2/3/4]: " _ans </dev/tty
|
||||||
else
|
else
|
||||||
echo " [1] Run host upgrade now (recommended). WARNING: this runs apt upgrade and updates all Packeages on your host!"
|
echo " [1] Run host upgrade now (recommended). WARNING: this runs apt upgrade and updates all Packages on your host!"
|
||||||
echo " [2] Ignore"
|
echo " [2] Ignore"
|
||||||
echo " [3] Cancel"
|
echo " [3] Cancel"
|
||||||
echo
|
echo
|
||||||
|
|||||||
+2
-2
@@ -1924,8 +1924,8 @@ setup_deb822_repo() {
|
|||||||
echo "Types: deb"
|
echo "Types: deb"
|
||||||
echo "URIs: $repo_url"
|
echo "URIs: $repo_url"
|
||||||
echo "Suites: $suite"
|
echo "Suites: $suite"
|
||||||
# Flat repositories (suite="./" or absolute path) must not have Components
|
# Flat repositories (suite ending with "/" or "./") must not have Components
|
||||||
if [[ "$suite" != "./" && -n "$component" ]]; then
|
if [[ "$suite" != *"/" && -n "$component" ]]; then
|
||||||
echo "Components: $component"
|
echo "Components: $component"
|
||||||
fi
|
fi
|
||||||
[[ -n "$architectures" ]] && echo "Architectures: $architectures"
|
[[ -n "$architectures" ]] && echo "Architectures: $architectures"
|
||||||
|
|||||||
@@ -405,11 +405,6 @@ for container in $CHOICE; do
|
|||||||
esac
|
esac
|
||||||
exit_code=$?
|
exit_code=$?
|
||||||
|
|
||||||
if [ "$template" == "false" ] && [ "$status" == "status: stopped" ]; then
|
|
||||||
echo -e "${BL}[Info]${GN} Shutting down${BL} $container ${CL} \n"
|
|
||||||
pct shutdown $container &
|
|
||||||
fi
|
|
||||||
|
|
||||||
#5) if build resources are different than run resources, then:
|
#5) if build resources are different than run resources, then:
|
||||||
if [ "$UPDATE_BUILD_RESOURCES" -eq "1" ]; then
|
if [ "$UPDATE_BUILD_RESOURCES" -eq "1" ]; then
|
||||||
pct set "$container" --cores "$run_cpu" --memory "$run_ram"
|
pct set "$container" --cores "$run_cpu" --memory "$run_ram"
|
||||||
@@ -421,6 +416,11 @@ for container in $CHOICE; do
|
|||||||
containers_needing_reboot+=("$container ($container_hostname)")
|
containers_needing_reboot+=("$container ($container_hostname)")
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "$template" == "false" ] && [ "$status" == "status: stopped" ]; then
|
||||||
|
echo -e "${BL}[Info]${GN} Shutting down${BL} $container ${CL} \n"
|
||||||
|
pct shutdown $container &>/dev/null &
|
||||||
|
fi
|
||||||
|
|
||||||
if [ $exit_code -eq 0 ]; then
|
if [ $exit_code -eq 0 ]; then
|
||||||
msg_ok "Updated container $container"
|
msg_ok "Updated container $container"
|
||||||
elif [ $exit_code -eq 75 ]; then
|
elif [ $exit_code -eq 75 ]; then
|
||||||
|
|||||||
@@ -66,10 +66,20 @@ for container in $(pct list | awk '{if(NR>1) print $1}'); do
|
|||||||
pct start "$container"
|
pct start "$container"
|
||||||
sleep 5
|
sleep 5
|
||||||
update_container "$container" || echo " [Error] Update failed for $container"
|
update_container "$container" || echo " [Error] Update failed for $container"
|
||||||
|
# check if patchmon agent is present in container and run a report if found
|
||||||
|
if pct exec "$container" -- [ -e "/usr/local/bin/patchmon-agent" ]; then
|
||||||
|
echo -e "${BL}[Info]${GN} patchmon-agent found in ${BL} $container ${CL}, triggering report. \n"
|
||||||
|
pct exec "$container" -- "/usr/local/bin/patchmon-agent" "report"
|
||||||
|
fi
|
||||||
echo -e "[Info] Shutting down $container"
|
echo -e "[Info] Shutting down $container"
|
||||||
pct shutdown "$container" --timeout 60 &
|
pct shutdown "$container" --timeout 60 &
|
||||||
elif [ "$status" == "status: running" ]; then
|
elif [ "$status" == "status: running" ]; then
|
||||||
update_container "$container" || echo " [Error] Update failed for $container"
|
update_container "$container" || echo " [Error] Update failed for $container"
|
||||||
|
# check if patchmon agent is present in container and run a report if found
|
||||||
|
if pct exec "$container" -- [ -e "/usr/local/bin/patchmon-agent" ]; then
|
||||||
|
echo -e "${BL}[Info]${GN} patchmon-agent found in ${BL} $container ${CL}, triggering report. \n"
|
||||||
|
pct exec "$container" -- "/usr/local/bin/patchmon-agent" "report"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|||||||
@@ -110,15 +110,17 @@ for container in $(pct list | awk '{if(NR>1) print $1}'); do
|
|||||||
elif [ "$status" == "status: running" ]; then
|
elif [ "$status" == "status: running" ]; then
|
||||||
update_container $container
|
update_container $container
|
||||||
fi
|
fi
|
||||||
if pct exec "$container" -- [ -e "/var/run/reboot-required" ]; then
|
if [ "$status" == "status: running" ]; then
|
||||||
# Get the container's hostname and add it to the list
|
if pct exec "$container" -- [ -e "/var/run/reboot-required" ]; then
|
||||||
container_hostname=$(pct exec "$container" hostname)
|
# Get the container's hostname and add it to the list
|
||||||
containers_needing_reboot+=("$container ($container_hostname)")
|
container_hostname=$(pct exec "$container" hostname)
|
||||||
fi
|
containers_needing_reboot+=("$container ($container_hostname)")
|
||||||
# check if patchmon agent is present in container and run a report if found
|
fi
|
||||||
if pct exec "$container" -- [ -e "/usr/local/bin/patchmon-agent" ]; then
|
# check if patchmon agent is present in container and run a report if found
|
||||||
echo -e "${BL}[Info]${GN} patchmon-agent found in ${BL} $container ${CL}, triggering report. \n"
|
if pct exec "$container" -- [ -e "/usr/local/bin/patchmon-agent" ]; then
|
||||||
pct exec "$container" -- "/usr/local/bin/patchmon-agent" "report"
|
echo -e "${BL}[Info]${GN} patchmon-agent found in ${BL} $container ${CL}, triggering report. \n"
|
||||||
|
pct exec "$container" -- "/usr/local/bin/patchmon-agent" "report"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user