diff options
author | Harm Weites <harm@weites.com> | 2014-08-14 16:18:15 +0000 |
---|---|---|
committer | Harm Weites <harm@weites.com> | 2014-08-14 16:18:15 +0000 |
commit | 57b5f63467dcc74b0b39a14b5baeb1974cdc3373 (patch) | |
tree | 9bff8821dfdbcfe7fb8155d591053c916fb04996 /tools | |
parent | 604ea8b8b56f5b02a365180b7cc7fc385cc5ad03 (diff) | |
download | vyos-cloud-init-57b5f63467dcc74b0b39a14b5baeb1974cdc3373.tar.gz vyos-cloud-init-57b5f63467dcc74b0b39a14b5baeb1974cdc3373.zip |
fix: Install the python package that will install the required link to
the python2.7 binary. This defaults to 2.7, which is fine.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/build-on-freebsd | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/build-on-freebsd b/tools/build-on-freebsd index 6e6ce8b6..6a3f38ec 100755 --- a/tools/build-on-freebsd +++ b/tools/build-on-freebsd @@ -3,11 +3,8 @@ # installing cloud-init. This script takes care of building and installing. It # will optionally make a first run at the end. -# Since there is no python by default, create a symlink for convenience sake: -ln -sf /usr/local/bin/python2.7 /usr/local/bin/python - # Check dependencies: -[ ! -f /tmp/c-i.dependencieschecked ] && pkg install py27-cheetah py27-Jinja2 py27-prettytable py27-oauth py27-serial py27-configobj py27-yaml py27-argparse py27-requests py27-six py27-boto gpart sudo dmidecode +[ ! -f /tmp/c-i.dependencieschecked ] && pkg install python py27-cheetah py27-Jinja2 py27-prettytable py27-oauth py27-serial py27-configobj py27-yaml py27-argparse py27-requests py27-six py27-boto gpart sudo dmidecode touch /tmp/c-i.dependencieschecked # Required but unavailable port/pkg: py27-jsonpatch py27-jsonpointer |