This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/sbin/openrc-run | |
name="mesh" | |
description="meshcentral service" | |
command="/usr/bin/node /home/$name/node_modules/meshcentral" | |
command_background="yes" | |
user="$name" | |
group="$user" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
declare packages="git alpine-sdk cargo" | |
declare project_name="rustdesk-server" | |
echo "Installing build packages..." | |
sudo apk add $packages |