Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dploeger/7116408c9ea7155f4ed22cec8514ea4f to your computer and use it in GitHub Desktop.
Save dploeger/7116408c9ea7155f4ed22cec8514ea4f to your computer and use it in GitHub Desktop.
Tampermonkey script to automatically switch from hosts view to dashboard in Foreman
// ==UserScript==
// @name foremanswitchtodashboard
// @namespace https://kps.com/
// @version 0.1
// @description Switch from Foreman hosts view to dashboard
// @author Dennis Ploeger <dennis.ploeger@kps.com>
// @grant none
// @downloadUrl https://gist.github.com/dploeger/7116408c9ea7155f4ed22cec8514ea4f/raw
// @updateUrl https://gist.github.com/dploeger/7116408c9ea7155f4ed22cec8514ea4f/raw
// ==/UserScript==
(function() {
'use strict';
window.location="https://config-mgmt.ops.kps.com/"
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment