mirror of
https://github.com/ThunixdotNet/monurbox.git
synced 2026-01-24 20:10:17 +00:00
11 lines
125 B
Bash
Executable File
11 lines
125 B
Bash
Executable File
#!/bin/bash
|
|
export SITE=$1
|
|
|
|
ssh $SITE "bash -s" < ./plugins/disk > /dev/null
|
|
if [ $? -ne "0" ]
|
|
then
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi
|