22 lines
918 B
Bash
22 lines
918 B
Bash
#!/bin/bash
|
|
RAWDIR=https://git.jmanson.fr/jeremy/installer_gentoo/raw/master
|
|
wget -P /tmp/ $RAWDIR/env.sh 2>> err.log
|
|
wget -P /tmp/ $RAWDIR/downloader.sh 2>> err.log
|
|
wget -P /tmp/ $RAWDIR/partitions.sh 2>> err.log
|
|
wget -P /tmp/ $RAWDIR/grubconfig.sh 2>> err.log
|
|
wget -P /tmp/ $RAWDIR/extract_and_mount.sh 2>> err.log
|
|
wget -P /tmp/ $RAWDIR/sysconfig.sh 2>> err.log
|
|
wget -P /tmp/ $RAWDIR/portageconfig.sh 2>> err.log
|
|
wget -P /tmp/ $RAWDIR/portageinstall.sh 2>> err.log
|
|
wget -P /tmp/ $RAWDIR/kernelinstall.sh 2>> err.log
|
|
wget -P /tmp/ $RAWDIR/sudoconfig.sh 2>> err.log
|
|
source /tmp/env.sh 2>> err.log
|
|
sh /tmp/partitions.sh 2>> err.log
|
|
sh /tmp/downloader.sh 2>> err.log
|
|
sh /tmp/extract_and_mount.sh 2>> err.log
|
|
sh /tmp/sysconfig.sh 2>> err.log
|
|
sh /tmp/portageconfig.sh 2>> err.log
|
|
sh /tmp/portageinstall.sh 2>> err.log
|
|
sh /tmp/kernelinstall.sh 2>> err.log
|
|
sh /tmp/sudoconfig.sh 2>> err.log
|
|
sh /tmp/grubconfig.sh 2>> err.log |