Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sbws
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
juga
sbws
Commits
2b9fcca8
Commit
2b9fcca8
authored
6 years ago
by
juga
Committed by
Matt Traudt
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Stop creating user configuration if it does not exists
parent
d739c550
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sbws/util/config.py
+6
-15
6 additions, 15 deletions
sbws/util/config.py
with
6 additions
and
15 deletions
sbws/util/config.py
+
6
−
15
View file @
2b9fcca8
"""
Util functions to manage sbws configuration files.
"""
import
shutil
from
configparser
import
(
ConfigParser
,
ExtendedInterpolation
)
from
configparser
import
InterpolationMissingOptionError
...
...
@@ -10,7 +9,7 @@ from urllib.parse import urlparse
from
string
import
Template
from
tempfile
import
NamedTemporaryFile
from
sbws.globals
import
(
DEFAULT_CONFIG_PATH
,
DEFAULT_LOG_CONFIG_PATH
,
MINIMUM_
USER_CONFIG_PATH
,
USER_CONFIG_PATH
)
USER_CONFIG_PATH
,
fail_hard
)
_ALPHANUM
=
'
abcdefghijklmnopqrstuvwxyz
'
_ALPHANUM
+=
_ALPHANUM
.
upper
()
...
...
@@ -32,12 +31,6 @@ def _expand_path(path):
return
os
.
path
.
expanduser
(
os
.
path
.
expandvars
(
path
))
def
_create_user_config_file
(
fname
):
"""
Copy minimal user config to user config path.
"""
if
not
os
.
path
.
isfile
(
fname
):
shutil
.
copyfile
(
MINIMUM_USER_CONFIG_PATH
,
fname
)
def
_extend_config
(
conf
,
fname
):
"""
Extend ConfigParser from file configuration.
"""
log
.
debug
(
'
Reading config file %s
'
,
fname
)
...
...
@@ -66,14 +59,12 @@ def _get_user_config(args, conf=None):
assert
isinstance
(
conf
,
ConfigParser
)
if
args
.
config
:
if
not
os
.
path
.
isfile
(
args
.
config
):
log
.
warning
(
'
Configuration file %s not found,
'
'
using default configuration, and creating a minimal
'
'
configuration in %s.
'
,
args
.
config
,
args
.
config
)
_create_user_config_file
(
args
.
config
)
return
conf
fail_hard
(
'
Configuration file %s not found.
'
,
args
.
config
)
return
_extend_config
(
conf
,
args
.
config
)
_create_user_config_file
(
USER_CONFIG_PATH
)
return
_extend_config
(
conf
,
USER_CONFIG_PATH
)
if
os
.
path
.
isfile
(
USER_CONFIG_PATH
):
return
_extend_config
(
conf
,
USER_CONFIG_PATH
)
log
.
debug
(
'
No user config found.
'
)
return
conf
def
_get_default_logging_config
(
conf
=
None
):
...
...
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