Skip to content

Instantly share code, notes, and snippets.

@weshayutin
Created March 19, 2020 12:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weshayutin/3278df289fe5ac6c7bdeb4dc7a85f2c1 to your computer and use it in GitHub Desktop.
Save weshayutin/3278df289fe5ac6c7bdeb4dc7a85f2c1 to your computer and use it in GitHub Desktop.
install tripleo from repos in ci
yum clean all
wget --content-disposition --no-parent -r https://logserver.rdoproject.org/openstack-component-network/opendev.org/openstack/tripleo-ci/master/periodic-tripleo-ci-centos-8-scenario010-standalone-network-master/5127081/logs/undercloud/etc/yum.repos.d/
mv logserver.rdoproject.org/openstack-component-network/opendev.org/openstack/tripleo-ci/master/periodic-tripleo-ci-centos-8-scenario010-standalone-network-master/5127081/logs/undercloud/etc/yum.repos.d/*.txt.gz .
for i in `ls *.gz`; do echo $i; gzip -d $i; done
for i in `ls *.txt`;do echo ${i::(-4)}; mv $i ${i::(-4)}; done
mkdir TEST
mv network-component.repo TEST/
yum repolist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment