-
Notifications
You must be signed in to change notification settings - Fork 48
/
variables.txt.example
36 lines (36 loc) · 1.52 KB
/
variables.txt.example
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
# Variables ##################################################################
<<<<<<< HEAD
BASEPATH="/path/to/rhel-patchmanagement"
BASELINE="${BASEPATH}/baseline_advisories.txt"
ADVISORIES="${BASEPATH}/new_advisories.txt"
CURRENT_PATCH_SET="${BASEPATH}/patch_set_`date +%Y-%m-%d.txt`"
CURRENT_PATCH_PHASES="${BASEPATH}/current_patch_phases.txt"
GET_RHEL_PATCH_PHASES="${BASEPATH}/get_rhel_patch_groups.py"
VARS="${BASEPATH}/vars/main.yml"
MAIL_TEXT="${BASEPATH}/mail_text.txt"
=======
BASELINE='/path/to/rhel-patchmanagement/baseline_advisories.txt'
ADVISORIES='/path/to/rhel-patchmanagement/new_advisories.txt'
CURRENT_PATCH_SET="/path/to/rhel-patchmanagement/patch_set_`date +%Y-%m-%d.txt`"
VARS='/path/to/rhel-patchmanagement/vars/main.yml'
MAIL_TEXT='/path/to/rhel-patchmanagement/mail_text.txt'
>>>>>>> master
MAIL_RCP='[email protected]'
DATE1="`date --iso -d '+7 days'`T04:20"
DATE2="`date --iso -d '+14 days'`T04:20"
DATE3="`date --iso -d '+21 days'`T04:20"
DATE4="`date --iso -d '+22 days'`T04:20"
# Variables you need when using remote advisory sources ######################
# These are needed if you want to pull additional advisories from another
# RHEL version.
#
# Example:
# The host you installed this role on has access to the RHEL 7 advisories but
# you want to get the advisories for RHEL 8, too. In this case you need to
# fill the following variables in order to connect to an appropriate remote
# host.
REMOTE_USER=""
SSH_KEY=""
REMOTE_HOSTS=()
REMOTE_ADVISORIES="${BASEPATH}/remote_advisories.txt"
TMPFILE="${BASEPATH}/tmpfile.txt"