4 |
- |
1 |
# Set to 'yes' to mount the system filesystems read-only.
|
|
|
2 |
READONLY=no
|
|
|
3 |
# Set to 'yes' to mount various temporary state as either tmpfs
|
|
|
4 |
# or on the block device labelled RW_LABEL. Implied by READONLY
|
|
|
5 |
TEMPORARY_STATE=no
|
|
|
6 |
# Place to put a tmpfs for temporary scratch writable space
|
|
|
7 |
RW_MOUNT=/var/lib/stateless/writable
|
|
|
8 |
# Label on local filesystem which can be used for temporary scratch space
|
|
|
9 |
RW_LABEL=stateless-rw
|
|
|
10 |
# Options to use for temporary mount
|
|
|
11 |
RW_OPTIONS=
|
|
|
12 |
# Label for partition with persistent data
|
|
|
13 |
STATE_LABEL=stateless-state
|
|
|
14 |
# Where to mount to the persistent data
|
|
|
15 |
STATE_MOUNT=/var/lib/stateless/state
|
|
|
16 |
# Options to use for peristent mount
|
|
|
17 |
STATE_OPTIONS=
|