IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Browse Source

Added copyright notes.

tags/0.92
parent
commit
d57d8fa765
11 changed files with 76 additions and 0 deletions
  1. +6
    -0
      focker/__init__.py
  2. +7
    -0
      focker/compose.py
  3. +7
    -0
      focker/focker.py
  4. +7
    -0
      focker/image.py
  5. +7
    -0
      focker/jail.py
  6. +7
    -0
      focker/misc.py
  7. +7
    -0
      focker/mount.py
  8. +7
    -0
      focker/snapshot.py
  9. +7
    -0
      focker/steps.py
  10. +7
    -0
      focker/volume.py
  11. +7
    -0
      focker/zfs.py

+ 6
- 0
focker/__init__.py View File

@@ -0,0 +1,6 @@
#
# Copyright (C) Stanislaw Adaszewski, 2020
# License: GNU General Public License v3.0
# URL: https://github.com/sadaszewski/focker
# URL: https://adared.ch/focker
#

+ 7
- 0
focker/compose.py View File

@@ -1,3 +1,10 @@
#
# Copyright (C) Stanislaw Adaszewski, 2020
# License: GNU General Public License v3.0
# URL: https://github.com/sadaszewski/focker
# URL: https://adared.ch/focker
#
import os
import yaml
from .zfs import AmbiguousValueError, \


+ 7
- 0
focker/focker.py View File

@@ -1,3 +1,10 @@
#
# Copyright (C) Stanislaw Adaszewski, 2020
# License: GNU General Public License v3.0
# URL: https://github.com/sadaszewski/focker
# URL: https://adared.ch/focker
#
from argparse import ArgumentParser
import argparse
import yaml


+ 7
- 0
focker/image.py View File

@@ -1,3 +1,10 @@
#
# Copyright (C) Stanislaw Adaszewski, 2020
# License: GNU General Public License v3.0
# URL: https://github.com/sadaszewski/focker
# URL: https://adared.ch/focker
#
from .zfs import *
import os
import yaml


+ 7
- 0
focker/jail.py View File

@@ -1,3 +1,10 @@
#
# Copyright (C) Stanislaw Adaszewski, 2020
# License: GNU General Public License v3.0
# URL: https://github.com/sadaszewski/focker
# URL: https://adared.ch/focker
#
import subprocess
from .zfs import *
import random


+ 7
- 0
focker/misc.py View File

@@ -1,3 +1,10 @@
#
# Copyright (C) Stanislaw Adaszewski, 2020
# License: GNU General Public License v3.0
# URL: https://github.com/sadaszewski/focker
# URL: https://adared.ch/focker
#
import random
from .zfs import zfs_exists


+ 7
- 0
focker/mount.py View File

@@ -1,3 +1,10 @@
#
# Copyright (C) Stanislaw Adaszewski, 2020
# License: GNU General Public License v3.0
# URL: https://github.com/sadaszewski/focker
# URL: https://adared.ch/focker
#
from ctypes import Structure, \
c_uint32, \
c_uint64, \


+ 7
- 0
focker/snapshot.py View File

@@ -1,3 +1,10 @@
#
# Copyright (C) Stanislaw Adaszewski, 2020
# License: GNU General Public License v3.0
# URL: https://github.com/sadaszewski/focker
# URL: https://adared.ch/focker
#
from .zfs import *


+ 7
- 0
focker/steps.py View File

@@ -1,3 +1,10 @@
#
# Copyright (C) Stanislaw Adaszewski, 2020
# License: GNU General Public License v3.0
# URL: https://github.com/sadaszewski/focker
# URL: https://adared.ch/focker
#
import hashlib
import json
from .jail import jail_run


+ 7
- 0
focker/volume.py View File

@@ -1,3 +1,10 @@
#
# Copyright (C) Stanislaw Adaszewski, 2020
# License: GNU General Public License v3.0
# URL: https://github.com/sadaszewski/focker
# URL: https://adared.ch/focker
#
from .misc import random_sha256_hexdigest
from .zfs import *
from tabulate import tabulate


+ 7
- 0
focker/zfs.py View File

@@ -1,3 +1,10 @@
#
# Copyright (C) Stanislaw Adaszewski, 2020
# License: GNU General Public License v3.0
# URL: https://github.com/sadaszewski/focker
# URL: https://adared.ch/focker
#
import subprocess
import csv
import io


Loading…
Cancel
Save