10 lines
355 B
Bash
Executable file
10 lines
355 B
Bash
Executable file
#! /bin/bash
|
|
# fail immediately on error
|
|
set -e
|
|
CURLOPT=${CURLOPT:-"--location --remote-time --show-error --silent --fail --tlsv1.2"}
|
|
|
|
# root part
|
|
curl $CURLOPT https://github.com/schtobia/bootstrap/raw/master/bootstrap-root.sh | sudo -SEH bash -
|
|
|
|
# userspace part
|
|
curl $CURLOPT https://github.com/schtobia/bootstrap/raw/master/bootstrap-user.sh | bash -
|