23 lines
645 B
Plaintext
23 lines
645 B
Plaintext
|
#!/bin/sh
|
||
|
name="etc"
|
||
|
short_desc="Necessary /etc files (do NOT uninstall)"
|
||
|
desc="This package contains the necessary files required for user management. The contents are:
|
||
|
/etc/passwd
|
||
|
/etc/group
|
||
|
/etc/pam.d/other"
|
||
|
category="system"
|
||
|
version="KROS"
|
||
|
maintainer="ffqq@danwin1210.de"
|
||
|
www="Basalt Linux Project"
|
||
|
master_site="N/A"
|
||
|
license_logic="single" # accepted values: single, and, or
|
||
|
licenses=("N/A")
|
||
|
|
||
|
build_dependencies=()
|
||
|
run_dependencies=("system/glibc")
|
||
|
|
||
|
build_process() {
|
||
|
mkdir -p $TAMANDUA_STAGE_DIR/etc/pam.d
|
||
|
cp $TAMANDUA_FILES_DIR/{group,passwd} $TAMANDUA_STAGE_DIR/etc
|
||
|
cp $TAMANDUA_FILES_DIR/other $TAMANDUA_STAGE_DIR/etc/pam.d
|
||
|
}
|