diff --git a/kiwi-builder/Dockerfile b/kiwi-builder/Dockerfile deleted file mode 100644 index ee8579a..0000000 --- a/kiwi-builder/Dockerfile +++ /dev/null @@ -1,22 +0,0 @@ -FROM opensuse - -RUN zypper --non-interactive install \ - kiwi \ - kiwi-doc \ - lxc - -ENV HOME /root -WORKDIR /usr/src - -RUN cp -r /usr/share/doc/packages/kiwi/examples/suse-13.1/suse-docker-container /usr/src/ - -COPY config.xml /usr/src/suse-docker-container/ -COPY config.sh /usr/src/suse-docker-container/ - -RUN kiwi --prepare /usr/src/suse-docker-container --root /suse-rootfs - -COPY oss.repo /suse-rootfs/etc/zypp/repos.d/ -COPY update.repo /suse-rootfs/etc/zypp/repos.d/ - -RUN tar cvpf suse-rootfs.tar -C /suse-rootfs/ . \ - && mkdir -p artifacts diff --git a/kiwi-builder/Makefile b/kiwi-builder/Makefile deleted file mode 100644 index 9febb2c..0000000 --- a/kiwi-builder/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -.PHONY: all build run clean - -all: run - -build: - @docker build --rm --force-rm -t jess/kiwi-builder . - -run: build - $(shell docker run --rm -v $(CURDIR)/artifacts:/usr/src/artifacts jess/kiwi-builder mv suse-rootfs.tar artifacts) - $(shell docker import artifacts/suse-rootfs.tar jess/opensuse:12.3) - -clean: - @rm -rf artifacts diff --git a/kiwi-builder/config.sh b/kiwi-builder/config.sh deleted file mode 100644 index 3d80847..0000000 --- a/kiwi-builder/config.sh +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/bash -#================ -# FILE : config.sh -#---------------- -# PROJECT : OpenSuSE KIWI Image System -# COPYRIGHT : (c) 2013 SUSE LLC -# : -# AUTHOR : Robert Schweikert -# : -# BELONGS TO : Operating System images -# : -# DESCRIPTION : configuration script for SUSE based -# : operating systems -# : -# : -# STATUS : BETA -#---------------- -#====================================== -# Functions... -#-------------------------------------- -test -f /.kconfig && . /.kconfig -test -f /.profile && . /.profile - -#====================================== -# Greeting... -#-------------------------------------- -echo "Configure image: [$kiwi_iname]..." - -#====================================== -# Setup baseproduct link -#-------------------------------------- -suseSetupProduct - -#====================================== -# SuSEconfig -#-------------------------------------- -suseConfig - -#====================================== -# Activate services -#-------------------------------------- -suseActivateDefaultServices - -#====================================== -# Umount kernel filesystems -#-------------------------------------- -baseCleanMount - -exit 0 diff --git a/kiwi-builder/config.xml b/kiwi-builder/config.xml deleted file mode 100644 index cdd24e0..0000000 --- a/kiwi-builder/config.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - Flavio Castelli - fcastelli@suse.com - openSUSE 12.3 docker container - - - - - - - - - 1.0.0 - zypper - false - true - en_US - us.map.gz - utc - US/Eastern - - - - - - - - - - - - - - - - - diff --git a/kiwi-builder/oss.repo b/kiwi-builder/oss.repo deleted file mode 100644 index 081111d..0000000 --- a/kiwi-builder/oss.repo +++ /dev/null @@ -1,6 +0,0 @@ -[oss] -name=oss -enabled=1 -autorefresh=0 -baseurl=http://download.opensuse.org/distribution/12.3/repo/oss/ -type=yast2 diff --git a/kiwi-builder/update.repo b/kiwi-builder/update.repo deleted file mode 100644 index 30e21bd..0000000 --- a/kiwi-builder/update.repo +++ /dev/null @@ -1,6 +0,0 @@ -[update] -name=update -enabled=1 -autorefresh=0 -baseurl=http://download.opensuse.org/update/12.3/ -type=rpm-md