summaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@fri.uni-lj.si>2019-02-24 22:11:48 +0100
committerTimotej Lazar <timotej.lazar@fri.uni-lj.si>2019-02-24 22:11:48 +0100
commite5e11fe670f357a82c2eca8afe0a14ebc2349b36 (patch)
tree08cfb2907f0a34a871c7ce55bee45fe4f52a5571 /tasks
parent8081a5520a441b43a8a7a73f3a90c7aacfaa8e10 (diff)
License under AGPL3+
Diffstat (limited to 'tasks')
-rw-r--r--tasks/basic_network_gcc/task.py2
-rw-r--r--tasks/copy_rename_100_files/task.py2
-rw-r--r--tasks/copy_rename_20_files_tail_env/solution/solution.py2
-rw-r--r--tasks/copy_rename_20_files_tail_env/task.py2
-rw-r--r--tasks/custom_rdate/rDate.py1
-rw-r--r--tasks/custom_rdate/task.py2
-rw-r--r--tasks/dhcp_dns_predefined_ip/task.py2
-rw-r--r--tasks/edit_find_grep_compile_convert/task.py2
-rw-r--r--tasks/isc_dhcp_live_boot/task.py2
-rw-r--r--tasks/ldap_import/task.py2
-rw-r--r--tasks/ldap_search/task.py2
-rw-r--r--tasks/mock_entrance_exam/task.py2
-rw-r--r--tasks/nat_port_forward/task.py2
-rw-r--r--tasks/nat_vlc/task.py2
-rw-r--r--tasks/nat_vlc/video.py2
-rw-r--r--tasks/network_boot_custom_program/task.py2
-rw-r--r--tasks/openvpn_multiple_hops/task.py2
-rw-r--r--tasks/openvpn_simple_smb/task.py2
-rw-r--r--tasks/openwrt/task.py2
-rw-r--r--tasks/public_ip_ssh/task.py2
-rw-r--r--tasks/public_ssh_motd_http/task.py2
-rw-r--r--tasks/radius_multiple_realms/task.py2
-rw-r--r--tasks/radius_mysql_pam/task.py2
-rw-r--r--tasks/rdate_64bit/task.py2
-rw-r--r--tasks/rename_grep_network/task.py2
-rw-r--r--tasks/set_ip_dhcp_hostname/task.py2
-rw-r--r--tasks/set_ip_static_dhcp/task.py2
-rw-r--r--tasks/set_motd/task.py2
-rw-r--r--tasks/smb_nfs/task.py2
-rw-r--r--tasks/snmp_agent_uptime/task.py2
-rw-r--r--tasks/snmp_alarms_interfaces/task.py2
-rw-r--r--tasks/vlc_stream_rtp/task.py2
32 files changed, 62 insertions, 1 deletions
diff --git a/tasks/basic_network_gcc/task.py b/tasks/basic_network_gcc/task.py
index b23c060..5e90faa 100644
--- a/tasks/basic_network_gcc/task.py
+++ b/tasks/basic_network_gcc/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# TODO:
# - check if everything is filled in (computers, params, preparation)
# - improve scoring
diff --git a/tasks/copy_rename_100_files/task.py b/tasks/copy_rename_100_files/task.py
index 9dcf69a..bbf3d60 100644
--- a/tasks/copy_rename_100_files/task.py
+++ b/tasks/copy_rename_100_files/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# TODO:
# - check if everything is filled in (computers, params, preparation)
# - improve scoring
diff --git a/tasks/copy_rename_20_files_tail_env/solution/solution.py b/tasks/copy_rename_20_files_tail_env/solution/solution.py
index f661c4d..b1a9d14 100644
--- a/tasks/copy_rename_20_files_tail_env/solution/solution.py
+++ b/tasks/copy_rename_20_files_tail_env/solution/solution.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# preimenuj vse datoteke tako, da zamenjaš minuse s podčrtaji
def rename():
import os
diff --git a/tasks/copy_rename_20_files_tail_env/task.py b/tasks/copy_rename_20_files_tail_env/task.py
index ce51c9c..5aa763f 100644
--- a/tasks/copy_rename_20_files_tail_env/task.py
+++ b/tasks/copy_rename_20_files_tail_env/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
instructions = {
diff --git a/tasks/custom_rdate/rDate.py b/tasks/custom_rdate/rDate.py
index 97885b0..48d2819 100644
--- a/tasks/custom_rdate/rDate.py
+++ b/tasks/custom_rdate/rDate.py
@@ -1,4 +1,3 @@
-
#!/usr/bin/env python
#-*- coding utf-8 -*-
diff --git a/tasks/custom_rdate/task.py b/tasks/custom_rdate/task.py
index 4c5ff9f..e8f3d3c 100644
--- a/tasks/custom_rdate/task.py
+++ b/tasks/custom_rdate/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
# TODO: finish this!
diff --git a/tasks/dhcp_dns_predefined_ip/task.py b/tasks/dhcp_dns_predefined_ip/task.py
index 4822c2a..7000bbf 100644
--- a/tasks/dhcp_dns_predefined_ip/task.py
+++ b/tasks/dhcp_dns_predefined_ip/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
instructions = {
diff --git a/tasks/edit_find_grep_compile_convert/task.py b/tasks/edit_find_grep_compile_convert/task.py
index deaac4f..aa61b9d 100644
--- a/tasks/edit_find_grep_compile_convert/task.py
+++ b/tasks/edit_find_grep_compile_convert/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# TODO:
# - check if everything is filled in (computers, params, preparation)
# - improve scoring
diff --git a/tasks/isc_dhcp_live_boot/task.py b/tasks/isc_dhcp_live_boot/task.py
index c1adc47..a6f4c5c 100644
--- a/tasks/isc_dhcp_live_boot/task.py
+++ b/tasks/isc_dhcp_live_boot/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# TODO: dokoncaj!
# kpov_util should be imported by add_assignment.py
diff --git a/tasks/ldap_import/task.py b/tasks/ldap_import/task.py
index f8fdd60..2b45f67 100644
--- a/tasks/ldap_import/task.py
+++ b/tasks/ldap_import/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
instructions = {
diff --git a/tasks/ldap_search/task.py b/tasks/ldap_search/task.py
index 29117db..3f80a84 100644
--- a/tasks/ldap_search/task.py
+++ b/tasks/ldap_search/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
# Poveži se na strežnik LDAP prek spletnega vmesnika. Ustvari uporabnika z danim imenom in geslom.
diff --git a/tasks/mock_entrance_exam/task.py b/tasks/mock_entrance_exam/task.py
index ad51c2a..7d2d853 100644
--- a/tasks/mock_entrance_exam/task.py
+++ b/tasks/mock_entrance_exam/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# TODO:
# - check if everything is filled in (computers, params, preparation)
# - improve scoring
diff --git a/tasks/nat_port_forward/task.py b/tasks/nat_port_forward/task.py
index 80d2e47..37b2c2a 100644
--- a/tasks/nat_port_forward/task.py
+++ b/tasks/nat_port_forward/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
instructions = {
diff --git a/tasks/nat_vlc/task.py b/tasks/nat_vlc/task.py
index 5224495..6a84820 100644
--- a/tasks/nat_vlc/task.py
+++ b/tasks/nat_vlc/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
# Poglej nek film na nekem določenem URL.
diff --git a/tasks/nat_vlc/video.py b/tasks/nat_vlc/video.py
index 3c21c82..b192787 100644
--- a/tasks/nat_vlc/video.py
+++ b/tasks/nat_vlc/video.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
import string, random, os
#You need to find PIL library on the internet. Just GOOGLE it!!! Other imports are standard.
from PIL import Image, ImageDraw, ImageFont
diff --git a/tasks/network_boot_custom_program/task.py b/tasks/network_boot_custom_program/task.py
index e3fbad2..b515f34 100644
--- a/tasks/network_boot_custom_program/task.py
+++ b/tasks/network_boot_custom_program/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
instructions = {
diff --git a/tasks/openvpn_multiple_hops/task.py b/tasks/openvpn_multiple_hops/task.py
index 44ad8c4..d72ddef 100644
--- a/tasks/openvpn_multiple_hops/task.py
+++ b/tasks/openvpn_multiple_hops/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
instructions = {
diff --git a/tasks/openvpn_simple_smb/task.py b/tasks/openvpn_simple_smb/task.py
index 5d7c22f..73de1fd 100644
--- a/tasks/openvpn_simple_smb/task.py
+++ b/tasks/openvpn_simple_smb/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
instructions = {
diff --git a/tasks/openwrt/task.py b/tasks/openwrt/task.py
index 8872989..759fc77 100644
--- a/tasks/openwrt/task.py
+++ b/tasks/openwrt/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
instructions = {
diff --git a/tasks/public_ip_ssh/task.py b/tasks/public_ip_ssh/task.py
index 8dcb858..20aa4b9 100644
--- a/tasks/public_ip_ssh/task.py
+++ b/tasks/public_ip_ssh/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
instructions = {
diff --git a/tasks/public_ssh_motd_http/task.py b/tasks/public_ssh_motd_http/task.py
index bd48d77..4fa9f0a 100644
--- a/tasks/public_ssh_motd_http/task.py
+++ b/tasks/public_ssh_motd_http/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
instructions = {
diff --git a/tasks/radius_multiple_realms/task.py b/tasks/radius_multiple_realms/task.py
index 0067f46..1f659aa 100644
--- a/tasks/radius_multiple_realms/task.py
+++ b/tasks/radius_multiple_realms/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
instructions = {
diff --git a/tasks/radius_mysql_pam/task.py b/tasks/radius_mysql_pam/task.py
index 5051bb4..6e1094a 100644
--- a/tasks/radius_mysql_pam/task.py
+++ b/tasks/radius_mysql_pam/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
instructions = {
diff --git a/tasks/rdate_64bit/task.py b/tasks/rdate_64bit/task.py
index 9f90014..706c7bf 100644
--- a/tasks/rdate_64bit/task.py
+++ b/tasks/rdate_64bit/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
instructions = {
diff --git a/tasks/rename_grep_network/task.py b/tasks/rename_grep_network/task.py
index 4d81313..2ec75b4 100644
--- a/tasks/rename_grep_network/task.py
+++ b/tasks/rename_grep_network/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# TODO:
# - check if everything is filled in (computers, params, preparation)
# - improve scoring
diff --git a/tasks/set_ip_dhcp_hostname/task.py b/tasks/set_ip_dhcp_hostname/task.py
index 1007424..5f568f5 100644
--- a/tasks/set_ip_dhcp_hostname/task.py
+++ b/tasks/set_ip_dhcp_hostname/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
instructions = {
diff --git a/tasks/set_ip_static_dhcp/task.py b/tasks/set_ip_static_dhcp/task.py
index 0d11f43..5f18d5d 100644
--- a/tasks/set_ip_static_dhcp/task.py
+++ b/tasks/set_ip_static_dhcp/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
instructions = {
diff --git a/tasks/set_motd/task.py b/tasks/set_motd/task.py
index 89b78f6..d78ee81 100644
--- a/tasks/set_motd/task.py
+++ b/tasks/set_motd/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
instructions = {
'si': '''\
<p>
diff --git a/tasks/smb_nfs/task.py b/tasks/smb_nfs/task.py
index 6d1e51d..4abb0d8 100644
--- a/tasks/smb_nfs/task.py
+++ b/tasks/smb_nfs/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
# TODO: dokoncaj!
diff --git a/tasks/snmp_agent_uptime/task.py b/tasks/snmp_agent_uptime/task.py
index 919fcb4..ba6e896 100644
--- a/tasks/snmp_agent_uptime/task.py
+++ b/tasks/snmp_agent_uptime/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
# TODO: finish this.
diff --git a/tasks/snmp_alarms_interfaces/task.py b/tasks/snmp_alarms_interfaces/task.py
index 03d4509..7e78741 100644
--- a/tasks/snmp_alarms_interfaces/task.py
+++ b/tasks/snmp_alarms_interfaces/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
instructions = {
diff --git a/tasks/vlc_stream_rtp/task.py b/tasks/vlc_stream_rtp/task.py
index 427fc0e..8eb4a4c 100644
--- a/tasks/vlc_stream_rtp/task.py
+++ b/tasks/vlc_stream_rtp/task.py
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
# kpov_util should be imported by add_assignment.py
# Postavi nek film na Internet tako, da ga bodo lahko ostali videli.