V8.02.768.2025.06.01
Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
@@ -132,12 +132,12 @@ jobs:
|
|||||||
- name: Preparing the build environment.
|
- name: Preparing the build environment.
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
mkdir -p opt/config
|
mkdir -p /opt/config
|
||||||
mkdir -p opt/livebuild
|
mkdir -p /opt/livebuild
|
||||||
touch opt/config/password.txt && chmod 0600 opt/config/password.txt
|
touch /opt/config/password.txt && chmod 0600 /opt/config/password.txt
|
||||||
touch opt/config/authorized_keys && chmod 0600 opt/config/authorized_keys
|
touch /opt/config/authorized_keys && chmod 0600 /opt/config/authorized_keys
|
||||||
echo "${{ secrets.CISS_DLB_ROOT_PWD }}" >| opt/config/password.txt
|
echo "${{ secrets.CISS_DLB_ROOT_PWD }}" >| /opt/config/password.txt
|
||||||
echo "${{ secrets.CISS_DLB_ROOT_SSH_PUBKEY }}" >| opt/config/authorized_keys
|
echo "${{ secrets.CISS_DLB_ROOT_SSH_PUBKEY }}" >| /opt/config/authorized_keys
|
||||||
|
|
||||||
- name: Starting CISS.debian.live.builder. This may take a while ...
|
- name: Starting CISS.debian.live.builder. This may take a while ...
|
||||||
shell: bash
|
shell: bash
|
||||||
@@ -154,9 +154,9 @@ jobs:
|
|||||||
--dhcp-centurion \
|
--dhcp-centurion \
|
||||||
--jump-host "${{ secrets.CISS_DLB_JUMP_HOSTS }}" \
|
--jump-host "${{ secrets.CISS_DLB_JUMP_HOSTS }}" \
|
||||||
--provider-netcup-ipv6 "${{ secrets.CISS_DLB_NETCUP_IPV6 }}" \
|
--provider-netcup-ipv6 "${{ secrets.CISS_DLB_NETCUP_IPV6 }}" \
|
||||||
--root-password-file opt/config/password.txt \
|
--root-password-file /opt/config/password.txt \
|
||||||
--ssh-port 42842 \
|
--ssh-port 42842 \
|
||||||
--ssh-pubkey opt/config
|
--ssh-pubkey /opt/config
|
||||||
|
|
||||||
- name: Checking Centurion Cloud for existing LIVE ISOs.
|
- name: Checking Centurion Cloud for existing LIVE ISOs.
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
28
README.md
28
README.md
@@ -453,10 +453,10 @@ predictable script behavior.
|
|||||||
#...
|
#...
|
||||||
- name: Preparing the build environment.
|
- name: Preparing the build environment.
|
||||||
run: |
|
run: |
|
||||||
rm -rf opt/{config,livebuild}
|
mkdir -p /opt/config
|
||||||
mkdir -p opt/{config,livebuild}
|
mkdir -p /opt/livebuild
|
||||||
echo "${{ secrets.CHANGE_ME }}" >| opt/config/password.txt
|
echo "${{ secrets.CHANGE_ME }}" >| /opt/config/password.txt
|
||||||
echo "${{ secrets.CHANGE_ME }}" >| opt/config/authorized_keys
|
echo "${{ secrets.CHANGE_ME }}" >| /opt/config/authorized_keys
|
||||||
#...
|
#...
|
||||||
- name: Starting CISS.debian.live.builder. This may take a while ...
|
- name: Starting CISS.debian.live.builder. This may take a while ...
|
||||||
run: |
|
run: |
|
||||||
@@ -464,18 +464,16 @@ predictable script behavior.
|
|||||||
timestamp=$(date -u +"%Y_%m_%d_%H_%M_Z")
|
timestamp=$(date -u +"%Y_%m_%d_%H_%M_Z")
|
||||||
### Change "--autobuild=" to the specific kernel version you need: '6.12.22+bpo-amd64'.
|
### Change "--autobuild=" to the specific kernel version you need: '6.12.22+bpo-amd64'.
|
||||||
./ciss_live_builder.sh \
|
./ciss_live_builder.sh \
|
||||||
--autobuild=CHANGE_ME \
|
--autobuild=CHANGE_ME \
|
||||||
--architecture CHANGE_ME \
|
--architecture CHANGE_ME \
|
||||||
--build-directory opt/livebuild \
|
--build-directory /opt/livebuild \
|
||||||
--control "${timestamp}" \
|
--control "${timestamp}" \
|
||||||
--jump-host "${{ secrets.CHANGE_ME }}" \
|
--jump-host "${{ secrets.CHANGE_ME }}" \
|
||||||
--renice-priority "-19" \
|
--root-password-file /opt/config/password.txt \
|
||||||
--reionice-priority 1 2 \
|
--ssh-port CHANGE_ME \
|
||||||
--root-password-file opt/config/password.txt \
|
--ssh-pubkey /opt/config
|
||||||
--ssh-port CHANGE_ME \
|
|
||||||
--ssh-pubkey opt/config
|
|
||||||
#...
|
#...
|
||||||
### SKIP OR ADAPT ALL REMAINING STEPS
|
### SKIP OR CHANGE ALL REMAINING STEPS
|
||||||
```
|
```
|
||||||
|
|
||||||
# 6. Licensing & Compliance
|
# 6. Licensing & Compliance
|
||||||
|
|||||||
Reference in New Issue
Block a user