This package includes a widget for displaying comment style text in a dashboard.
- Install into your dashboard with
mix kitto.install --gist ee402159c3c4770ee06f6e12a220cb35
- Create a job to export data with the following format:
$DnsServers = @("208.67.220.220", "208.67.222.222") | |
$Route = Get-NetRoute -DestinationPrefix 0.0.0.0/0 | |
$IfIndex = $Route.ifIndex | |
$DnsAddresses = Get-DnsClientServerAddress -InterfaceIndex $IfIndex -AddressFamily IPv4 | |
$DnsAddresses.ServerAddresses | ForEach-Object { | |
if ($_ -notin $DnsServers) { | |
Write-Host "Fixing DNS Servers" | |
Set-DnsClientServerAddress -InterfaceIndex $IfIndex -ServerAddresses $DnsServers |
Import-Module PSAtera -MinimumVersion 1.4.0 | |
$Tickets = Get-AteraTicketsFiltered -Pending | |
foreach($Ticket in $Tickets) { | |
$ScheduledDate = Get-AteraCustomValue -ObjectType Ticket -ObjectID $Ticket.TicketID -FieldName "Scheduled For" | |
if ($null -eq $ScheduledDate.ValueAsDateTime) { return } | |
if ((Get-Date -Date $ScheduledDate.ValueAsDateTime) -le (Get-Date)) { | |
Set-AteraTicket -TicketID $Ticket.TicketID -TicketStatus "Open" | |
} | |
} |
### | |
# Author: Dave Long <[email protected]> | |
# Created: 2019-07-12 | |
# Last Modified: 2019-07-12 # Create function | |
# | |
# Creates a VPN connection for connecting to an L2TP VPN server | |
### | |
function Add-L2TPVpnConnection { | |
param( |
exports.config = { | |
// See http://brunch.io/#documentation for docs. | |
files: { | |
javascripts: { | |
joinTo: { | |
"js/app.js": /^(web\/static\/js\/frontend)|(node_modules)/, | |
"js/admin.js": /^(web\/static\/js\/admin)|(node_modules)/, | |
"js/ex_admin_common.js": ["web/static/vendor/ex_admin_common.js"], | |
"js/admin_lte2.js": ["web/static/vendor/admin_lte2.js"], | |
"js/jquery.min.js": ["web/static/vendor/jquery.min.js"] |
This package includes a job to pull forecasts from the Forecast.io API and a widget to display the forecast information.
mix kitto.install --gist 229b76b15eae45ee9f5cc1e5d62a40eb
defmodule Uebersample.Router do | |
use Plug.Router | |
plug Ueberauth | |
alias Ueberauth.Strategy.Helpers | |
plug :match | |
plug :dispatch | |
get "/hello" do |
Adds the ability to display lists of issues or a count of issues for filters from JIRA. The plugin is composed of 2 parts:
mix kitto.install --gist e2adb6e2f301672500d4b13e0a9a7de2
--- | |
driver: | |
name: docker | |
provisioner: | |
name: chef_solo | |
platforms: | |
- name: centos-7.2 | |
driver_config: |
defmodule TaskRunner.Repo.Migrations.CreateLocations do | |
use Ecto.Migration | |
def change do | |
create table(:locations) do | |
add :type, :string | |
end | |
end | |
end |