Compare commits
3 Commits
2025.0513.
...
2025.0513.
Author | SHA1 | Date | |
---|---|---|---|
8d5296d9ea | |||
524d3df1b2 | |||
54dce4862f |
@ -1,3 +1,9 @@
|
|||||||
# Dropshell
|
# Dropshell
|
||||||
|
|
||||||
A system management tool for server operations, written in C++.
|
A system management tool for server operations, written in C++.
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
```
|
||||||
|
curl -fsSL https://gitea.jde.nz/public/dropshell/releases/download/latest/install.sh | bash
|
||||||
|
```
|
11
install.sh
11
install.sh
@ -3,6 +3,12 @@ set -e
|
|||||||
|
|
||||||
# download and install dropshell
|
# download and install dropshell
|
||||||
|
|
||||||
|
# Check if running as root
|
||||||
|
if [ "$EUID" -ne 0 ]; then
|
||||||
|
print_error "Please run this script as root (use sudo)"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
# 1. Determine architecture
|
# 1. Determine architecture
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -33,8 +39,9 @@ fi
|
|||||||
|
|
||||||
chmod +x "$TMPDIR/dropshell"
|
chmod +x "$TMPDIR/dropshell"
|
||||||
|
|
||||||
docker run --rm -v "$TMPDIR:/tmp" -v /usr/local/bin:/target alpine sh -c "cp /tmp/dropshell /target/dropshell && ln -s /target/dropshell /target/ds"
|
cp "$TMPDIR/dropshell" /usr/local/bin/dropshell
|
||||||
rm "$TMPDIR/dropshell"
|
ln -s /usr/local/bin/dropshell /usr/local/bin/ds
|
||||||
|
rm -rf "$TMPDIR"
|
||||||
|
|
||||||
echo "dropshell installed successfully to /usr/local/bin/dropshell"
|
echo "dropshell installed successfully to /usr/local/bin/dropshell"
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user