mirror of
https://github.com/RROrg/rr.git
synced 2025-06-21 05:51:05 +08:00
8 lines
123 B
Bash
Executable File
8 lines
123 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# rr
|
|
[ "rr" = "$(hostname)" ] && exit 0 # in RR
|
|
[ -f "/usr/rr/VERSION" ] && exit 0 # in DSM
|
|
|
|
exit 1
|