@@ -32,7 +32,7 @@ NFS_SERVER="192.168.122.1"
32
32
# Array with lines to add to /etc/fstab, e.g. private overlays
33
33
FSTAB_ADDON_LINES=(
34
34
" # mount my overlay"
35
- " 192.168.122.1:/var/lib/layman/md-private /var/db/repos/md-private nfs defaults 0 0"
35
+ " 192.168.122.1:/var/db/repos/my-overlay/ /var/db/repos/my-overlay nfs defaults 0 0"
36
36
)
37
37
38
38
# @VARIABLE: FSTAB_ADDON_DIRS
@@ -51,29 +51,56 @@ DISK_SIZE=20G
51
51
# which locale should be set in the virtual machine
52
52
VM_LOCALE=" de_DE.utf8"
53
53
54
+ # @VARIABLE: VM_KEYBOARD_KEYMAP
55
+ # @DESCRIPTION:
56
+ # Name of the Keymap that should be set in the virtual machine
57
+ VM_KEYBOARD_KEYMAP=" de-latin1-nodeadkeys"
58
+
59
+ # @VARIABLE: VM_TIMEZONE
60
+ # @DESCRIPTION:
61
+ # Name of the timezone that should be set in the virtual machine
62
+ VM_TIMEZONE=" Europe/Berlin"
63
+
54
64
# @VARIABLE: REPO_SQUASHFS
55
65
# @DESCRIPTION:
56
66
# Wnen set to yes, the portage tree will be put as squashfs image into the disk image
57
67
# (and then mounted r/o)
58
68
# In all other cases, the portage tree will be copied
59
69
REPO_SQUASHFS=" yes"
60
70
61
- # @VARIABLE:
71
+ # @VARIABLE: ADD_OVERLAYS_LIST
72
+ # @DESCRIPTION:
73
+ # List of overlay names. The content of all overlays listed here will be trans-
74
+ # ferred into the image. The location of the overlay directory is read from
75
+ # /etc/layman/layman.cfg
76
+ # Note: for images that contain "musl" in the name, the "musl" overlay is auto-
77
+ # matically added.
78
+ # Overlays in the list, that are currently not found on the base system, will be
79
+ # automatically added and set to the disabled state
80
+ # (disabled overlays are synced but not recognized by portage)
81
+ ADD_OVERLAYS_LIST=" "
82
+ # ADD_OVERLAYS_LIST="vdr-devel"
83
+
84
+ # @VARIABLE: ADD_SSH_PUBKEYS
62
85
# @DESCRIPTION:
63
- #
86
+ # Array of ssh public keys to add to /root/.ssh/authorized_keys
87
+ ADD_SSH_PUBKEYS=(
88
+ " #comment 1"
89
+ " ssh-rsa <our ssh key here>"
90
+ " #comment 2" )
64
91
65
- # @VARIABLE:
92
+ # @VARIABLE:
66
93
# @DESCRIPTION:
67
- #
94
+ #
68
95
69
- # @VARIABLE:
96
+ # @VARIABLE:
70
97
# @DESCRIPTION:
71
- #
98
+ #
72
99
73
- # @VARIABLE:
100
+ # @VARIABLE:
74
101
# @DESCRIPTION:
75
- #
102
+ #
76
103
77
- # @VARIABLE:
104
+ # @VARIABLE:
78
105
# @DESCRIPTION:
79
- #
106
+ #
0 commit comments