Skip to content
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

Handle Homebrew renaming `mobile-shell` to `mosh` #724

Merged
merged 1 commit into from Sep 30, 2017
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Handle Homebrew renaming `mobile-shell` to `mosh`

Homebrew left in an alias for `mobile-shell` so the `mosh` package
actually installs correctly, but Salt's pkg.installed state then tries
to verify the installation by checking the installed packages.
That list only shows `mosh` and not the `mobile-shell` alias,
causing the state the fail.

Update to the new name, which is also consistent with everyone else.
  • Loading branch information
aneeshusa committed Sep 29, 2017
commit db0781efcf20d7473c1ce451fea6e33b03c9752e
@@ -5,11 +5,9 @@ admin-packages:
pkg.installed:
- pkgs:
- tmux
{% if grains['os'] != 'MacOS' %}
- mosh
{% if grains['os'] != 'MacOS' %}
- screen # Installed by default on OS X
{% else %}
- mobile-shell
{% endif %}
{% if grains['os'] != 'MacOS' and grains.get('virtual_subtype', '') != 'Docker' %}
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.