mirror of
https://github.com/YellowJacketLinux/lfs-buildscripts.git
synced 2025-01-23 22:42:28 +08:00
18 lines
301 B
Bash
18 lines
301 B
Bash
#!/bin/bash
|
|
|
|
source versions.sh
|
|
|
|
GLSOURCES="/sources"
|
|
|
|
pushd $GLSOURCES > /dev/null 2>&1 || myfail "Failed to move to ${GLSOURCES}"
|
|
|
|
[ -d iana-etc-${iana_etc_version} ] && rm -rf iana-etc-${iana_etc_version}
|
|
|
|
tar -zxf ${iana_etc_tarball}
|
|
|
|
cd iana-etc-${iana_etc_version}
|
|
|
|
cp services protocols /etc
|
|
|
|
|