You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

83 lines
2.0 KiB

  1. # /etc/etc-update.conf: config file for `etc-update` utility
  2. # edit the lines below to your liking
  3. # mode - 0 for text, 1 for menu (support incomplete)
  4. # note that you need dev-util/dialog installed
  5. mode="0"
  6. # Whether to clear the term prior to each display
  7. #clear_term="yes"
  8. clear_term="no"
  9. # Whether trivial/comment changes should be automerged
  10. eu_automerge="yes"
  11. # arguments used whenever rm is called
  12. rm_opts="-i"
  13. # arguments used whenever mv is called
  14. mv_opts="-i"
  15. # arguments used whenever cp is called
  16. cp_opts="-i"
  17. # set the pager for use with diff commands (this will
  18. # cause the PAGER environment variable to be ignored)
  19. #pager="less"
  20. # For emacs-users (see NOTE_2)
  21. # diff_command="eval emacs -nw --eval=\'\(ediff\ \"%file1\"\ \"%file2\"\)\'"
  22. #using_editor=1
  23. # vim-users: you CAN use vimdiff for diff_command. (see NOTE_1 and NOTE_2)
  24. #diff_command="vim -d %file1 %file2"
  25. #using_editor=1
  26. # If using colordiff instead of diff, the less -R option may be required
  27. # for correct display (see 'pager' setting above).
  28. diff_command="diff -uN %file1 %file2"
  29. using_editor=0
  30. # vim-users: don't use vimdiff for merging (see NOTE_1)
  31. merge_command="sdiff -s -o %merged %orig %new"
  32. # EXPLANATION
  33. #
  34. # pager:
  35. #
  36. # Examples of pager usage:
  37. # pager="cat" # don't use a pager
  38. # pager="less -E" # less
  39. # pager="more" # more
  40. #
  41. #
  42. # diff_command:
  43. #
  44. # Arguments:
  45. # %file1 [REQUIRED]
  46. # %file2 [REQUIRED]
  47. #
  48. # Examples of diff_command:
  49. # diff_command="diff -uN %file1 %file2" # diff
  50. # diff_command="vim -d %file1 %file2" # vimdiff
  51. #
  52. #
  53. # merge_command:
  54. #
  55. # Arguments:
  56. # %orig [REQUIRED]
  57. # %new [REQUIRED]
  58. # %merged [REQUIRED]
  59. #
  60. # Examples of merge_command:
  61. # merge_command="sdiff -s -o %merged %old %new" # sdiff
  62. #
  63. # NOTE_1: Editors such as vim/vimdiff are not usable for the merge_command
  64. # because it is not known what filenames the produced files have (the user can
  65. # choose while using those programs)
  66. # NOTE_2: Make sure using_editor is set to "1" when using an editor as
  67. # diff_command!