()
| 664 | }; |
| 665 | |
| 666 | export const installRClone = () => ` |
| 667 | if command_exists rclone; then |
| 668 | echo "RClone already installed ✅" |
| 669 | else |
| 670 | curl https://rclone.org/install.sh | $SUDO_CMD bash |
| 671 | RCLONE_VERSION=$(rclone --version | head -n 1 | awk '{print $2}' | sed 's/^v//') |
| 672 | echo "RClone version $RCLONE_VERSION installed ✅" |
| 673 | fi |
| 674 | `; |
| 675 | |
| 676 | export const createTraefikInstance = () => { |
| 677 | const command = ` |