LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1049|回复: 0

我的service python 脚本

[复制链接]
发表于 2004-8-14 10:49:58 | 显示全部楼层 |阅读模式

  1. #!/usr/bin/python
  2. import os
  3. import sys

  4. cmd_services="ls /etc/init.d"
  5. os.system(cmd_services)
  6. print "Which service want to control?"
  7. service=raw_input()
  8. print "You have selected",service,
  9. print "service"
  10. print "You can start,stop or restart"
  11. order=raw_input()
  12. first="/etc/init.d/"+service
  13. first+=" "
  14. if order=="start":
  15.         print "Starting",service,
  16.         print "service"
  17.         command=first+"start"
  18.         os.system(command)
  19. elif order=="stop":
  20.         print "Stopping",service,
  21.         print "service"
  22.         command=first+"stop"
  23.         os.system(command)
  24. elif order=="restart":
  25.         print "restarting",service,
  26.         print "service"
  27.         command=first+"restart"
  28.         os.system(command)
  29. else:
  30.         print "Command error,BYE!"
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表