~ubuntu-branches/debian/sid/apt-dater/sid

« back to all changes in this revision

Viewing changes to conf/apt-dater.xml

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2015-07-07 17:33:08 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20150707173308-7rkjhxnlq7gsykif
Tags: 1.0.2-1
* New upstream release.
  - Set the default of the opt-cmd-flags host option to "-t" since this is
    essential.
    Closes: #776392
  - Add new build dependency vim-common.
* Replace screen dependency with tmux.
* Create apt-dater group for session sharing.
* Add missing directories.
* Make the build reproducible.
  Closes: #789648
* Drop automake and autoconf build dependencies.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<apt-dater>
2
 
    <!--
3
 
        SSH(1) options
4
 
 
5
 
    <ssh
6
 
        cmd="/usr/bin/ssh"
7
 
        opt-cmd-flags="-t"
8
 
        sftp-cmd="/usr/bin/sftp"
9
 
        spawn-agent="false">
10
 
 
11
 
        <add-key fn="/path/to/id_rsa1"/>
12
 
        <add-key fn="/path/to/id_rsa2"/>
13
 
    </ssh>
14
 
    -->
15
 
 
16
 
    <!--
17
 
        Path to hosts file and status directory.
18
 
 
19
 
    <paths
20
 
        hosts-file="path-to/hosts.conf"
21
 
        stats-dir="path-to/stats"/>
22
 
    -->
23
 
 
24
 
    <!--
25
 
        SCREEN(1) options
26
 
 
27
 
    <screen
28
 
        rc-file="path-to/screenrc"
29
 
        title="%m # %u@%h:%p"/>
30
 
    -->
31
 
 
32
 
    <!--
33
 
         Colors      = (COMPONENT FG BG ';')*
34
 
         COMPONENT ::= 'default' | 'menu' | 'status' | 'selector' | 'hoststatus' |
35
 
                       'query' | 'input'
36
 
         FG        ::= COLOR
37
 
         BG        ::= COLOR
38
 
         COLOR     ::= 'black' | 'blue' | 'cyan' | 'green' | 'magenta' | 'red' |
39
 
                       'white' | 'yellow'
40
 
 
41
 
    <appearance:
42
 
        colors="menu brightgreen blue;status brightgreen blue;selector black red;"/>
43
 
    -->
44
 
 
45
 
    <!--
46
 
        Notify user by terminal bell and/or screen flash.
47
 
 
48
 
    <notify
49
 
        beep="true"
50
 
        flash="true"/>
51
 
    -->
52
 
 
53
 
    <!--
54
 
        plugin-dir  : directory containing host plugins
55
 
        (pre|post)-*: run hooks before or after executing an action on a host
56
 
 
57
 
    <hooks
58
 
        pluginDir="etc/apt-dater/plugins";
59
 
 
60
 
        pre-upgrade="/etc/apt-dater/pre-upg.d"
61
 
        post-upgrade="etc/apt-dater/post-upg.d"
62
 
        pre-refresh="etc/apt-dater/pre-ref.d"
63
 
        post-refresh="etc/apt-dater/post-ref.d"
64
 
        pre-install="etc/apt-dater/pre-ins.d"
65
 
        post-install="etc/apt-dater/post-ins.d"
66
 
        pre-connect="etc/apt-dater/pre-con.d"
67
 
        post-connect="etc/apt-dater/post-con.d"/>
68
 
    -->
69
 
 
70
 
    <!--
71
 
        Requires apt-dater to be build with enable-autoref.
72
 
 
73
 
    <auto-ref
74
 
        enabled="true"/>
75
 
    -->
76
 
 
77
 
    <!--
78
 
        Requires apt-dater to be build with enable-history.
79
 
 
80
 
    <history
81
 
        record="true"
82
 
        err-pattern="((?<!no )error|warning|fail)"/>
83
 
    </history>
84
 
    -->
85
 
 
86
 
    <!--
87
 
        Requires apt-dater to be build with enable-tclfilter.
88
 
 
89
 
        <tcl-filter
90
 
            filter-exp="return [expr [string compare $lsb_distri \\\"Debian\\\"] == 0 && $lsb_rel < 4.0]"
91
 
            filter-file="/path/to/file.tcl" />
92
 
    -->
93
 
</apt-dater>