Last active
June 16, 2020 09:48
-
-
Save dploeger/7116408c9ea7155f4ed22cec8514ea4f to your computer and use it in GitHub Desktop.
Tampermonkey script to automatically switch from hosts view to dashboard in Foreman
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name foremanswitchtodashboard | |
// @namespace https://kps.com/ | |
// @version 0.1 | |
// @description Switch from Foreman hosts view to dashboard | |
// @author Dennis Ploeger <[email protected]> | |
// @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