Skip to content

Commit f97e1c5

Browse files
chore: Update SystemGuard app setup script and dependencies in crontab
1 parent eb7b170 commit f97e1c5

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,26 @@ System Guard is a Flask app designed to monitor server stats such as CPU, Memory
55
## Installation
66

77
```bash
8-
wget https://raw.githubusercontent.com/codeperfectplus/SystemGuard/main/setup.sh
9-
chmod +x installer.sh
10-
sudo mv installer.sh /usr/local/bin/systemguard-installer
8+
wget https://raw.githubusercontent.com/codeperfectplus/SystemGuard/main/installer.sh
9+
chmod +x installer.sh && sudo mv installer.sh /usr/local/bin/systemguard-installer
1110
```
1211

1312
### To install the SystemGuard app, run the following command:
1413

1514
```bash
16-
systemguard-installer --install
15+
sudo systemguard-installer --install
1716
```
1817

1918
### To uninstall the SystemGuard app, run the following command:
2019

2120
```bash
22-
systemguard-installer --uninstall
21+
sudo systemguard-installer --uninstall
2322
```
2423

2524
### To Restore the SystemGuard app, run the following command:
2625

2726
```bash
28-
systemguard-installer --restore
27+
sudo systemguard-installer --restore
2928
```
3029

3130
### Help

installer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ install() {
155155

156156
# Install the executable
157157
log "Installing executable to /usr/local/bin/systemguard-installer..."
158-
cp "$(basename "$0")" "$EXECUTABLE"
158+
# cp "$(basename "$0")" "$EXECUTABLE"
159159
log "SystemGuard version $VERSION installed successfully!"
160160
}
161161

0 commit comments

Comments
 (0)