Added licenses to each script.
diff --git a/dashboard/scripts/backup.sh b/dashboard/scripts/backup.sh
index 9b2b713..c33fe0e 100644
--- a/dashboard/scripts/backup.sh
+++ b/dashboard/scripts/backup.sh
@@ -1,4 +1,21 @@
+#
+#   Copyright 2014 The Charles Stark Draper Laboratory
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+#
+
 #!/bin/bash
+
 INDEXNAME="xdata_v3, xdata_v2"
 BACKUPDIR="/mnt/es-backups/"
 
diff --git a/dashboard/scripts/install.sh b/dashboard/scripts/install.sh
index b46bbaf..fb773eb 100644
--- a/dashboard/scripts/install.sh
+++ b/dashboard/scripts/install.sh
@@ -1,5 +1,5 @@
 #
-#   Copyright 2016 The Charles Stark Draper Laboratory
+#   Copyright 2014 The Charles Stark Draper Laboratory
 #
 #   Licensed under the Apache License, Version 2.0 (the "License");
 #   you may not use this file except in compliance with the License.
diff --git a/dashboard/scripts/restart.sh b/dashboard/scripts/restart.sh
index 345a42c..8277f12 100644
--- a/dashboard/scripts/restart.sh
+++ b/dashboard/scripts/restart.sh
@@ -13,8 +13,11 @@
 #   See the License for the specific language governing permissions and
 #   limitations under the License.
 #
+
 #!/bin/bash
+
 sudo service elasticsearch restart
+
 # For Logstash and ElasticSearch, it takes a while before the
 # network port is established by the process. Here we wait until
 # the port is open.
diff --git a/dashboard/scripts/restore.sh b/dashboard/scripts/restore.sh
index dd06f39..d7afdee 100644
--- a/dashboard/scripts/restore.sh
+++ b/dashboard/scripts/restore.sh
@@ -1,3 +1,20 @@
+#
+#   Copyright 2014 The Charles Stark Draper Laboratory
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+#
+
 #!/bin/bash
+
 # Restore snapshot
 curl -XPUT 'http://localhost:9200/_snapshot/xdata_backup/snapshot_restore'
\ No newline at end of file