diff options
Diffstat (limited to 'root/etc')
| -rw-r--r-- | root/etc/chrony.conf | 2 | ||||
| -rw-r--r-- | root/etc/group | 2 | ||||
| -rw-r--r-- | root/etc/hostname | 1 | ||||
| -rwxr-xr-x | root/etc/init.d/chronyd | 4 | ||||
| -rwxr-xr-x | root/etc/init.d/dhcpcd | 6 | ||||
| -rwxr-xr-x | root/etc/init.d/dropbear | 4 | ||||
| -rwxr-xr-x | root/etc/init.d/mdevd | 6 | ||||
| -rw-r--r-- | root/etc/os-release | 5 | ||||
| -rw-r--r-- | root/etc/pam.d/sshd | 5 | ||||
| -rw-r--r-- | root/etc/pam.d/system-auth | 5 | ||||
| -rw-r--r-- | root/etc/passwd | 2 | ||||
| -rw-r--r-- | root/etc/resolv.conf | 2 | ||||
| -rw-r--r-- | root/etc/shadow | 2 | ||||
| -rw-r--r-- | root/etc/shells | 2 |
14 files changed, 48 insertions, 0 deletions
diff --git a/root/etc/chrony.conf b/root/etc/chrony.conf new file mode 100644 index 0000000..53f8bdd --- /dev/null +++ b/root/etc/chrony.conf @@ -0,0 +1,2 @@ +cmdport 0 +pool pool.ntp.org iburst maxsources 3 diff --git a/root/etc/group b/root/etc/group new file mode 100644 index 0000000..c553363 --- /dev/null +++ b/root/etc/group @@ -0,0 +1,2 @@ +root:x:0:root +nobody:x:65534:nobody diff --git a/root/etc/hostname b/root/etc/hostname new file mode 100644 index 0000000..06fbeeb --- /dev/null +++ b/root/etc/hostname @@ -0,0 +1 @@ +maple diff --git a/root/etc/init.d/chronyd b/root/etc/init.d/chronyd new file mode 100755 index 0000000..ebe513b --- /dev/null +++ b/root/etc/init.d/chronyd @@ -0,0 +1,4 @@ +#!/bin/openrc-run +description="Network Time Protocol Daemon" +command="/bin/chronyd" +pidfile="/run/chrony/chronyd.pid" diff --git a/root/etc/init.d/dhcpcd b/root/etc/init.d/dhcpcd new file mode 100755 index 0000000..419556b --- /dev/null +++ b/root/etc/init.d/dhcpcd @@ -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" diff --git a/root/etc/init.d/dropbear b/root/etc/init.d/dropbear new file mode 100755 index 0000000..405bd03 --- /dev/null +++ b/root/etc/init.d/dropbear @@ -0,0 +1,4 @@ +#!/bin/openrc-run +command="/bin/dropbear" +command_args="-R" +pidfile="/run/dropbear.pid" diff --git a/root/etc/init.d/mdevd b/root/etc/init.d/mdevd new file mode 100755 index 0000000..f8c7e4f --- /dev/null +++ b/root/etc/init.d/mdevd @@ -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" diff --git a/root/etc/os-release b/root/etc/os-release new file mode 100644 index 0000000..00785b6 --- /dev/null +++ b/root/etc/os-release @@ -0,0 +1,5 @@ +NAME=Maple Linux +VERSION=2025 +ID=maple +VERSION_ID=2025 +PRETTY_NAME="Maple Linux" diff --git a/root/etc/pam.d/sshd b/root/etc/pam.d/sshd new file mode 100644 index 0000000..6d1ea17 --- /dev/null +++ b/root/etc/pam.d/sshd @@ -0,0 +1,5 @@ +#%PAM-1.0 +auth include system-auth +account include system-auth +password include system-auth +session include system-auth diff --git a/root/etc/pam.d/system-auth b/root/etc/pam.d/system-auth new file mode 100644 index 0000000..f0804c3 --- /dev/null +++ b/root/etc/pam.d/system-auth @@ -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 diff --git a/root/etc/passwd b/root/etc/passwd new file mode 100644 index 0000000..27d66ce --- /dev/null +++ b/root/etc/passwd @@ -0,0 +1,2 @@ +root:x:0:0::/:/bin/zsh +nobody:x:65534:65534::/:/bin/nologin diff --git a/root/etc/resolv.conf b/root/etc/resolv.conf new file mode 100644 index 0000000..0b030bf --- /dev/null +++ b/root/etc/resolv.conf @@ -0,0 +1,2 @@ +nameserver 1.1.1.1 +nameserver 1.0.0.1 diff --git a/root/etc/shadow b/root/etc/shadow new file mode 100644 index 0000000..3b0fe76 --- /dev/null +++ b/root/etc/shadow @@ -0,0 +1,2 @@ +root::20295:::::: +nobody::20374:::::: diff --git a/root/etc/shells b/root/etc/shells new file mode 100644 index 0000000..a67a8da --- /dev/null +++ b/root/etc/shells @@ -0,0 +1,2 @@ +/bin/sh +/bin/zsh |
