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