Commit 896cfaf1 authored by Lorenzo Martinico's avatar Lorenzo Martinico

Add option to install chromebrew

parent 6f719dbb
...@@ -99,7 +99,7 @@ context = ...@@ -99,7 +99,7 @@ context =
recipe = slapos.recipe.template:jinja2 recipe = slapos.recipe.template:jinja2
template = {{ software_dir }}/scripts/cros_full_build.in template = {{ software_dir }}/scripts/cros_full_build.in
rendered = ${directory:run}/cros_full_build rendered = ${directory:run}/cros_full_build
md5sum = e11a8ed3fc100ddf591469ca8ac75d52 md5sum = 9d8acdfbbe6a16e13867827e36e8e236
mode = 0700 mode = 0700
context = context =
key bash_path bin:bash key bash_path bin:bash
......
...@@ -274,6 +274,20 @@ safewrite() { __safewrite dd "\$@" ; } ...@@ -274,6 +274,20 @@ safewrite() { __safewrite dd "\$@" ; }
sudodd() { sudo dd "\$@" ; } sudodd() { sudo dd "\$@" ; }
sudosafewrite() { __safewrite sudodd "\$@" ; } sudosafewrite() { __safewrite sudodd "\$@" ; }
crew() {
if [[ -x "$(command -v crew)" ]] ; then
read -p "Chromebrew is not on this machine; do you want to install it? [Y/n] " -r -n 1 crew_install
echo "Fetching installation file..."
if [[ ! $REPLY =~ ^[Nn]$ ]] ; then
curl -Ls git.io/vddgY | bash
else
return 1
fi
else
command crew "$@"
fi
}
# ----- END NayuOS configuration ----- # ----- END NayuOS configuration -----
EOF EOF
fi fi
......
...@@ -26,7 +26,7 @@ recipe = slapos.recipe.template:jinja2 ...@@ -26,7 +26,7 @@ recipe = slapos.recipe.template:jinja2
template = ${:_profile_base_location_}/instance.cfg template = ${:_profile_base_location_}/instance.cfg
rendered = ${buildout:directory}/instance.cfg rendered = ${buildout:directory}/instance.cfg
mode = 0644 mode = 0644
md5sum = 037a1c8c1091f07e8e5660b59223743f md5sum = dc6878488ece00dff3275d83db5b4c3a
context = context =
key software_dir :_profile_base_location_ key software_dir :_profile_base_location_
key instance_dir buildout:directory key instance_dir buildout:directory
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment