10 lines
297 B
Bash
10 lines
297 B
Bash
#!/bin/bash
|
|
RAWDIR=https://git.jmanson.fr/jeremy/installer_gentoo/raw/master
|
|
wget -P /tmp/ $RAWDIR/env.sh
|
|
wget -P /tmp/ $RAWDIR/downloader.sh
|
|
wget -P /tmp/ $RAWDIR/partitions.sh
|
|
wget -P /tmp/ $RAWDIR/install_sys.sh
|
|
source /tmp/env.sh
|
|
sh /tmp/partitions.sh
|
|
sh /tmp/downloader
|
|
sh /tmp/install_sys.sh |