make-aux-files.sh 399 B

1234567891011
  1. #!/bin/bash
  2. rm -f lfs-systemd-units*.tar.bz2
  3. # Get base file name and move bootscripts directory to that name
  4. version=`grep "ENTITY lfs-systemd-units-version" packages.ent |cut -d'"' -f2`
  5. mv systemd-units lfs-systemd-units-$version
  6. # Create the tarball and clean up
  7. tar -cjf lfs-systemd-units-$version.tar.bz2 --exclude .svn lfs-systemd-units-$version
  8. mv lfs-systemd-units-$version systemd-units