Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Primtux-Eole
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Grenoble
Primtux-Eole
Commits
e231df78
Unverified
Commit
e231df78
authored
Mar 06, 2019
by
David Beniamine
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Missing files
parent
55b2aef2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
60 additions
and
0 deletions
+60
-0
fix_libreoffice.sh
fix_libreoffice.sh
+51
-0
upgrade_repository.sh
upgrade_repository.sh
+9
-0
No files found.
fix_libreoffice.sh
0 → 100755
View file @
e231df78
#!/bin/bash
# Copyright (C) 2018 Tetras Libre <Contact@Tetras-Libre.fr>
# Author: Beniamine, David <David.Beniamine@Tetras-Libre.fr>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
if
[
"
`
whoami
`
"
!=
"root"
]
then
echo
"This script should be run as root"
exit
1
fi
cd
/home
for
u
in
*
do
if
[
$u
!=
"shares"
]
then
echo
$u
cd
$u
/.config/libreoffice/4/user
sed
-i
.bak
-e
's@^\(.*CreateBackup.*\)true\(.*\)$@\1false\2@'
registrymodifications.xcu
if
[
$u
!=
"01-mini"
]
&&
[
$u
!=
"02-super"
]
then
sed
-i
-e
's@\(private:resource/toolbar/textobjectbar.*Visible.*\)false@\1true@'
registrymodifications.xcu
fi
sed
-i
.bak
-e
"s/administrateur/
$u
/g"
ecole/nom_rep.ini
if
[
-z
"
$(
grep
'$(work)/Partages_Serveur'
registrymodifications.xcu
)
"
]
then
sed
-i
"/<
\/
oor:items>/d"
registrymodifications.xcu
cat
<<
EOF
>> registrymodifications.xcu
<item oor:path="/org.openoffice.Office.Common/Path/Info"><prop oor:name="WorkPathChanged" oor:op="fuse"><value>true</value></prop></item>
<item oor:path="/org.openoffice.Office.Common/Path/Current"><prop oor:name="Work" oor:op="fuse"><value xsi:nil="true"/></prop></item>
<item oor:path="/org.openoffice.Office.Paths/Paths/org.openoffice.Office.Paths:NamedPath['Work']"><prop oor:name="WritePath" oor:op="fuse"><value>
\$
(work)/Partages_Serveur</value></prop></item>
</oor:items>
EOF
fi
diff registrymodifications.xcu registrymodifications.xcu.bak
fi
cd
/home
done
upgrade_repository.sh
0 → 100755
View file @
e231df78
#!/bin/bash
DIR
=
`
dirname
$0
`
cd
$DIR
new_repository_url
=
"https://gitecoles.grenoble.fr/grenoble/primtux-eole"
if
[
!
-z
"
`
git remote
-v
|
awk
'/tetras-libre/{print $2}'
`
"
]
then
git remote set-url origin
$new_repository_url
fi
cd
-
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment