1
0
mirror of https://github.com/tommytran732/Arch-Setup-Script synced 2024-12-04 07:01:32 -05:00

Compare commits

..

2 Commits

Author SHA1 Message Date
9f56c5b0e2
Add permission control for workflow
Signed-off-by: Tommy <contact@tommytran.io>
2024-09-10 16:23:03 -07:00
funk-on-code
0e0cfa9f52
Workaround for systemd-networkd (#45)
The archlinux ISO provides working networking, use it to provide working networking for server installs on first-boot.

Signed-off-by: funk-on-code <113871227+funk-on-code@users.noreply.github.com>
2024-09-10 16:19:53 -07:00
2 changed files with 11 additions and 4 deletions

View File

@ -28,10 +28,12 @@ on:
jobs:
shellcheck:
name: Bash syntax checker
runs-on: ubuntu-latest
name: Shell syntax checker
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
uses: ludeeus/action-shellcheck@master

View File

@ -509,7 +509,12 @@ fi
if [ "${network_daemon}" = 'networkmanager' ]; then
mkdir -p /mnt/etc/systemd/system/NetworkManager.service.d/
unpriv curl -s https://gitlab.com/divested/brace/-/raw/master/brace/usr/lib/systemd/system/NetworkManager.service.d/99-brace.conf | tee /mnt/etc/systemd/system/NetworkManager.service.d/99-brace.conf > /dev/null
fi
fi
if [ "${network_daemon}" = 'systemd-networkd' ]; then
# arch-iso has working networking, booted does not.
cp -ap /etc/systemd/network/20* /mnt/etc/systemd/network/ > /dev/null
fi
## Configuring the system.
arch-chroot /mnt /bin/bash -e <<EOF