-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#164132100] Brought back DEB changes that were lost in force push
- run dir fixes. - change CEF cache folder.
- Loading branch information
Artem Chernyshev
committed
Jul 2, 2019
1 parent
c6d4c5b
commit 43e0ff3
Showing
13 changed files
with
91 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/sh | ||
|
||
#DEBHELPER# | ||
|
||
set -e | ||
|
||
echo " | ||
* TRACE: | ||
ENABLED = false | ||
* DEBUG: | ||
ENABLED = false | ||
* GLOBAL: | ||
FORMAT = "%datetime [%level] [%fbase:%line] %msg" | ||
ENABLED = true | ||
TO_FILE = true | ||
" > /usr/share/gsage/log.cfg | ||
|
||
chmod 755 /usr/share/gsage/log.cfg | ||
|
||
# update editor configuration | ||
python -c " | ||
import sys, json; | ||
config_path = '/usr/share/gsage/resources/editorConfig.json' | ||
config = None | ||
with open(config_path, 'r') as f: | ||
config = json.load(f) | ||
config['logConfig'] = '/usr/share/gsage/log.cfg' | ||
with open(config_path, 'w') as f: | ||
json.dump(config, f) | ||
" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
|
||
#DEBHELPER# | ||
|
||
rm /usr/share/gsage/log.cfg |