aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Sorokin <me@ch1p.io>2024-01-25 16:35:00 +0300
committerEvgeny Sorokin <me@ch1p.io>2024-01-25 16:35:00 +0300
commit4af565b27d829f40b36c0079be5d0dfaa1e6f233 (patch)
treebc6259ab9d87c1963ffd141b82cda0b634fe274c
parent75b2517c50a2af0e4ca412a21c48592b52201b78 (diff)
fix
-rwxr-xr-xtools/ipcam_capture_restart_all.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ipcam_capture_restart_all.sh b/tools/ipcam_capture_restart_all.sh
index 69bc8ef..3eefbec 100755
--- a/tools/ipcam_capture_restart_all.sh
+++ b/tools/ipcam_capture_restart_all.sh
@@ -1,4 +1,4 @@
#!/bin/sh
-for service in $(systemctl list-units --type service | grep ipcam_capture | awk '{print $1}'); do \
+for service in $(systemctl list-units --type service | grep ipcam_capture | awk '{print $1}'); do
systemctl restart $service
done