From e7d87e7a7c760ca6128757e04e940b61721a85bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferit=20Yi=C4=9Fit=20BALABAN?= Date: Fri, 17 Nov 2023 18:17:16 +0300 Subject: [PATCH] Add script to deploy service MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ferit Yiğit BALABAN --- deploy_service.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 deploy_service.sh diff --git a/deploy_service.sh b/deploy_service.sh new file mode 100644 index 0000000..4816f9d --- /dev/null +++ b/deploy_service.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +sudo cp fan_control /opt/fan_control +sudo cp monitor_temp.service monitor_temp.timer +sudo systemctl enable monitor_temp.timer +sudo systemctl start monitor_temp.timer