* fix missing space in issue

This commit is contained in:
Alexander Baldeck 2019-04-09 15:20:08 +00:00
parent d306f80fd0
commit da220fb24a
23 changed files with 192 additions and 1 deletions

View File

@ -26,7 +26,7 @@ md5sums=('5fa6674df7645d7f5895f2d12b4ef4e9'
'1c1e3b08acfa286f4b417c49de3e4366'
'7d119a9cce152aa182fb3392ddeecea7'
'a1315ea3e2b64d197b6efaf9c14ff778'
'7813c481156f6b280a3ba91fc6236368'
'5bee612bf467a8331ca4acfd0d261839'
'5deb9f890a4d08a245e9752ede77271e'
'580cf8b59eebfaac4fad373ffadc9912'
'd41d8cd98f00b204e9800998ecf8427e'

12
filesystem/crypttab Normal file
View File

@ -0,0 +1,12 @@
# Configuration for encrypted block devices.
# See crypttab(5) for details.
# NOTE: Do not list your root (/) partition here, it must be set up
# beforehand by the initramfs (/etc/mkinitcpio.conf).
# <name> <device> <password> <options>
# home UUID=b8ad5c18-f445-495d-9095-c9ec4f9d2f37 /etc/mypassword1
# data1 /dev/sda3 /etc/mypassword2
# data2 /dev/sda5 /etc/cryptfs.key
# swap /dev/sdx4 /dev/urandom swap,cipher=aes-cbc-essiv:sha256,size=256
# vol /dev/sdb7 none

3
filesystem/env-generator Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
echo 'PATH=/usr/local/sbin:/usr/local/bin:/usr/bin'

4
filesystem/fstab Normal file
View File

@ -0,0 +1,4 @@
# Static information about the filesystems.
# See fstab(5) for details.
# <file system> <dir> <type> <options> <dump> <pass>

1
filesystem/group Normal file
View File

@ -0,0 +1 @@
root:x:0:root

1
filesystem/gshadow Normal file
View File

@ -0,0 +1 @@
root:::root

4
filesystem/host.conf Normal file
View File

@ -0,0 +1,4 @@
# Resolver configuration file.
# See host.conf(5) for details.
multi on

2
filesystem/hosts Normal file
View File

@ -0,0 +1,2 @@
# Static table lookup for hostnames.
# See hosts(5) for details.

2
filesystem/issue Normal file
View File

@ -0,0 +1,2 @@
Arch Linux POWER \r (\l)

4
filesystem/ld.so.conf Normal file
View File

@ -0,0 +1,4 @@
# Dynamic linker/loader configuration.
# See ld.so(8) and ldconfig(8) for details.
include /etc/ld.so.conf.d/*.conf

22
filesystem/locale.sh Normal file
View File

@ -0,0 +1,22 @@
#!/bin/sh
# load locale.conf in XDG paths.
# /etc/locale.conf loads and overrides by kernel command line is done by systemd
# But we override it here, see FS#56688
if [ -z "$LANG" ]; then
if [ -n "$XDG_CONFIG_HOME" ] && [ -r "$XDG_CONFIG_HOME/locale.conf" ]; then
. "$XDG_CONFIG_HOME/locale.conf"
elif [ -n "$HOME" ] && [ -r "$HOME/.config/locale.conf" ]; then
. "$HOME/.config/locale.conf"
elif [ -r /etc/locale.conf ]; then
. /etc/locale.conf
fi
fi
# define default LANG to C if not already defined
LANG=${LANG:-C}
# export all locale (7) variables when they exist
export LANG LANGUAGE LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY \
LC_MESSAGES LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT \
LC_IDENTIFICATION

0
filesystem/motd Normal file
View File

18
filesystem/nsswitch.conf Normal file
View File

@ -0,0 +1,18 @@
# Name Service Switch configuration file.
# See nsswitch.conf(5) for details.
passwd: files mymachines systemd
group: files mymachines systemd
shadow: files
publickey: files
hosts: files mymachines myhostname resolve [!UNAVAIL=return] dns
networks: files
protocols: files
services: files
ethers: files
rpc: files
netgroup: files

9
filesystem/os-release Normal file
View File

@ -0,0 +1,9 @@
NAME="Arch Linux POWER"
PRETTY_NAME="Arch Linux POWER"
ID=arch
BUILD_ID=rolling
ANSI_COLOR="0;36"
HOME_URL="https://archlinuxpower.org/"
DOCUMENTATION_URL="https://wiki.archlinux.org/"
SUPPORT_URL="https://bbs.archlinux.org/"
BUG_REPORT_URL="https://github.com/kth5/archpower/issues"

1
filesystem/passwd Normal file
View File

@ -0,0 +1 @@
root:x:0:0::/root:/bin/bash

40
filesystem/profile Normal file
View File

@ -0,0 +1,40 @@
# /etc/profile
# Set our umask
umask 022
# Append our default paths
appendpath () {
case ":$PATH:" in
*:"$1":*)
;;
*)
PATH="${PATH:+$PATH:}$1"
esac
}
appendpath '/usr/local/sbin'
appendpath '/usr/local/bin'
appendpath '/usr/bin'
unset appendpath
export PATH
# Load profiles from /etc/profile.d
if test -d /etc/profile.d/; then
for profile in /etc/profile.d/*.sh; do
test -r "$profile" && . "$profile"
done
unset profile
fi
# Source global bash config
if test "$PS1" && test "$BASH" && test -z ${POSIXLY_CORRECT+x} && test -r /etc/bash.bashrc; then
. /etc/bash.bashrc
fi
# Termcap is outdated, old, and crusty, kill it.
unset TERMCAP
# Man is much better than us at figuring this out
unset MANPATH

2
filesystem/resolv.conf Normal file
View File

@ -0,0 +1,2 @@
# Resolver configuration file.
# See resolv.conf(5) for details.

12
filesystem/securetty Normal file
View File

@ -0,0 +1,12 @@
# File which lists terminals from which root can log in.
# See securetty(5) for details.
console
tty1
tty2
tty3
tty4
tty5
tty6
ttyS0
hvc0

1
filesystem/shadow Normal file
View File

@ -0,0 +1 @@
root::14871::::::

5
filesystem/shells Normal file
View File

@ -0,0 +1,5 @@
# Pathnames of valid login shells.
# See shells(5) for details.
/bin/sh
/bin/bash

3
filesystem/sysctl Normal file
View File

@ -0,0 +1,3 @@
# Raise inotify resource limits
fs.inotify.max_user_instances = 1024
fs.inotify.max_user_watches = 524288

28
filesystem/sysusers Normal file
View File

@ -0,0 +1,28 @@
# default arch groups
# groups first, because we have user/group id mismatch on ftp and mail
g sys 3 - -
g mem 8 - -
g ftp 11 - -
g mail 12 - -
g log 19 - -
g smmsp 25 - -
g proc 26 - -
g games 50 - -
g lock 54 - -
g network 90 - -
g floppy 94 - -
g scanner 96 - -
g power 98 - -
# default arch users
u bin 1 - -
u daemon 2 - -
u mail 8 - /var/spool/mail
u ftp 14 - /srv/ftp
u http 33 - /srv/http
# default membership
m bin daemon
m bin sys
m daemon adm
m daemon bin

17
filesystem/tmpfiles Normal file
View File

@ -0,0 +1,17 @@
# copy from factory when missing
C /etc/crypttab
C /etc/fstab
C /etc/group
C /etc/gshadow
C /etc/host.conf
C /etc/hosts
C /etc/issue
C /etc/ld.so.conf
C /etc/motd
C /etc/nsswitch.conf
C /etc/passwd
C /etc/profile
C /etc/securetty
C /etc/shadow
C /etc/shells