aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/download_ramspeed/defaults/main.yml
blob: 140ad11970974a46badfa81b0fc9d746f98450c0 (plain)
1
2
3
4
5
---
ramspeed_repo: "https://github.com/beefyamoeba5/ramspeed.git"
ramspeed_version: master
ramspeed_dest: "{{ clone_dest }}/RAMspeed"
ramspeed_release: ramspeed-2.6.0
n class="n">all all: ks.cfg.iso @mkdir -p release grep -q OpenStack_Fuel ks.cfg.iso sed "s/OpenStack_Fuel/$(PRODNO)_$(REVSTATE)/g" ks.cfg.iso > ks.cfg /usr/bin/patch -p0 < ks.cfg.patch @cp ks.cfg.iso release/ks.cfg.orig @cp ks.cfg release/ks.cfg ks.cfg.iso: 7z -so x $(ISOCACHE) ks.cfg > ks.cfg.iso .PHONY: clean clean: @rm -rf release ks.cfg.iso ks.cfg .PHONY: release release: all @cp -Rvp release/* ../release ############################################################################# # Cache operations - only used when building through ci/build.sh ############################################################################# # Clean local data related to caching - called prior to ordinary build .PHONY: clean-cache clean-cache: clean @echo "clean-cache not implemented" # Try to download cache - called prior to ordinary build .PHONY: get-cache get-cache: @echo "get-cache not implemented" # Store cache if not already stored - called after ordinary build .PHONY: put-cache put-cache: @echo "put-cache not implemented"