Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
help.ubuntu-it.org
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gruppo Documentazione
help.ubuntu-it.org
Commits
1ceb401f
Commit
1ceb401f
authored
May 08, 2011
by
Leo Iannacone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update a smarter cronjob
parent
5860e22b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
1 deletion
+25
-1
cronjob
cronjob
+25
-1
No files found.
cronjob
View file @
1ceb401f
...
@@ -5,4 +5,28 @@ DIR_WWW="${DIR_BASE}/www/"
...
@@ -5,4 +5,28 @@ DIR_WWW="${DIR_BASE}/www/"
DIR_BZR_BASE
=
"
${
DIR_BASE
}
/bzr/"
DIR_BZR_BASE
=
"
${
DIR_BASE
}
/bzr/"
DIR_BZR_WWW
=
"
${
DIR_BZR_BASE
}
/www/"
DIR_BZR_WWW
=
"
${
DIR_BZR_BASE
}
/www/"
cp
-Rpx
${
DIR_BZR_WWW
}
${
DIR_WWW
}
function
update_files
()
{
cp
-Rpx
${
DIR_BZR_WWW
}
${
DIR_WWW
}
}
############################################
## Test if repo has been updated ##
############################################
TMP_FILE
=
/tmp/helprepo_version
## Temp file where version bzr repo has been saved
## Create temp file if it doesn't exist
if
!
test
-f
$TMP_FILE
;
then
cat
/dev/null
>
$TMP_FILE
fi
cd
$DIR_BZR_BASE
VERSION
=
`
cat
$TMP_FILE
`
VERSION_TEST
=
`
bzr up 2>&1 |
tail
-n1
`
if
[
!
"
$VERSION_TEST
"
=
"
$VERSION
"
]
;
then
echo
"
$VERSION_TEST
"
>
$TMP_FILE
update_files
fi
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