~nilsschlupp/auto-ndiswrapper/rewrite

« back to all changes in this revision

Viewing changes to main/auto-ndis.py

  • Committer: Gabriel Joel
  • Date: 2008-03-16 22:20:14 UTC
  • Revision ID: gabrieljoel@gmail.com-20080316222014-ilwwm8hvkwjha4i8
Now the program adds ndiswrapper to the modules list

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
##If the user isn't root the program will quit
49
49
if os.geteuid() != 0:
50
50
        print "[ERROR] You must be root to run this script."
51
 
        print "Try, 'sudo python auto-ndis.py'"
 
51
        print "Try, 'su then python auto-ndis.py'"
52
52
        sys.exit(1)
53
53
 
54
54
##If the user doesn't have ndiswrapper installed the program will quit
256
256
        os.system("%s -l" % (opts.ndiswrapper_bin, ))
257
257
        os.system("modprobe ndiswrapper")               
258
258
        os.system("%s -m" % (opts.ndiswrapper_bin, ))
259
 
        print "Installation finished"
 
259
        os.system("echo ndiswrapper >> /etc/modules")
 
260
        
 
261
        print "Installation finished, please reboot your computer."
260
262
        sys.exit(0)
261
263
 
262
264