Add basic tools to install debian
This commit is contained in:
parent
82aae1ffd3
commit
8994b2a215
7 changed files with 44 additions and 29495 deletions
31
.drone.yml
Normal file
31
.drone.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: Build live-cd Image
|
||||
image: debian:buster
|
||||
privileged: true
|
||||
commands:
|
||||
- apt update
|
||||
- apt install -y live-build binutils
|
||||
- sed -i '1161s%umount%#umount%' /usr/share/debootstrap/functions
|
||||
- lb clean --purge
|
||||
- lb config
|
||||
- lb build
|
||||
|
||||
- name: gitea_release
|
||||
image: plugins/gitea-release
|
||||
settings:
|
||||
api_key:
|
||||
from_secret: lagertonne_droneio_key
|
||||
base_url: https://git.neulandlabor.de/
|
||||
files:
|
||||
- live-image*.iso
|
||||
checksum:
|
||||
- sha512
|
||||
- md5
|
||||
title: NLL Live-Distro
|
||||
when:
|
||||
event: tag
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -6,6 +6,9 @@ binary*.contents
|
|||
binary*.packages
|
||||
binary*.zsync
|
||||
|
||||
.lock
|
||||
chroot.files
|
||||
|
||||
.build/
|
||||
build.log
|
||||
|
||||
|
|
0
.lock
0
.lock
6
auto/config
Executable file
6
auto/config
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
lb config noauto \
|
||||
--architectures amd64 \
|
||||
--distribution buster \
|
||||
"${@}"
|
29492
chroot.files
29492
chroot.files
File diff suppressed because it is too large
Load diff
|
@ -1,8 +1,8 @@
|
|||
[Image]
|
||||
Architecture: amd64
|
||||
Archive-Areas: main
|
||||
Distribution: stretch
|
||||
Mirror-Bootstrap: http://ftp.debian.org/debian/
|
||||
Archive-Areas: main contrib non-free
|
||||
Distribution: buster
|
||||
Mirror-Bootstrap: http://deb.debian.org/debian/
|
||||
|
||||
[FIXME]
|
||||
Configuration-Version: 1:20170213
|
||||
|
|
1
config/package-lists/install_debian.list.chroot
Normal file
1
config/package-lists/install_debian.list.chroot
Normal file
|
@ -0,0 +1 @@
|
|||
arch-install-scripts debootstrap
|
Loading…
Reference in a new issue