commit: 111f8243f3261d8cb0871b6f4b2087d7ce5e9b69
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Fri May 15 06:16:28 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri May 15 06:31:34 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=111f8243
catalyst: Rename shmfs -> shm
This will allow us to factor out the ['source', 'target'] from each
case.
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/base/stagebase.py | 4 ++--
catalyst/defaults.py | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
index 68945da8..52f9cd5b 100644
--- a/catalyst/base/stagebase.py
+++ b/catalyst/base/stagebase.py
@@ -864,9 +864,9 @@ class StageBase(TargetBase, ClearBase, GenBase):
target]
elif source == 'tmpfs':
_cmd = ['mount', '-t', 'tmpfs', source, target]
- elif source == 'shmfs':
+ elif source == 'shm':
_cmd = ['mount', '-t', 'tmpfs', '-o', 'noexec,nosuid,nodev',
- 'shm', target]
+ source, target]
else:
_cmd = ['mount', source, target]
diff --git a/catalyst/defaults.py b/catalyst/defaults.py
index 9d5771d5..404f4892 100644
--- a/catalyst/defaults.py
+++ b/catalyst/defaults.py
@@ -99,7 +99,7 @@ MOUNT_DEFAULTS = OrderedDict([
}),
('shm', {
'enable': True,
- 'source': 'shmfs',
+ 'source': 'shm',
'target': '/dev/shm',
}),
('run', {