Advertisement
Sergio_Istea

apache_tools.py

May 22nd, 2023
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. #!/bin/python3
  2.  
  3.  
  4. import sys
  5. import os
  6.  
  7. lista = []
  8.  
  9.  
  10.  
  11. # el programa debe recibir al menos un argumento
  12.  
  13. if len(sys.argv) < 2:
  14.  
  15. print(f'Uso: {sys.argv[0]} /ruta/al/fichero/plantilla server_name document_root')
  16.  
  17. exit(1)
  18.  
  19. elif sys.argv[1] == "-h":
  20.  
  21. print(f'Uso: {sys.argv[0]} /ruta/al/fichero/plantilla server_name document_root')
  22. exit()
  23.  
  24.  
  25.  
  26.  
  27.  
  28. # guardamos en una variable el primer argumento
  29. # que es la ruta a un fichero.
  30.  
  31. fichero = sys.argv[1]
  32.  
  33. # validar la existencia del archivo
  34.  
  35. if not os.path.exists(fichero):
  36.  
  37. print("No existe el fichero")
  38.  
  39. exit(1)
  40.  
  41.  
  42.  
  43. # quitar lineas comentadas
  44. with open(fichero, 'r') as objeto_vhost:
  45.  
  46. lineas = objeto_vhost.readlines()
  47.  
  48. contador = 1
  49.  
  50. vhost_clean = []
  51.  
  52. while contador <= len(lineas):
  53.  
  54. if not "#" in lineas[contador - 1]:
  55.  
  56. vhost_clean.append(lineas[contador - 1])
  57.  
  58. contador += 1
  59.  
  60.  
  61. # Nos queda el objeto 'vhost_clean'
  62.  
  63.  
  64.  
  65. contador = 1
  66.  
  67.  
  68. # agregar elemento a la lista
  69.  
  70. vhost_clean.insert(2, 'ServerName ' + sys.argv[2])
  71.  
  72.  
  73. while contador <= len(vhost_clean):
  74.  
  75. indice = contador - 1
  76.  
  77. if 'DocumentRoot' in vhost_clean[indice]:
  78.  
  79. vhost_clean[indice] = 'DocumentRoot ' + sys.argv[3]
  80.  
  81.  
  82. print(vhost_clean[indice].strip())
  83.  
  84. contador += 1
  85.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement