diff options
author | 2022-03-15 00:24:12 +0530 | |
---|---|---|
committer | 2022-03-15 00:24:12 +0530 | |
commit | 4e5d83326d0094b2c344abbf598c14d04c28260b (patch) | |
tree | 7bc790cede04f61860e3e5bf811f557c8a601253 /install-systemd.bash | |
parent | ab19ed42e1495bf83434ea6dd68b8df755913320 (diff) | |
download | shopno-os-log-sync-4e5d83326d0094b2c344abbf598c14d04c28260b.tar.gz shopno-os-log-sync-4e5d83326d0094b2c344abbf598c14d04c28260b.zip |
(xprofile) | changing aproach to install/run watch_log script | adding install uninstall script
Diffstat (limited to 'install-systemd.bash')
-rw-r--r-- | install-systemd.bash | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/install-systemd.bash b/install-systemd.bash deleted file mode 100644 index 546dba3..0000000 --- a/install-systemd.bash +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -sudo cp -r ./src/Watcher /usr/share/ -mkdir -p ~/.local/bin/ -cp -r ./src/bin/watcher ~/.local/bin/ -sudo chmod +x ~/.local/bin/watcher - -# enabling systemd service -mkdir -p ~/.config/systemd/ -mkdir -p ~/.config/systemd/user/ -cp -r ./src/service/watcher.service ~/.config/systemd/user/ -systemctl --user enable --now watcher.service - -# making directory for log-files (where all you daily logs are stored) -mkdir -p ~/.cache/Watcher/ -mkdir -p ~/.cache/Watcher/raw_data/ -mkdir -p ~/.cache/Watcher/Analysis/ - |