I need an automated way to add a line to a configuration file. I used diff to create a .diff file that I want to apply with patch. However, it can happen that the file that I need to patch is slightly modified elsewhere. E.g. elsewhere in the configuration file some other line has been added.
I assumed that patch would actually be smart about this and figure out if the patch could still be applied without conflicts, but I am getting an error whenever I try to apply the patch to a config file that is slightly different from the original file.
Are there any additional flags that I need to pass to patch or diff to make it less strict? I am generating the .diff file using
diff -ruN oldfile.conf newfile.conf > mypatch.diff
And then apply the patch using
patch myconfig.conf mypatch.diff
What I would like is that patch will try to apply the patch fairly liberally, and if it doesn't know how, just return a warning, but not an error. Currently I am seeing these errors:
jeroen@jeroen-ubuntu:~/Desktop$ diff -ruN default.conf default_new.conf > mypatch.diff
jeroen@jeroen-ubuntu:~/Desktop$ patch default2.conf mypatch.diff
patching file default2.conf
Hunk #1 FAILED at 28.
1 out of 1 hunk FAILED -- saving rejects to file default2.conf.rej
jeroen@jeroen-ubuntu:~/Desktop$