959f0301e7
This adds a periodic job to copy logs to a mirror volume, and export it via the usual mirror http. I have precreated the log volume; just as a R/W volume because this is expected to be very low volume access. Change-Id: I67870f6d439af2d2a63a5048ef52cecff3e75275
56 lines
1.8 KiB
Python
56 lines
1.8 KiB
Python
# Copyright 2019 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
|
|
testinfra_hosts = ['mirror-update01.opendev.org']
|
|
|
|
# Manually calculated from the "secret" value in the test host vars
|
|
KEYTAB_SHA256 = '88d4ac38ad3da024913843d8917d5be89ceac4abef7b977718f2c3f1db3ccde4'
|
|
|
|
def test_tools(host):
|
|
f = host.file('/usr/bin/k5start')
|
|
assert f.exists
|
|
f = host.file('/usr/bin/rsync')
|
|
assert f.exists
|
|
f = host.file('/usr/bin/vos')
|
|
assert f.exists
|
|
|
|
def test_rsync_scripts(host):
|
|
for script in ['centos',
|
|
'epel',
|
|
'fedora',
|
|
'opensuse',
|
|
'yum-puppetlabs']:
|
|
f = host.file('/usr/local/bin/%s-mirror-update' % script)
|
|
assert f.exists
|
|
|
|
def test_publisher_script(host):
|
|
f = host.file('/usr/local/bin/publish-mirror-logs')
|
|
assert f.exists
|
|
|
|
def test_keytabs(host):
|
|
for keytab in ['/etc/afsadmin.keytab',
|
|
'/etc/logs.keytab',
|
|
'/etc/centos.keytab',
|
|
'/etc/epel.keytab',
|
|
'/etc/fedora.keytab',
|
|
'/etc/opensuse.keytab',
|
|
'/etc/yum-puppetlabs.keytab']:
|
|
|
|
f = host.file(keytab)
|
|
assert f.exists
|
|
assert f.sha256sum == KEYTAB_SHA256
|
|
assert f.mode == 0o400
|
|
|