Fetch the repository succeeded.
#!/usr/bin/python3
# coding: utf-8
import os
import subprocess
file_profile = '/etc/profile'
items = []
with open(file_profile) as f:
for i in f:
i = i.strip()
if 'proxy' in i.lower():
if '#' not in i:
i = '# ' + i
items.append(i)
os.system('systemctl stop shadowsocks')
os.system('systemctl stop privoxy')
os.system('unset http_proxy')
os.system('unset https_proxy')
os.system('unset ftp_proxy')
os.system('unset all_proxy')
os.system('unset no_proxy')
else:
i = i.replace('# ', '')
items.append(i)
os.system('systemctl start shadowsocks')
os.system('systemctl start privoxy')
else:
items.append(i)
with open(file_profile, 'w') as f:
f.write('\n'.join(items) + '\n')
os.system('source /etc/profile')
os.system('systemctl status shadowsocks')
os.system('systemctl status privoxy')
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。