Skip to content

Instantly share code, notes, and snippets.

@warmwaffles
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save warmwaffles/8805645 to your computer and use it in GitHub Desktop.
Save warmwaffles/8805645 to your computer and use it in GitHub Desktop.
Failed salt-bootstrap arch
Bootstrapping Salt... (this may take a while)
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!
/tmp/bootstrap_salt.sh -c /tmp
Stdout from the command:
* INFO: /tmp/bootstrap_salt.sh -- Version 1.5.2
* INFO: System Information:
* INFO: CPU: GenuineIntel
* INFO: CPU Arch: x86_64
* INFO: OS Name: Linux
* INFO: OS Version: 3.12.6-1-ARCH
* INFO: Distribution: Arch Linux
* INFO: Installing minion
* INFO: Found function install_arch_linux_stable_deps
* INFO: Found function config_salt
* INFO: Found function install_arch_linux_stable
* INFO: Found function install_arch_linux_post
* INFO: Found function install_arch_linux_restart_daemons
* INFO: Found function daemons_running
* INFO: Running install_arch_linux_stable_deps()
* INFO: Running config_salt()
* INFO: Running install_arch_linux_stable()
:: Synchronizing package databases...
core is up to date
extra is up to date
community is up to date
downloading salt.db...
warning: pacman-4.1.2-5 is up to date -- reinstalling
resolving dependencies...
looking for inter-conflicts...
Packages (1): pacman-4.1.2-5
Total Download Size: 0.56 MiB
Total Installed Size: 3.70 MiB
Net Upgrade Size: 0.00 MiB
:: Proceed with installation? [Y/n]
:: Retrieving packages ...
downloading pacman-4.1.2-5-x86_64.pkg.tar.xz...
checking keyring...
checking package integrity...
loading package files...
checking for file conflicts...
checking available disk space...
reinstalling pacman...
:: Synchronizing package databases...
core is up to date
extra is up to date
community is up to date
salt is up to date
:: Starting full system upgrade...
resolving dependencies...
warning: cannot resolve "python2-ply", a dependency of "salt"
warning: cannot resolve "python2-cffi", a dependency of "salt"
warning: cannot resolve "python2-pycparser", a dependency of "salt"
:: The following package cannot be upgraded due to unresolvable dependencies:
salt
:: Do you want to skip the above package for this upgrade? [y/N] error: failed to prepare transaction (could not satisfy dependencies)
:: salt: requires python2-ply
:: salt: requires python2-cffi
:: salt: requires python2-pycparser
* ERROR: Failed to run install_arch_linux_stable()!!!
Stderr from the command:
Vagrant.configure('2') do |config|
config.vm.box = 'arch64' # http://vagrant.srijn.net/archlinux-x64-2014-01-07.box
config.vm.synced_folder('srv/', '/srv/')
inline = [
'pacman -Syu --noconfirm'
].join(';')
config.vm.provision(:shell, inline: inline)
config.vm.provision(:salt) do |salt|
salt.minion_config = 'srv/minion'
salt.run_highstate = true
end
end
Vagrant::Config.run do |config|
config.vm.forward_port(3000, 3000)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment