Skip to content

Instantly share code, notes, and snippets.

View alealexpro100's full-sized avatar

ALEXPRO100 alealexpro100

View GitHub Profile
@alealexpro100
alealexpro100 / mesh
Created June 20, 2022 11:02
MeshCentral OpenRC service using mariadb
#!/sbin/openrc-run
name="mesh"
description="meshcentral service"
command="/usr/bin/node /home/$name/node_modules/meshcentral"
command_background="yes"
user="$name"
group="$user"
@alealexpro100
alealexpro100 / compile.sh
Last active February 24, 2023 20:50
Build Rustdesk-Server under Alpine Linux + service to run it (based on samba service file).
#!/bin/bash
set -e
declare packages="git alpine-sdk cargo"
declare project_name="rustdesk-server"
echo "Installing build packages..."
sudo apk add $packages