Merge branch 'dev' of github.com:fewtarius/distribution into dev

This commit is contained in:
fewtarius 2022-06-30 18:54:15 -04:00
commit 7c8356e816
No known key found for this signature in database
GPG key ID: F4AE55305D1B8C1A
5 changed files with 8 additions and 19 deletions

View file

@ -2,7 +2,7 @@
# Copyright (C) 2020-present Fewtarius
PKG_NAME="moonlight"
PKG_VERSION="b9703e7a1e17ad36d0848c5e8b6bc6c4993abc37"
PKG_VERSION="543dc087fce7473b87bbaef47a350c49f8aa3fd1"
PKG_ARCH="any"
PKG_LICENSE="GPLv3"
PKG_SITE="https://github.com/moonlight-stream/moonlight-embedded"

View file

@ -2,7 +2,7 @@
# Copyright (C) 2022-present BrooksyTech (https://github.com/brooksytech)
PKG_NAME="jelosaddons"
PKG_VERSION="cc4226d9d44c132a006a1cd4c55457884e758c8d"
PKG_VERSION="56a4ada71dcd0d0cf1c6ba5c2058449f4ae4fcb2"
PKG_ARCH="any"
PKG_SITE="https://github.com/brooksytech/JelosAddOns"
PKG_URL="${PKG_SITE}/raw/${PKG_VERSION}/JelosAddOns.zip"

View file

@ -1,11 +0,0 @@
#!/bin/bash
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2021-present kkoshelev (https://github.com/kkoshelev)
. /etc/profile
if [ "$(get_setting tailscale.up)" == "1" ]
then
set_setting tailscale.up 0
nohup tailscale down &
fi

View file

@ -16,9 +16,9 @@ pre_unpack() {
}
makeinstall_target() {
mkdir -p ${INSTALL}/usr/bin/
cp ${PKG_BUILD}/tailscale ${INSTALL}/usr/bin/
cp ${PKG_BUILD}/tailscaled ${INSTALL}/usr/bin/
mkdir -p ${INSTALL}/usr/sbin/
cp ${PKG_BUILD}/tailscale ${INSTALL}/usr/sbin/
cp ${PKG_BUILD}/tailscaled ${INSTALL}/usr/sbin/
mkdir -p ${INSTALL}/usr/config
cp -R ${PKG_DIR}/config/tailscaled.defaults ${INSTALL}/usr/config

View file

@ -6,9 +6,9 @@ After=network-pre.target
[Service]
EnvironmentFile=/storage/.config/tailscaled.defaults
ExecStartPre=/usr/bin/tailscaled --cleanup
ExecStart=/usr/bin/tailscaled --state=/var/lib/tailscale/tailscaled.state --socket=/run/tailscale/tailscaled.sock --port $PORT $FLAGS
ExecStopPost=/usr/bin/tailscaled --cleanup
ExecStartPre=/usr/sbin/tailscaled --cleanup
ExecStart=/usr/sbin/tailscaled --state=/storage/.cache/tailscale/tailscaled.state --socket=/run/tailscale/tailscaled.sock --port $PORT $FLAGS
ExecStopPost=/usr/sbin/tailscaled --cleanup
Restart=on-failure