aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevan Franchini <twitch153@gentoo.org>2014-08-16 21:31:16 -0400
committerDevan Franchini <twitch153@gentoo.org>2014-08-16 21:31:16 -0400
commit70ae729d89ea25a2c6b8e0769368450317c30d1f (patch)
treec71f48da21c2760915dc79c7a6f7b009601ad75e /layman/config.py
parentMoves archive.py to overlays (diff)
downloadlayman-70ae729d89ea25a2c6b8e0769368450317c30d1f.tar.gz
layman-70ae729d89ea25a2c6b8e0769368450317c30d1f.tar.bz2
layman-70ae729d89ea25a2c6b8e0769368450317c30d1f.zip
config.py: Blanks out squashfs_command
Due to squashfs not needing to run a command aside from mount and umount (which are handled by the Mounter() class), the config option was set to a blank value. layman.cfg: Reflects change to squashfs_command option with explanation to user. config.py: Also removes clean_tar from the true false check in favor of the clean_archive config option.
Diffstat (limited to 'layman/config.py')
-rw-r--r--layman/config.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/layman/config.py b/layman/config.py
index adfd2de..4fbff5d 100644
--- a/layman/config.py
+++ b/layman/config.py
@@ -123,11 +123,12 @@ class BareConfig(object):
'g-common_command': path([self.root, EPREFIX,'/usr/bin/g-common']),
'g-sorcery_command': path([self.root, EPREFIX,'/usr/bin/g-sorcery']),
'mercurial_command': path([self.root, EPREFIX,'/usr/bin/hg']),
- 'squashfs_command': path([self.root, EPREFIX,'/usr/bin/unsquashfs']),
+ # left blank due to squashfs only needing to mount the image.
+ 'squashfs_command': '',
'rsync_command': path([self.root, EPREFIX,'/usr/bin/rsync']),
'svn_command': path([self.root, EPREFIX,'/usr/bin/svn']),
'tar_command': path([self.root, EPREFIX,'/bin/tar']),
- 't/f_options': ['check_official', 'clean_tar', 'nocheck', 'require_repoconfig'],
+ 't/f_options': ['check_official', 'clean_archive', 'nocheck', 'require_repoconfig'],
'bzr_addopts' : '',
'bzr_syncopts' : '',
'cvs_addopts' : '',