Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
installsystems
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Seblu
installsystems
Commits
5a1e0960
Commit
5a1e0960
authored
13 years ago
by
Seblu
Browse files
Options
Downloads
Patches
Plain Diff
fix bad cache loading
parent
5ab4fee6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
installsystems/config.py
+5
-5
5 additions, 5 deletions
installsystems/config.py
with
5 additions
and
5 deletions
installsystems/config.py
+
5
−
5
View file @
5a1e0960
...
@@ -60,6 +60,8 @@ class MainConfigFile(ConfigFile):
...
@@ -60,6 +60,8 @@ class MainConfigFile(ConfigFile):
Load/Reload config file
Load/Reload config file
'''
'''
self
.
_config
=
{}
self
.
_config
=
{}
# loading default options
self
.
_config
[
"
cache
"
]
=
self
.
cache
# loading config file if exists
# loading config file if exists
if
self
.
path
is
None
:
if
self
.
path
is
None
:
debug
(
"
No main config file to load
"
)
debug
(
"
No main config file to load
"
)
...
@@ -70,7 +72,7 @@ class MainConfigFile(ConfigFile):
...
@@ -70,7 +72,7 @@ class MainConfigFile(ConfigFile):
cp
.
read
(
self
.
path
)
cp
.
read
(
self
.
path
)
# main configuration
# main configuration
if
cp
.
has_section
(
self
.
prefix
):
if
cp
.
has_section
(
self
.
prefix
):
self
.
_config
=
dict
(
cp
.
items
(
self
.
prefix
))
self
.
_config
.
update
(
cp
.
items
(
self
.
prefix
))
except
Exception
as
e
:
except
Exception
as
e
:
raise
Exception
(
"
Unable load main config file %s: %s
"
%
(
self
.
path
,
e
))
raise
Exception
(
"
Unable load main config file %s: %s
"
%
(
self
.
path
,
e
))
...
@@ -88,12 +90,10 @@ class MainConfigFile(ConfigFile):
...
@@ -88,12 +90,10 @@ class MainConfigFile(ConfigFile):
'''
'''
List all candidates to cache directories. Alive or not
List all candidates to cache directories. Alive or not
'''
'''
dirs
=
[
"
/var/tmp
"
,
"
/tmp
"
]
dirs
=
[
os
.
path
.
expanduser
(
"
~/.cache
"
),
"
/var/tmp
"
,
"
/tmp
"
]
# we have a
different behaviour
if we are root
# we have a
n additional directry
if we are root
if
os
.
getuid
()
==
0
:
if
os
.
getuid
()
==
0
:
dirs
.
insert
(
0
,
"
/var/cache
"
)
dirs
.
insert
(
0
,
"
/var/cache
"
)
else
:
dirs
.
insert
(
0
,
os
.
path
.
expanduser
(
"
~/.cache
"
))
return
map
(
lambda
x
:
os
.
path
.
join
(
x
,
self
.
prefix
),
dirs
)
return
map
(
lambda
x
:
os
.
path
.
join
(
x
,
self
.
prefix
),
dirs
)
def
_cache_path
(
self
):
def
_cache_path
(
self
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment