mirror of
https://github.com/ben-grande/qusal.git
synced 2025-01-13 08:29:43 -05:00
011a71a36d
Editorconfig can only act based on file extension and path, not attributes, it remains a mean only for multiple collaborators to use the same configuration on their editor. When it is too restrictive, such as not considering the file syntax, use a lint tool for the specific file type instead of trusting editorconfig. Changes were made to increase readability.
11 lines
339 B
Bash
Executable File
11 lines
339 B
Bash
Executable File
#!/bin/sh
|
|
# vim: ft=sh
|
|
# SPDX-FileCopyrightText: 2023 - 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
cp -r /rw/config/systemd/qusal-syncthing-browser-forwarder* \
|
|
/usr/lib/systemd/system/
|
|
systemctl daemon-reload
|
|
systemctl --no-block restart qusal-syncthing-browser-forwarder.socket
|