mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-18 13:07:50 +00:00
71e8c2baa7
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10279 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
12 lines
415 B
Bash
Executable File
12 lines
415 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rm -f lfs-network-scripts*.tar.bz2
|
|
|
|
# Get base file name and move bootscripts directory to that name
|
|
version=`grep "ENTITY lfs-network-scripts-version" packages.ent |cut -d'"' -f2`
|
|
mv network-scripts lfs-network-scripts-$version
|
|
|
|
# Create the tarball and clean up
|
|
tar -cjf lfs-network-scripts-$version.tar.bz2 --exclude .svn lfs-network-scripts-$version
|
|
mv lfs-network-scripts-$version network-scripts
|