Commit da67363d authored by Lorenzo Martinico's avatar Lorenzo Martinico

Remove python packages flask, virtualenv

parent 362213c2
......@@ -116,4 +116,4 @@ context =
# those packages will be marked as dependency of root filesystem
raw nayu_dev_rootfs_packages app-misc/nayuos-chromium-policy
# those packages will be marked as dependency of the chromium build itself
raw nayu_dev_packages dev-python/flask dev-python/virtualenv sys-fs/cryptsetup
raw nayu_dev_packages sys-fs/cryptsetup
......@@ -12,7 +12,6 @@ BOARD=$1
MOUNTPOINT="/tmp/${BOARD}"
INIT_SSH_SERVER="etc/init/openssh-server.conf"
BASHRC="etc/skel/.bashrc"
VIRTUALENV_BIN="usr/local/bin/virtualenv"
CHROMIUM_POLICY="etc/chromium/policies/recommended/nayuos_policy.json"
HAS_FAILED=0
......@@ -35,9 +34,7 @@ install -d "${MOUNTPOINT}"
echo $(ls "${MOUNTPOINT}/usr/local")
if [[ $(ls "${MOUNTPOINT}/usr/local") ]] ; then
opensshd_config=$(ls "${MOUNTPOINT}/${INIT_SSH_SERVER}")
virtualenvbin=$(ls "${MOUNTPOINT}/${VIRTUALENV_BIN}")
chromium_policy=$(ls "${MOUNTPOINT}/${CHROMIUM_POLICY}")
else
is_empty=1
fi
......@@ -60,18 +57,6 @@ else
print_result ${SUCCESS} "opensshd config removed."
fi
echo "* test if git core directory is not empty"
echo "* test bashrc changes for git paths quick fix"
echo "* test if virtualenv binary exists"
if [[ ${virtualenvbin} ]] ; then
print_result ${SUCCESS} "virtualenv binary exists."
else
print_result ${FAILURE} "Expected virtualenv binary not in ${MOUNTPOINT}/${VIRTUALENV_BIN}."
fi
echo "* test if Chromium policies are installed"
if [[ ${chromium_policy} ]] ; then
......
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