-
Notifications
You must be signed in to change notification settings - Fork 551
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installation fails on Debian 7 due to missing easy_install #598
Comments
Thanks for reporting this. |
@s0undt3ch Thanks for fixing it and your ongoing work in general. |
Anytime! |
s0undt3ch
added a commit
to s0undt3ch/salt
that referenced
this issue
Jul 17, 2015
* Make sure setuptools is installed before using it. saltstack/salt-bootstrap#598. * `systemd` is only fully supported from 15.04 onwards. saltstack/salt-bootstrap#602 * Fix debian mirrors issue. Thanks Wolodja Wentland(babilen). saltstack/salt-bootstrap#606 * Fix python-jinja2 repo move on RHEL6. Thanks lomeroe. saltstack/salt-bootstrap#621 * Allow skipping services. Thanks denmat. saltstack/salt-bootstrap#455 * Fix missing Debian init script. saltstack/salt-bootstrap#607 saltstack#25270 and saltstack#25456 * Fix SmartOS etc path. Thanks Bret Fisher. saltstack/salt-bootstrap#624 * Fix possible unbound variable in Gentoo. saltstack/salt-bootstrap#625 * Properly detect the git binary in SmartOS. saltstack/salt-bootstrap#611
s0undt3ch
added a commit
to s0undt3ch/salt
that referenced
this issue
Jul 17, 2015
* Make sure setuptools is installed before using it. saltstack/salt-bootstrap#598. * `systemd` is only fully supported from 15.04 onwards. saltstack/salt-bootstrap#602 * Fix debian mirrors issue. Thanks Wolodja Wentland(babilen). saltstack/salt-bootstrap#606 * Fix python-jinja2 repo move on RHEL6. Thanks lomeroe. saltstack/salt-bootstrap#621 * Allow skipping services. Thanks denmat. saltstack/salt-bootstrap#455 * Fix missing Debian init script. saltstack/salt-bootstrap#607 saltstack#25270 and saltstack#25456 * Fix SmartOS etc path. Thanks Bret Fisher. saltstack/salt-bootstrap#624 * Fix possible unbound variable in Gentoo. saltstack/salt-bootstrap#625 * Properly detect the git binary in SmartOS. saltstack/salt-bootstrap#611
This was referenced Jul 17, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The bootstrap script currently runs into the following error when installing salt on Debian 7 in Vagrant:
This happens when passing
-P
to enable pip installs, which was necessary to be able to install a, yet unpacked, python-requests version. It is, apparently, not really necessary to install that particular version (cf. 7fc5adf) which was introduced earlier in 1d09eae to "Make sure that a recent enough requests package is installed in Debian/Ubuntu".Luckily one doesn't actually have to pass
-P
these days anymore, so that an installation is still possible. I'd recommend fixing the script in such a way that python-setuptools is installed before one tries to useeasy_install
. That being said: Just because pip doesn't work as expected on Squeeze, doesn't necessarily mean that one should continue usingeasy_install
on Wheezy, Jessie or later releases.The text was updated successfully, but these errors were encountered: