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
### Hard Refresh | |
## End Service (If it is running) | |
sudo systemctl stop bluetooth.service | |
## Removes Hardware Emulation | |
sudo systemctl unmask bluetooth.service | |
## Start Service | |
sudo systemctl start bluetooth.service |
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
#!/usr/bin/env python3 | |
import os | |
from pprint import pprint | |
# clear the screen on script start | |
os.system('cls' if os.name == 'nt' else 'clear') | |
# SCRIPT EXPLANATION: | |
# |
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
resource "terraform_remote_state" "region" { | |
backend = "s3" | |
config { | |
bucket = "foo" | |
key = "bar" | |
region = "us-east-1" | |
} | |
} | |
module "sub1_zone" { |