1 Star 0 Fork 0

xingguangk/xmir-patcher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
reboot.py 624 Bytes
一键复制 编辑 原始数据 按行查看 历史
remittor 提交于 2023-10-22 00:28 . Added xmir_base module and directory
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import sys
import platform
import xmir_base
import gateway
from gateway import die
gw = gateway.Gateway(detect_ssh = False)
ssh = gw.detect_ssh(verbose = 1, interactive = True)
if ssh > 0:
print('Send command "reboot" via SSH ...')
gw.run_cmd("reboot")
else:
if not gw.stok:
gw.web_login()
print('Send command "reboot" via WEB API ...')
if not gw.reboot_device():
die('Can\'t run reboot command.')
if not gw.wait_shutdown(10):
die('The "reboot" command did not shutdown the device.')
print("Reboot activated!")
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xingguangk/xmir-patcher.git
git@gitee.com:xingguangk/xmir-patcher.git
xingguangk
xmir-patcher
xmir-patcher
main

搜索帮助