All notable changes to this project will be documented in this file...
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
One more!
| #!/bin/bash | |
| USERNAME="admin" | |
| PASSWORD="pass" | |
| IP_RANGE=(10.10.5.{1..36}) | |
| for IP in "${IP_RANGE[@]}"; do | |
| echo "Enabling IPMI on $IP..." | |
| curl -u "$USERNAME:$PASSWORD" -k --location --request PATCH "https://$IP/redfish/v1/Managers/iDRAC.Embedded.1/NetworkProtocol/" \ |
| #!/bin/bash | |
| IPMI_PASS="pass" | |
| USERNAME="user" | |
| PORT="623" | |
| VERIFY_CA="False" | |
| IP_RANGE=(10.10.5.{1..36}) | |
| OUTPUT_FILE="mac_mapping.json" |
All notable changes to this project will be documented in this file...
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
One more!
| provider "aws" { | |
| region = var.region | |
| } | |
| data "aws_iam_role" "ecr" { | |
| name = "AWSServiceRoleForECRReplication" | |
| } | |
| module "label" { | |
| source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=master" |
| { | |
| "Version": "2012-10-17", | |
| "Statement": [ | |
| { | |
| "Sid": "PublicReadGetObject", | |
| "Effect": "Allow", | |
| "Principal": "*", | |
| "Action": [ | |
| "s3:GetObject" | |
| ], |
| RewriteEngine On | |
| RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR] | |
| RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d | |
| RewriteRule ^ - [L] | |
| RewriteRule ^ /index.html [L] |
| import React, { Component } from 'react'; | |
| import { | |
| Text, | |
| View, | |
| TouchableOpacity | |
| } from 'react-native'; | |
| export default class Nav extends Component { | |
| constructor(props) { | |
| super(props) |
| '.source.js': | |
| 'React Native Component': | |
| 'prefix': 'rnc' | |
| 'body': """ | |
| import React, { Component } from 'react'; | |
| import { | |
| StyleSheet, | |
| Text, | |
| View, |
| import React, { Component } from 'react'; | |
| class Toggle extends Component { | |
| constructor() { | |
| super() | |
| this.state = { | |
| collapsed: true | |
| }; | |
| } |