Fin Python
This commit is contained in:
parent
20f4f4f183
commit
6a287b8ee7
41
Sio2/SISR/30-python/creatusr3.py
Executable file
41
Sio2/SISR/30-python/creatusr3.py
Executable file
@ -0,0 +1,41 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
import sys
|
||||
|
||||
#print "Nom du programme : ", sys.argv[0]
|
||||
#print "Nombre d'arguments: ", len(sys.argv)
|
||||
#print "Les arguments sont : " , str(sys.argv)
|
||||
|
||||
if len(sys.argv) !=2:
|
||||
msg = "Usage : " + sys.argv[0] + " <fichier.txt>"
|
||||
print (msg, file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
||||
filename = sys.argv[1]
|
||||
|
||||
|
||||
try:
|
||||
file = open(filename , "r")
|
||||
|
||||
except:
|
||||
msg = "Erreur ouverture fichier " + filename
|
||||
print (msg ,file=sys.stderr)
|
||||
|
||||
else:
|
||||
line = file.readline ()
|
||||
maligne = line.rstrip()
|
||||
|
||||
while maligne:
|
||||
(login, complet) = maligne.split(":")
|
||||
print (login)
|
||||
print (complet)
|
||||
cmd = ('getent passwd', login)
|
||||
res=subprocess.run(cmd.split(),stdout=subprocess.PIPE)
|
||||
commande = "useradd --create-home --home-dir /home"+ login + " --shell /bin/bash --comment \"" + complet + "\" " + login
|
||||
print (commande)
|
||||
print (" ")
|
||||
line = file.readline()
|
||||
maligne = line.rstrip()
|
||||
#print (line)
|
||||
file.close()
|
||||
|
44
Sio2/SISR/30-python/creatusr4.py
Normal file
44
Sio2/SISR/30-python/creatusr4.py
Normal file
@ -0,0 +1,44 @@
|
||||
#!/usr/bin/python3
|
||||
# ne marche pas
|
||||
|
||||
import sys
|
||||
import os
|
||||
import pwd
|
||||
import subprocess
|
||||
|
||||
#print ("Nom du programme : ", sys.argv[0])
|
||||
#print ("Nombre d'arguments: ", len(sys.argv))
|
||||
#print ("Les arguments sont : " , str(sys.argv))
|
||||
|
||||
if len(sys.argv) != 2:
|
||||
msg= ("Usage : " + sys.argv[0] + " <fichier.txt>")
|
||||
print(msg ,file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
||||
filename = sys.argv[1]
|
||||
try:
|
||||
file= open(filename , "r")
|
||||
except:
|
||||
msg = ("Erreur ouverture fichier " + filename)
|
||||
print(msg ,file=sys.stderr)
|
||||
|
||||
else:
|
||||
line = file.readline()
|
||||
linee = line.rstrip()
|
||||
while linee:
|
||||
(login, complet) = linee.split(":")
|
||||
|
||||
cmd="getent passwd " + login
|
||||
res= subprocess.run(cmd.split(),stdout=subprocess.PIPE)
|
||||
res2= (res.stdout.decode("utf8"))
|
||||
if not res2 :
|
||||
commande = "useradd --create-home --home-dir /home/"+ login + " --shell /bin/bash --comment \"" + complet + "\" " + login
|
||||
res3= os.system(commande)
|
||||
|
||||
else :
|
||||
print("Utilisateur " + login + " existant" )
|
||||
|
||||
|
||||
line = file.readline()
|
||||
linee = line.rstrip()
|
||||
file.close()
|
Loading…
x
Reference in New Issue
Block a user