Hey I am looking to create a static DNS entry in AD for a linux server with Python. Anyone know of a way to do this fairly easily?

You already invited:

Tony

Upvotes from:

you could probably just open a file in append mode, and add an entry that way.  You can do `with open('path/to/somefile') as file:` then just do a `file.write = contents` where contents is equal to something like this: https://www.linuxquestions.org ... 48296

If you wanna answer this question please Login or Register