This file is indexed.

/usr/share/tripleo-image-elements/os-refresh-config/README.md is in python-tripleo-image-elements 0.7.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Install os-refresh-config
=========================

os-refresh-config uses dib-run-parts to run scripts in a pre-defined set
of directories. Its intended purpose is to quiesce (pre-configure.d),
configure (configure.d), migrate (migration.d), and then activate
(post-configure.d) a configuration on first boot or in response to Heat
Metadata changes.

To cause a script to be run on every os-refresh-config run, install
it into one of the following directories:

    /opt/stack/os-config-refresh/pre-configure.d
    /opt/stack/os-config-refresh/configure.d
    /opt/stack/os-config-refresh/migration.d
    /opt/stack/os-config-refresh/post-configure.d

If you want to have os-refresh-config run on any updates to a particular
Resource in the heat stack, you will need at the minimum the following snippet
of json in this instance's Metadata:

    {
        "OpenStack::Config": {
            "heat": {
                "access_key_id": {"Ref": "ApiKeyResource"},
                "secret_key": {"Fn::GetAtt": [ "ApiKeyResource", "SecretAccessKey" ]},
                "refresh": [ {"resource": "SomeResource"} ],
                "stack": {Ref: 'AWS::Stack'},
                "region": {Ref: 'AWS::Region'}
            }
        }
    }

If you would like to signal a wait condition at the end of
post-configure.d, a generic name of 'completion-handle' can be used
like so:

    {
        "completion-handle": {"Ref": "CompletionHandleName"}
    }