9 lines
265 B
Bash
Executable file
9 lines
265 B
Bash
Executable file
#! /bin/sh
|
|
# fail immediately on error
|
|
set -e
|
|
|
|
# root part
|
|
curl -RLSsf1 https://github.com/schtobia/bootstrap/raw/master/bootstrap-root.sh | sudo -SEH bash -
|
|
|
|
# userspace part
|
|
curl -RLSsf1 https://github.com/schtobia/bootstrap/raw/master/bootstrap-user.sh | bash -
|