Headers of files unified.
This commit is contained in:
Tomas Abad 2023-05-31 18:14:19 +02:00
parent 9914cf5e18
commit 78cac6a07c
18 changed files with 53 additions and 35 deletions

View file

@ -1,7 +1,10 @@
:global Filename "ch10-04-bad-script.rsc" # filename: ch10-04-bad-script.rsc
#
# A simple script to perform a series of tests on a # A simple script to perform a series of tests on a
# list of web sites. # list of web sites.
:global Filename "ch10-04-bad-script.rsc"
# function to log error message # function to log error message
:global LogMessageFunc do={ :global LogMessageFunc do={
:global Filename; :global Filename;

View file

@ -1,7 +1,7 @@
# ch10-05-error-check.rsc # filename: ch10-05-error-check.rsc
:local WebSites { "badname1234.com"; "google.com"}; :local WebSites { "badname1234.com"; "google.com"};
:foreach SiteName in=$WebSites do={ :foreach SiteName in=$WebSites do={
:local SiteIpAddress [:resolve $SiteName]; :local SiteIpAddress [:resolve $SiteName];
:put "Site IP for $SiteName is $SiteIpAddress"; :put "Site IP for $SiteName is $SiteIpAddress";
} }

View file

@ -1,4 +1,4 @@
# ch10-06-error-check.rsc # filename: ch10-06-error-check.rsc
:local WebSites { "badname1234.com"; "google.com"}; :local WebSites { "badname1234.com"; "google.com"};
:foreach SiteName in=$WebSites do={ :foreach SiteName in=$WebSites do={
:do { :do {
@ -7,4 +7,4 @@
} on-error={ } on-error={
:put "Name lookup failed for $SiteName"; :put "Name lookup failed for $SiteName";
} }
} }

View file

@ -1,6 +1,9 @@
# filename: ch10-07-bad-script.rsc
#
# A simple script to perform a series of tests on a
# list of web sites.
:global Filename "ch10-07-bad-script.rsc" :global Filename "ch10-07-bad-script.rsc"
# A script to perform a series of tests on a
# list of web sites.
# function to log error messages # function to log error messages
:global LogMessageFunc do={ :global LogMessageFunc do={

View file

@ -1,7 +1,10 @@
:global Filename "ch10-08-bad-script.rsc" # filename: ch10-08-bad-script.rsc
# A script to perform a series of tests on a #
# A simple script to perform a series of tests on a
# list of web sites. # list of web sites.
:global Filename "ch10-08-bad-script.rsc"
# set DEBUG to "true" for script debugging output, # set DEBUG to "true" for script debugging output,
# "false" for normal operation # "false" for normal operation
:global DEBUG false; :global DEBUG false;

View file

@ -1,7 +1,7 @@
# ch10-09-simple-pause.rsc # filename: ch10-09-simple-pause.rsc
# A simple script that includes a 2 second pause # A simple script that includes a 2 second pause
:put "Hello we're going to pause now..."; :put "Hello we're going to pause now...";
:delay 2; :delay 2;
:put "Pause complete. We're all done now!"; :put "Pause complete. We're all done now!";

View file

@ -1,4 +1,4 @@
# ch10-10-add-remove-vlans.rsc # filename: ch10-10-add-remove-vlans.rsc
# a script to add and remove 50 VLANs to/fromon-error={ # a script to add and remove 50 VLANs to/fromon-error={
# a Mikrotik router interface # a Mikrotik router interface
@ -24,4 +24,4 @@
# add VLAN to LAN interface # add VLAN to LAN interface
:local VlanName "VLAN$VlanId"; :local VlanName "VLAN$VlanId";
/interface vlan remove "$VlanName"; /interface vlan remove "$VlanName";
} }

View file

@ -1,4 +1,4 @@
# ch10-11-add-remove-vlans.rsc # filename: ch10-11-add-remove-vlans.rsc
# a script to add and remove 50 VLANs to/from # a script to add and remove 50 VLANs to/from
# a Mikrotik router interface # a Mikrotik router interface
@ -20,4 +20,4 @@
# add VLAN to LAN interface # add VLAN to LAN interface
:local VlanName "VLAN$VlanId"; :local VlanName "VLAN$VlanId";
/interface vlan remove "$VlanName"; /interface vlan remove "$VlanName";
} }

View file

@ -1,4 +1,4 @@
# ch10-12-add-remove-vlans.rsc # filename: ch10-12-add-remove-vlans.rsc
# a script to add and remove 50 VLANs to/from # a script to add and remove 50 VLANs to/from
# a Mikrotik router interface # a Mikrotik router interface
@ -28,4 +28,4 @@
} }
}]; }];
:put "Remove loop time: $RemoveLoopTime"; :put "Remove loop time: $RemoveLoopTime";

View file

@ -1,6 +1,9 @@
:global Filename "ch10-04-bad-script.rsc" # filename: ch10-04-bad-script.rsc
#
# A simple script to perform a series of tests on a # A simple script to perform a series of tests on a
# list of web sites. # list of web sites.
:global Filename "ch10-04-bad-script.rsc"
# function to log error message # function to log error message
:global LogMessageFunc do={ :global LogMessageFunc do={

View file

@ -1,7 +1,7 @@
# ch10-05-error-check.rsc # filename: ch10-05-error-check.rsc
:local WebSites { "badname1234.com"; "google.com"}; :local WebSites { "badname1234.com"; "google.com"};
:foreach SiteName in=$WebSites do={ :foreach SiteName in=$WebSites do={
:local SiteIpAddress [:resolve $SiteName]; :local SiteIpAddress [:resolve $SiteName];
:put "Site IP for $SiteName is $SiteIpAddress"; :put "Site IP for $SiteName is $SiteIpAddress";
} }

View file

@ -1,4 +1,4 @@
# ch10-06-error-check.rsc # filename: ch10-06-error-check.rsc
:local WebSites { "badname1234.com"; "google.com"}; :local WebSites { "badname1234.com"; "google.com"};
:foreach SiteName in=$WebSites do={ :foreach SiteName in=$WebSites do={
:do { :do {
@ -7,4 +7,4 @@
} on-error={ } on-error={
:put "Name lookup failed for $SiteName"; :put "Name lookup failed for $SiteName";
} }
} }

View file

@ -1,6 +1,9 @@
# filename: ch10-07-bad-script.rsc
#
# A simple script to perform a series of tests on a
# list of web sites.
:global Filename "ch10-07-bad-script.rsc" :global Filename "ch10-07-bad-script.rsc"
# A script to perform a series of tests on a
# list of web sites.
# function to log error messages # function to log error messages
:global LogMessageFunc do={ :global LogMessageFunc do={

View file

@ -1,7 +1,10 @@
:global Filename "ch10-08-bad-script.rsc" # filename: ch10-08-bad-script.rsc
# A script to perform a series of tests on a #
# A simple script to perform a series of tests on a
# list of web sites. # list of web sites.
:global Filename "ch10-08-bad-script.rsc"
# set DEBUG to "true" for script debugging output, # set DEBUG to "true" for script debugging output,
# "false" for normal operation # "false" for normal operation
:global DEBUG false; :global DEBUG false;

View file

@ -1,7 +1,7 @@
# ch10-09-simple-pause.rsc # filename: ch10-09-simple-pause.rsc
# A simple script that includes a 2 second pause # A simple script that includes a 2 second pause
:put "Hello we're going to pause now..."; :put "Hello we're going to pause now...";
:delay 2; :delay 2;
:put "Pause complete. We're all done now!"; :put "Pause complete. We're all done now!";

View file

@ -1,4 +1,4 @@
# ch10-10-add-remove-vlans.rsc # filename: ch10-10-add-remove-vlans.rsc
# a script to add and remove 50 VLANs to/from # a script to add and remove 50 VLANs to/from
# a Mikrotik router interface # a Mikrotik router interface
@ -24,4 +24,4 @@
# add VLAN to LAN interface # add VLAN to LAN interface
:local VlanName "VLAN$VlanId"; :local VlanName "VLAN$VlanId";
/interface/vlan remove "$VlanName"; /interface/vlan remove "$VlanName";
} }

View file

@ -1,4 +1,4 @@
# ch10-11-add-remove-vlans.rsc # filename: ch10-11-add-remove-vlans.rsc
# a script to add and remove 50 VLANs to/from # a script to add and remove 50 VLANs to/from
# a Mikrotik router interface # a Mikrotik router interface
@ -20,4 +20,4 @@
# add VLAN to LAN interface # add VLAN to LAN interface
:local VlanName "VLAN$VlanId"; :local VlanName "VLAN$VlanId";
/interface vlan remove "$VlanName"; /interface vlan remove "$VlanName";
} }

View file

@ -1,4 +1,4 @@
# ch10-12-add-remove-vlans.rsc # filename: ch10-12-add-remove-vlans.rsc
# a script to add and remove 50 VLANs to/from # a script to add and remove 50 VLANs to/from
# a Mikrotik router interface # a Mikrotik router interface
@ -28,4 +28,4 @@
} }
}]; }];
:put "Remove loop time: $RemoveLoopTime"; :put "Remove loop time: $RemoveLoopTime";