* Getting environment variables and passwords from Vault (not tested yet) * Vault configuration to config (not tested yet) * Ability to run scripts from file on local machine on the remote host * Ability to get ouput in the notification of a list for individual commands or all commands * Make SSH connections close after all commands have been run; reuse previous connections if needed
		
			
				
	
	
		
			179 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			179 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
 | 
						|
    {{- $showvisitedlinks := .Site.Params.showVisitedLinks }}
 | 
						|
    {{- $format := partial "get-format.hugo" . }}
 | 
						|
    {{- $outputFormat := partial "output-format.hugo" (dict "page" . "format" $format) }}
 | 
						|
    {{- $basename := "index" }}
 | 
						|
    {{- if ne $outputFormat "html" }}
 | 
						|
      {{- $basename = partial "BaseName.hugo" $format.RelPermalink }}
 | 
						|
    {{- end }}
 | 
						|
    <aside id="sidebar" class="default-animation{{ if $showvisitedlinks }} showVisitedLinks{{ end }}">
 | 
						|
      {{- $currentNode := . }}
 | 
						|
      <div id="header-wrapper" class="default-animation">
 | 
						|
        <div id="header" class="default-animation">
 | 
						|
{{ partial "logo.html" . }}
 | 
						|
        </div>
 | 
						|
        {{- if not .Site.Params.disableSearch }}
 | 
						|
{{ partial "search.html" . }}
 | 
						|
        {{- end }}
 | 
						|
      </div>
 | 
						|
      {{- if not .Site.Params.disableLandingPageButton }}
 | 
						|
        {{- if (ne .Site.Params.landingPageURL nil) }}
 | 
						|
          {{- warnf "%q: UNSUPPORTED usage of 'landingPageURL' config parameter found, remove it and optionally overwrite the `logo.html` partial to provide a link if it should not point to the project's home page; see http://localhost:1313/basics/migration/#420-2022-06-23" .File.Path }}
 | 
						|
        {{- end }}
 | 
						|
      <div id="homelinks" class="default-animation">
 | 
						|
        <ul>
 | 
						|
          <li><a class="padding" href="{{ partial "relLangPrettyUglyURL.hugo" (dict "to" .Site.Home) }}">{{ .Site.Params.landingPageName | default `<i class="fas fa-home"></i> Home` | safeHTML }}</a></li>
 | 
						|
        </ul>
 | 
						|
      </div>
 | 
						|
      {{- end }}
 | 
						|
      <div id="content-wrapper" class="highlightable">
 | 
						|
        <ul class="topics enlarge morespace{{ if .Site.Params.collapsibleMenu }} collapsible-menu{{ end }}">
 | 
						|
          {{- $defaultOrdersectionsby := .Site.Params.ordersectionsby | default "weight" }}
 | 
						|
          {{- $currentOrdersectionsby := .Site.Home.Params.ordersectionsby | default $defaultOrdersectionsby }}
 | 
						|
          {{- $defaultAlwaysopen := .Site.Params.alwaysopen | default false }}
 | 
						|
          {{- if eq $currentOrdersectionsby "title" }}
 | 
						|
            {{- range .Site.Home.Pages.ByTitle }}
 | 
						|
              {{- template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" $defaultAlwaysopen }}
 | 
						|
            {{- end }}
 | 
						|
          {{- else }}
 | 
						|
            {{- range .Site.Home.Pages.ByWeight }}
 | 
						|
              {{- template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" $defaultAlwaysopen }}
 | 
						|
            {{- end }}
 | 
						|
          {{- end }}
 | 
						|
        </ul>
 | 
						|
        {{- $page := . }}
 | 
						|
        {{- $disableShortcutsTitle := .Site.Params.DisableShortcutsTitle }}
 | 
						|
        {{- with .Site.Menus.shortcuts }}
 | 
						|
        <div id="shortcuts">
 | 
						|
          <div class="nav-title padding">{{ if not $disableShortcutsTitle }}{{ T "Shortcuts-Title" }}{{ end }}</div>
 | 
						|
          <ul class="space">
 | 
						|
            {{- range sort . "Weight" }}
 | 
						|
              {{- $shortcut := . }}
 | 
						|
              {{- with $page.Site.GetPage (printf "%s" $shortcut.URL ) }}
 | 
						|
                {{- $to := . }}
 | 
						|
            <li>{{ $shortcut.Pre }}<a class="padding" href="{{ partial "relLangPrettyUglyURL.hugo" (dict "to" $to) }}">{{ safeHTML $shortcut.Name }}</a>{{ $shortcut.Post }}</li>
 | 
						|
              {{- else }}
 | 
						|
            <li>{{ $shortcut.Pre }}<a class="padding" href="{{ $shortcut.URL | relLangURL }}">{{ safeHTML $shortcut.Name }}</a>{{ $shortcut.Post }}</li>
 | 
						|
              {{- end }}
 | 
						|
            {{- end }}
 | 
						|
          </ul>
 | 
						|
        </div>
 | 
						|
        {{- end }}
 | 
						|
        {{- $siteLanguages := .Site.Languages }}
 | 
						|
        {{- $showlangswitch := and .Site.IsMultiLingual (not .Site.Params.disableLanguageSwitchingButton) (gt (int (len $siteLanguages)) 1) }}
 | 
						|
        {{- $themevariants := slice | append (.Site.Params.themeVariant | default "auto" ) }}
 | 
						|
        {{- $showvariantswitch := gt (int (len $themevariants)) 1 }}
 | 
						|
        {{- $footer := partial "menu-footer.html" . }}
 | 
						|
        {{- $showfooter := not (eq 0 (int (len ($footer | plainify)))) }}
 | 
						|
        <div class="padding footermargin footerLangSwitch footerVariantSwitch footerVisitedLinks footerFooter{{if $showlangswitch}} showLangSwitch{{end}}{{if $showvariantswitch}} showVariantSwitch{{end}}{{if $showvisitedlinks}} showVisitedLinks{{end}}{{if $showfooter}} showFooter{{end}}"></div>
 | 
						|
        <hr class="padding default-animation footerLangSwitch footerVariantSwitch footerVisitedLinks footerFooter{{if $showlangswitch}} showLangSwitch{{end}}{{if $showvariantswitch}} showVariantSwitch{{end}}{{if $showvisitedlinks}} showVisitedLinks{{end}}{{if $showfooter}} showFooter{{end}}">
 | 
						|
        <div id="prefooter" class="footerLangSwitch footerVariantSwitch footerVisitedLinks{{if $showlangswitch}} showLangSwitch{{end}}{{if $showvariantswitch}} showVariantSwitch{{end}}{{if $showvisitedlinks}} showVisitedLinks{{end}}">
 | 
						|
          <ul>
 | 
						|
            <li id="select-language-container" class="footerLangSwitch{{if $showlangswitch}} showLangSwitch{{end}}">
 | 
						|
              <div class="padding select-container">
 | 
						|
                <i class="fas fa-language fa-fw"></i>
 | 
						|
                <span> </span>
 | 
						|
                <div class="select-style">
 | 
						|
                  <label class="a11y-only" for="select-language">{{ T "Language" }}</label>
 | 
						|
                  <select id="select-language" onchange="location = baseUri + this.value;">
 | 
						|
                    {{- $page := .Page }}
 | 
						|
                    {{- $pageLang := .Page.Lang }}
 | 
						|
                    {{- range .Page.AllTranslations }}
 | 
						|
                      {{- $translation := . }}
 | 
						|
                      {{- range $siteLanguages }}
 | 
						|
                        {{- if eq $translation.Lang .Lang }}
 | 
						|
                          {{- if eq $pageLang .Lang }}
 | 
						|
                    <option lang="{{ $translation.Lang }}" id="{{ $translation.Lang }}" value="{{ partial "relLangPrettyUglyURL.hugo" (dict "to" $translation "basename" $basename) }}" selected>{{ .LanguageName }}</option>
 | 
						|
                          {{- else }}
 | 
						|
                    <option lang="{{ $translation.Lang }}" id="{{ $translation.Lang }}" value="{{ partial "relLangPrettyUglyURL.hugo" (dict "to" $translation "basename" $basename) }}">{{ .LanguageName }}</option>
 | 
						|
                          {{- end }}
 | 
						|
                        {{- end }}
 | 
						|
                      {{- end }}
 | 
						|
                    {{- end }}
 | 
						|
                  </select>
 | 
						|
                </div>
 | 
						|
                <div class="select-clear"></div>
 | 
						|
              </div>
 | 
						|
            </li>
 | 
						|
            <li id="select-variant-container" class="footerVariantSwitch{{if $showvariantswitch}} showVariantSwitch{{end}}">
 | 
						|
              <div class="padding select-container">
 | 
						|
                <i class="fas fa-paint-brush fa-fw"></i>
 | 
						|
                <span> </span>
 | 
						|
                <div class="select-style">
 | 
						|
                  <label class="a11y-only" for="select-variant">{{ T "Theme" }}</label>
 | 
						|
                  <select id="select-variant" onchange="window.variants && variants.changeVariant( this.value );">
 | 
						|
                    {{- $firstvariant := true }}
 | 
						|
                    {{- range $themevariants }}
 | 
						|
                      {{- $themevariant := . }}
 | 
						|
                      {{- $variantname := replaceRE "[-_]+" " " $themevariant }}
 | 
						|
                      {{- if $firstvariant }}
 | 
						|
                        {{- $firstvariant = false }}
 | 
						|
                    <option id="{{ $themevariant }}" value="{{ $themevariant }}" selected>{{ $variantname | title }}</option>
 | 
						|
                      {{- else }}
 | 
						|
                    <option id="{{ $themevariant }}" value="{{ $themevariant }}">{{ $variantname | title }}</option>
 | 
						|
                      {{- end }}
 | 
						|
                    {{- end }}
 | 
						|
                  </select>
 | 
						|
                </div>
 | 
						|
                <div class="select-clear"></div>
 | 
						|
              </div>
 | 
						|
              <script>window.variants && variants.markSelectedVariant();</script>
 | 
						|
            </li>
 | 
						|
            <li class="footerVisitedLinks{{if $showvisitedlinks}} showVisitedLinks{{end}}"><button class="padding" onclick="clearHistory();"><i class="fas fa-history fa-fw"></i><span> </span>{{ T "Clear-History" }}</button></li>
 | 
						|
          </ul>
 | 
						|
        </div>
 | 
						|
        <div id="footer" class="footerFooter{{if $showfooter}} showFooter{{end}}">
 | 
						|
          {{- $footer }}
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
    </aside>
 | 
						|
    {{- define "section-tree-nav" }}
 | 
						|
      {{- $currentNode := .currentnode }}
 | 
						|
      {{- $showvisitedlinks := .showvisitedlinks }}
 | 
						|
      {{- $alwaysopen := .alwaysopen }}
 | 
						|
      {{- $currentFileRelPermalink := .currentnode.RelPermalink }}
 | 
						|
      {{- with .sect }}
 | 
						|
        {{- $isSelf := eq .RelPermalink $currentFileRelPermalink }}
 | 
						|
        {{- $isAncestor := and (not $isSelf) (.IsAncestor $currentNode) }}
 | 
						|
        {{- $isActive := $isSelf }}
 | 
						|
        {{- $pages := .Pages }}
 | 
						|
        {{- $relearnIsHiddenFrom := index ($currentNode.Scratch.Get "relearnIsHiddenFrom") .RelPermalink }}
 | 
						|
        {{- $hidden := and $relearnIsHiddenFrom (not $.showhidden) (not $isSelf) (not $isAncestor) }}
 | 
						|
        {{- if $hidden }}
 | 
						|
        {{- else }}
 | 
						|
          {{- $numberOfVisibleChildren := 0 }}
 | 
						|
          {{- range $pages }}
 | 
						|
            {{- $isSelfSub := eq .RelPermalink $currentFileRelPermalink }}
 | 
						|
            {{- $isAncestorSub := and (not $isSelf) (.IsAncestor $currentNode) }}
 | 
						|
            {{- $relearnIsSubHiddenFrom := index ($currentNode.Scratch.Get "relearnIsHiddenFrom") .RelPermalink }}
 | 
						|
            {{- $subHidden := and $relearnIsSubHiddenFrom (not $.showhidden) (not $isSelfSub) (not $isAncestorSub) }}
 | 
						|
            {{- $numberOfVisibleChildren = add $numberOfVisibleChildren (int (not $subHidden)) }}
 | 
						|
          {{- end }}
 | 
						|
          {{- safeHTML .Params.head }}
 | 
						|
          {{- if $numberOfVisibleChildren }}
 | 
						|
            {{- $defaultOrdersectionsby := .Site.Params.ordersectionsby | default "weight" }}
 | 
						|
            {{- $currentOrdersectionsby := .Params.ordersectionsby | default $defaultOrdersectionsby }}
 | 
						|
            {{- $currentAlwaysopen := .Params.alwaysopen | default $alwaysopen }}
 | 
						|
            {{- $pageHash := md5 .Page }}
 | 
						|
            {{- $isOpen := or $currentAlwaysopen $isSelf $isAncestor }}
 | 
						|
          <li data-nav-id="{{ partial "relLangPrettyUglyURL.hugo" (dict "to" .) }}" class="{{if $isActive }}active {{end}}{{if (or $isSelf $isAncestor) }}parent {{end}}{{if $currentAlwaysopen}}alwaysopen{{end}}">{{ if .Site.Params.collapsibleMenu }}<input type="checkbox" id="section-{{ $pageHash }}" aria-controls="subsections-{{ $pageHash }}"{{ if $isOpen }} checked{{ end }}><label for="section-{{ $pageHash }}"><i class="fas fa-chevron-down"></i><i class="fas fa-chevron-right"></i><span class="a11y-only">{{ T "Submenu" ( or .Params.menuTitle .LinkTitle .Title ) }}</span></label>{{ end }}<a class="padding" href="{{ partial "relLangPrettyUglyURL.hugo" (dict "to" .) }}">
 | 
						|
            {{- partial "menu-pre.html" . }}{{ or .Params.menuTitle .LinkTitle .Title }}{{ partial "menu-post.html" . }}
 | 
						|
            {{- if $showvisitedlinks }}<i class="fas fa-check read-icon"></i>{{ end }}</a><ul id="subsections-{{ $pageHash }}" class="morespace{{ if .Site.Params.collapsibleMenu }} collapsible-menu{{ end }}">
 | 
						|
            {{- $defaultAlwaysopen := .Site.Params.alwaysopen | default true }}
 | 
						|
            {{- if eq $currentOrdersectionsby "title" }}
 | 
						|
              {{- range $pages.ByTitle }}
 | 
						|
                {{- template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" $defaultAlwaysopen }}
 | 
						|
              {{- end }}
 | 
						|
            {{- else }}
 | 
						|
              {{- range $pages.ByWeight }}
 | 
						|
                {{- template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" $defaultAlwaysopen }}
 | 
						|
              {{- end }}
 | 
						|
            {{- end }}</ul></li>
 | 
						|
          {{- else }}
 | 
						|
          <li data-nav-id="{{ partial "relLangPrettyUglyURL.hugo" (dict "to" .) }}" class="{{if $isActive }}active{{end}}"><a class="padding" href="{{ partial "relLangPrettyUglyURL.hugo" (dict "to" .) }}">
 | 
						|
              {{- partial "menu-pre.html" . }}{{ or .Params.menuTitle .LinkTitle .Title }}{{ partial "menu-post.html" . }}
 | 
						|
              {{- if $showvisitedlinks }}<i class="fas fa-check read-icon"></i>{{ end }}</a></li>
 | 
						|
          {{- end }}
 | 
						|
        {{- end }}
 | 
						|
      {{- end }}
 | 
						|
    {{- end }} |