Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fengliufeseliud/pyauto-oandm
运行于 sakuratools.top python 自动化运维脚本
https://github.com/fengliufeseliud/pyauto-oandm
Last synced: 25 days ago
JSON representation
运行于 sakuratools.top python 自动化运维脚本
- Host: GitHub
- URL: https://github.com/fengliufeseliud/pyauto-oandm
- Owner: FengLiuFeseliud
- License: mit
- Created: 2022-01-21T03:16:59.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-27T03:18:08.000Z (almost 3 years ago)
- Last Synced: 2024-11-08T14:47:48.002Z (3 months ago)
- Language: Python
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pyauto-OandM
运行于 sakuratools.top 的 python 自动化运维脚本
仅在本机运行测试 (环境:Linux Debian 11,python 3.9)
全部脚本需 root 运行
使用 crontab 命令进行定时运行
以下是我的配置,` crontab -e` 设置定时任务, `crontab -l` 查看定时任务
```bash
# 每天12点整自动抓取 vilipix 榜单
0 0 * * * python3 /web/py/vilipix.py
# 每小时获取一次指定地区天气保存在 wthrcdn.txt (这里的数据我是准备放在主页的)
0 */1 * * * python3 /web/py/wthrcdn.py
# 每小时10分更新一次 github hosts 保存至 hosts 文件
10 */1 * * * python3 /web/py/autohosts.py
# 每天3点30分自动备份指定目录, mysql数据库
30 3 * * * python3 /web/py/autobackup.py
```统一保存同一天日志文件,默认日志目录`/var/log/py`
脚本会不定时更新添加!
## 脚本目录
> ### vilipix.py 自动抓取 vilipix 三榜
>
> ### wthrcdn.py 自动获取一次指定地区天气
>
> ### autohosts.py 自动更新 github hosts 保存至 hosts 文件
>
> ### autobackup.py 自动备份指定目录, mysql数据库
>
>