Skip to content

Commit 7bcc8bf

Browse files
committed
Ignore firmware_lock configuration file so that it can be edited without affecting git.
1 parent 19f4d6f commit 7bcc8bf

File tree

2 files changed

+47
-44
lines changed

2 files changed

+47
-44
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22
.DS_Store
33
backup_configs/.DS_Store
44
backup_configs/defaults/.DS_Store
5+
6+
# Ignore firmware_lock configuration file
7+
firmware_lock/config.yaml
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
1-
# Configuration file for script "firmware_lock.py"
2-
# You can find the latest version of the script and an example configuration file here:
3-
# https://github.com/meraki/automation-scripts/tree/master/firmware_lock
4-
5-
general:
6-
# Your Meraki Dashboard API key. You can find more information about API keys here:
7-
# https://documentation.meraki.com/General_Administration/Other_Topics/Cisco_Meraki_Dashboard_API
8-
apiKey: 1234
9-
10-
# Set applyToAllOrganizations to true to apply firmware lock settings to all organizations your API key can access
11-
# If set to true, organizationName will be ignored
12-
applyToAllOrganizations: false
13-
14-
# If not using applyToAllOrganizations: true, edit the line below to match the name of the organization you want to lock
15-
organizationName: Big Industries Inc
16-
17-
# Set runOnce to true to run the script once and exit (suitable for use in a cron job). If set to true, scanIntervalHours
18-
# will be ignored
19-
runOnce: false
20-
scanIntervalHours: 6
21-
22-
lockTrain:
23-
# Use the options below to lock a product type to a specific release train, or leave a value blank to have it unlocked.
24-
# Valid values:
25-
# stable
26-
# beta
27-
# release candidate
28-
# If both a lockTrain and a lockVersion configuration is applied for a product type, lockVersion takes precedence
29-
MG:
30-
MR:
31-
MS:
32-
MT:
33-
MV:
34-
MX: stable
35-
36-
lockVersion:
37-
# Use the options below to lock a product type to a specific release version, or leave a value blank to have it unlocked.
38-
# If both a lockTrain and a lockVersion configuration is applied for a product type, lockVersion takes precedence
39-
MG:
40-
MR:
41-
MS:
42-
MT:
43-
MV:
44-
MX: 15.44
1+
# Configuration file for script "firmware_lock.py"
2+
# You can find the latest version of the script and an example configuration file here:
3+
# https://github.com/meraki/automation-scripts/tree/master/firmware_lock
4+
5+
general:
6+
# Your Meraki Dashboard API key. You can find more information about API keys here:
7+
# https://documentation.meraki.com/General_Administration/Other_Topics/Cisco_Meraki_Dashboard_API
8+
apiKey: 1234
9+
10+
# Set applyToAllOrganizations to true to apply firmware lock settings to all organizations your API key can access
11+
# If set to true, organizationName will be ignored
12+
applyToAllOrganizations: false
13+
14+
# If not using applyToAllOrganizations: true, edit the line below to match the name of the organization you want to lock
15+
organizationName: Big Industries Inc
16+
17+
# Set runOnce to true to run the script once and exit (suitable for use in a cron job). If set to true, scanIntervalHours
18+
# will be ignored
19+
runOnce: false
20+
scanIntervalHours: 6
21+
22+
lockTrain:
23+
# Use the options below to lock a product type to a specific release train, or leave a value blank to have it unlocked.
24+
# Valid values:
25+
# stable
26+
# beta
27+
# release candidate
28+
# If both a lockTrain and a lockVersion configuration is applied for a product type, lockVersion takes precedence
29+
MG:
30+
MR:
31+
MS:
32+
MT:
33+
MV:
34+
MX: stable
35+
36+
lockVersion:
37+
# Use the options below to lock a product type to a specific release version, or leave a value blank to have it unlocked.
38+
# If both a lockTrain and a lockVersion configuration is applied for a product type, lockVersion takes precedence
39+
MG:
40+
MR:
41+
MS:
42+
MT:
43+
MV:
44+
MX: 15.44

0 commit comments

Comments
 (0)