11 lines
158 B
Bash
Executable File
11 lines
158 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
rm -rf gentoo out
|
|
mkdir gentoo
|
|
mkdir out
|
|
mkdir out/lib
|
|
mkdir out/bin
|
|
chmod -R 755 out
|
|
chown -R "$1" out
|
|
tar xfp hardened.tar.xz -C gentoo
|