hi, i newly joined fedora infrastructure group
by p sena
Hi,
I am new to the fedora infrastructure group. I am going throug few of the links in the site to get a feel of the work. I have submitted my .ssh_rsa_key.pub from the site. I think I will get some intimation on this. Please someone can let me know further proceedings from here onwards.
Cheers.
Regards & Thanks Prabir Senapati mailto: senapati2001(a)yahoo.com
12 years, 8 months
app07
by Mike McGrath
app07's httpd is disabled at the moment, please leave it that way. Some
of it's wsgi processes are filling up and taking all the ram. This is our
first RHEL5.5 app server, we believe there's a library causing issues.
More investigation needed.
-Mike
13 years, 1 month
Howdy!
by Shawn Stephens
My name is Shawn Stephens, and I would like to join the Fedora
Infrastructure team. I've been working for about 6 years at a large oil
company here in Houston, Texas, deploying Red Hat Enterprise Linux 3-5. We
currently have a home-grown deployment setup that includes Cfengine 2.
We're currently looking to move to puppet, and we're evaluating how we can
automate our internally-developed RPM builds and deployment. I'm hoping to
learn more on puppet an koji if possible.
Let me know how I can help!
Thanks,
Shawn
--
Shawn Stephens
K5SHS
13 years, 1 month
Re: String freeze, and get.fp.o
by Paul W. Frields
On Fri, Apr 23, 2010 at 10:30 PM, Domingo Becker
<domingobecker(a)gmail.com> wrote:
> 2010/4/23 Paul W. Frields <stickster(a)gmail.com>:
>>
>> To do this, though, would reqeuire a string freeze exception. The
>> string freeze for websites started on 2010-04-21, so we're a couple
>> days late. I'm officially asking:
>>
>> * L10n to tell us whether they would mind having these website changes
>> come into POT within the next 24-48 hours. Translations could be
>> accepted up until May 11, and then of course after May 19 when
>> things unfreeze we would accept more.
>>
>
> +1 from Spanish team
>
> Nice redesign!
>
> In "handy resources" it would be nice to have a link to docs.fedoraproject.org
You should see those links now. Although they all currently redirect
to the main docs.fp.o site, the next version of the docs.fp.o site
doesn't have to do that. As it is, the docs.fp.o site clearly shows
how to find each document so the effect shouldn't be bad.
> What would be the correct way to translate "Upgrading Fedora" [1] ?
> If the link is included in the pot file, we may change it to point to
> something like [2], and translate that page too.
>
> [1] http://fedoraproject.org/wiki/Upgrading
>
> [2] http://fedoraproject.org/wiki/Upgrading-es
That's my fault. I put the link outside the markup. I'll fix that for
any of the sites like the wiki where local groups might want to link
to their own translated pages.
Paul
13 years, 1 month
[PATCH] Update cron jobs for docs site
by Nick Bebout
---
modules/fedora-docs/files/docs-sync | 28 ----------------------------
modules/fedora-docs/manifests/init.pp | 11 +++++------
2 files changed, 5 insertions(+), 34 deletions(-)
diff --git a/modules/fedora-docs/files/docs-sync b/modules/fedora-docs/files/docs-sync
index 9425ec3..8eacbfb 100755
--- a/modules/fedora-docs/files/docs-sync
+++ b/modules/fedora-docs/files/docs-sync
@@ -1,32 +1,5 @@
#!/bin/sh
-function cleanlock()
-{
- /bin/rm -f /var/lock/$1.lock
-}
-
-
-function quit()
-{
- echo $1
- if [ $2 ]
- then
- cleanlock $2
- fi
- exit 2
-}
-
-function newlock()
-{
- if [ -f /var/lock/$1.lock ]
- then
- quit "Lockfile exists.. Remove /var/lock/$1.lock"
- else
- touch /var/lock/$1.lock
- fi
-}
-
-newlock docSync
if [ ! -d /srv/web/docs ]
then
echo "/srv/web/docs missing"
@@ -40,4 +13,3 @@ git reset --hard
git pull
/sbin/restorecon -R /srv/web/docs/
-cleanlock docSync
diff --git a/modules/fedora-docs/manifests/init.pp b/modules/fedora-docs/manifests/init.pp
index 3055428..28fb8da 100644
--- a/modules/fedora-docs/manifests/init.pp
+++ b/modules/fedora-docs/manifests/init.pp
@@ -9,11 +9,10 @@ class fedora-docs::build {
}
cron { "docs-sync":
- command => "/usr/local/bin/docs-sync > /dev/null 2>&1",
+ command => "lock-wrapper docs-sync /usr/local/bin/docs-sync > /dev/null 2>&1",
user => "root",
- minute => 5,
- hour => [ 1, 7, 14, 21 ],
- ensure => absent,
+ minute => [ 4, 14, 24, 34, 44, 54 ],
+ ensure => present,
}
}
@@ -25,8 +24,8 @@ define fedora-docs::proxy($website) {
# TODO: Make add some locking to this.
command => "/usr/bin/rsync -a bapp01::docs/* /srv/web/docs.fedoraproject.org/",
user => "root",
- minute => [ 0, 30 ],
- ensure => absent,
+ minute => [ 7, 17, 27, 37, 47, 57 ],
+ ensure => present,
}
file { "/etc/httpd/conf.d/$website/fedora-docs.conf":
--
1.5.5.6
13 years, 1 month
[PATCH] Update sync script for git
by Nick Bebout
---
modules/fedora-docs/files/docs-sync | 35 +++++++----------------------------
1 files changed, 7 insertions(+), 28 deletions(-)
diff --git a/modules/fedora-docs/files/docs-sync b/modules/fedora-docs/files/docs-sync
index a7125bc..9425ec3 100755
--- a/modules/fedora-docs/files/docs-sync
+++ b/modules/fedora-docs/files/docs-sync
@@ -1,8 +1,5 @@
#!/bin/sh
-CACHEDIR='/var/cache/docsSite/'
-export CVSROOT=:pserver:anonymous@cvs.fedoraproject.org:/cvs/fedora
-
function cleanlock()
{
/bin/rm -f /var/lock/$1.lock
@@ -30,35 +27,17 @@ function newlock()
}
newlock docSync
-if [ ! -d $CACHEDIR ]
+if [ ! -d /srv/web/docs ]
then
- echo "CACHEDIR missing"
- mkdir $CACHEDIR
- cd $CACHEDIR
- cvs co -r LIVE web > /dev/null 2>&1
+ echo "/srv/web/docs missing"
+ cd /srv/web
+ git clone git://git.fedoraproject.org/git/docs/web.git docs
fi
-cd $CACHEDIR
-
-cvs up -d LIVE web > /dev/null 2>&1
-cd web
-sed -i s/project-web/web/g Makefile
-echo starting build
-make tree > /dev/null 2>&1
-cd fedoraweb
-/bin/mkdir -p /srv/web/docs/css/
-/bin/mkdir -p /srv/web/docs/images
-/bin/mkdir -p /srv/web/rhold
-/bin/cp -ad * /srv/web/rhold
-/bin/cp -ad docs/* /srv/web/docs/
-/bin/cp -ad css/* /srv/web/docs/css/
-/bin/cp -ad images/* /srv/web/docs/images/
-
-# For bug #65
-rm -rf /srv/web/docs/package-list/
+cd /srv/web/docs
+git reset --hard
+git pull
/sbin/restorecon -R /srv/web/docs/
-/sbin/restorecon -R /srv/web/rhold/
cleanlock docSync
-
--
1.5.5.6
13 years, 1 month