Updated sources and moved configuration to its own folder

This commit is contained in:
Alexander Hill
2025-10-13 13:29:12 -04:00
parent d953c8fca2
commit d97f4abeb3
24 changed files with 395 additions and 1178 deletions

7
root/boot/limine.conf Normal file
View File

@@ -0,0 +1,7 @@
timeout: 3
/Maple Linux
protocol: linux
kernel_path: boot():/vmlinuz
kernel_cmdline: root=/dev/vda2
module_path: boot():/initramfs

2
root/etc/chrony.conf Normal file
View File

@@ -0,0 +1,2 @@
cmdport 0
pool pool.ntp.org iburst maxsources 3

2
root/etc/group Normal file
View File

@@ -0,0 +1,2 @@
root:x:0:root
nobody:x:65534:nobody

1
root/etc/hostname Normal file
View File

@@ -0,0 +1 @@
maple

4
root/etc/init.d/chronyd Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/openrc-run
description="Network Time Protocol Daemon"
command="/bin/chronyd"
pidfile="/run/chrony/chronyd.pid"

6
root/etc/init.d/dhcpcd Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/openrc-run
description="DHCP Client Daemon"
command="/bin/dhcpcd"
command_args="-M"
command_args_background="-b"
pidfile="/run/dhcpcd/pid"

4
root/etc/init.d/dropbear Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/openrc-run
command="/bin/dropbear"
command_args="-R"
pidfile="/run/dropbear.pid"

6
root/etc/init.d/mdevd Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/openrc-run
description="Mini Device Mapper Daemon"
command="/bin/mdevd"
command_args="-O4"
command_background="yes"
pidfile="/run/mdevd.pid"

5
root/etc/os-release Normal file
View File

@@ -0,0 +1,5 @@
NAME=Maple Linux
VERSION=2025
ID=maple
VERSION_ID=2025
PRETTY_NAME="Maple Linux"

5
root/etc/pam.d/sshd Normal file
View File

@@ -0,0 +1,5 @@
#%PAM-1.0
auth include system-auth
account include system-auth
password include system-auth
session include system-auth

View File

@@ -0,0 +1,5 @@
#%PAM-1.0
auth required pam_unix.so nullok
account required pam_unix.so
password required pam_unix.so nullok shadow
session required pam_unix.so

2
root/etc/passwd Normal file
View File

@@ -0,0 +1,2 @@
root:x:0:0::/:/bin/zsh
nobody:x:65534:65534::/:/bin/nologin

2
root/etc/resolv.conf Normal file
View File

@@ -0,0 +1,2 @@
nameserver 1.1.1.1
nameserver 1.0.0.1

2
root/etc/shadow Normal file
View File

@@ -0,0 +1,2 @@
root::20295::::::
nobody::20374::::::

2
root/etc/shells Normal file
View File

@@ -0,0 +1,2 @@
/bin/sh
/bin/zsh