commit message from python script

This commit is contained in:
2023-11-06 19:07:03 +01:00
parent 4620cb28cd
commit 9de1b66bca
3 changed files with 6 additions and 22 deletions

View File

@@ -12,8 +12,7 @@ list_my_git_projects = [
"https://gitlab.com", "https://gitlab.com",
"https:ubuntu:5000" "https:ubuntu:5000"
] ]
my_username = "jonnybravo" my_username = os.environ["USER"]
if not os.path.exists(user_gitconfig): if not os.path.exists(user_gitconfig):
os.popen("touch " + user_gitconfig) os.popen("touch " + user_gitconfig)

View File

@@ -1,33 +1,18 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
import os import my_search
def read_all_sub_Folder(target_folder = str, search_string = str):
key_liste = []
for root, dirs, files in os.walk(target_folder, topdown=False, ):
for name in files:
if name == search_string:
FullPATH = str(os.path.join(root, name))
#if FullPATH.endswith(".pub") is False :#and FullPATH.endswith("known_hosts") is False and FullPATH.endswith("authorized_keys") is False:
#if FullPATH.
key_liste.append({"FullPath": FullPATH,
"Name": name,
"Root": root,
"Folder": dirs})
return key_liste
if __name__ == "__main__": if __name__ == "__main__":
search_jenkins_folder = "/home/jonnybravo/.jenkins/data/jobs" search_jenkins_folder = "/home/jonnybravo/.jenkins/data/jobs"
search_string = """<command>./test_play.yml</command>""" search_string = """<command>./test_play.yml</command>"""
for i in read_all_sub_Folder(target_folder=search_jenkins_folder, search_string="config.xml"): for i_full in my_search.read_all_sub_Folder(target_folder=search_jenkins_folder, search_string="config.xml"):
#print(i["FullPath"]) #print(i["FullPath"])
with open(i["FullPath"], 'r') as file: with open(i_full["FullPath"], 'r') as file:
data = file.read() data = file.read()
index = data.find(search_string) index = data.find(search_string)
print(index)
if not index == -1: if not index == -1:
print("Ist in file vorhanden", file, sep=" ") print("Ist in file vorhanden", file.name, sep=" ")
#data = data.replace('<daysToKeep>-1</daysToKeep>', '') #data = data.replace('<daysToKeep>-1</daysToKeep>', '')
#with open(i["FullPath"], 'w') as file: #with open(i["FullPath"], 'w') as file:
# file.write(data) # file.write(data)

Binary file not shown.