Fixes bug http://bugs.archlinux.org/task/9739, No other changes (except
a comment removed). Please sign off.
09-18-2008, 05:39 PM
Pierre Schmitz
initscripts 2008.09-1
Am Donnerstag 18 September 2008 19:06:56 schrieb Thomas Bächler:
> Please sign off.
signed-off for both arches
--
Pierre Schmitz
Clemens-August-Straße 76
53115 Bonn
Telefon 0228 9716608
Mobil 0160 95269831
Jabber pierre@jabber.archlinux.de
WWW http://www.archlinux.de
09-18-2008, 06:21 PM
Daniel Isenmann
initscripts 2008.09-1
On Thu, 18 Sep 2008 19:39:50 +0200
Pierre Schmitz <pierre@archlinux.de> wrote:
> Am Donnerstag 18 September 2008 19:06:56 schrieb Thomas Bächler:
> > Please sign off.
>
> signed-off for both arches
>
signoff for x86_64
09-18-2008, 06:34 PM
Tobias Powalowski
initscripts 2008.09-1
Am Donnerstag 18 September 2008 schrieb Daniel Isenmann:
> On Thu, 18 Sep 2008 19:39:50 +0200
>
> Pierre Schmitz <pierre@archlinux.de> wrote:
> > Am Donnerstag 18 September 2008 19:06:56 schrieb Thomas Bächler:
> > > Please sign off.
> >
> > signed-off for both arches
>
> signoff for x86_64
signoff x86_64
Thomas Bächler schrieb:
Fixes bug http://bugs.archlinux.org/task/9739, No other changes (except
a comment removed). Please sign off.
And another one, forgot to fix a trivial bug related to functions.d.
Sign off again.
09-20-2008, 02:39 AM
Eric Belanger
initscripts 2008.09-1
On Thu, 18 Sep 2008, Thomas Bächler wrote:
Thomas Bächler schrieb:
Fixes bug http://bugs.archlinux.org/task/9739, No other changes (except a
comment removed). Please sign off.
And another one, forgot to fix a trivial bug related to functions.d. Sign off
again.
system booted fine. Signing off for both arches.
--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
09-21-2008, 12:55 PM
"Roman Kyrylych"
initscripts 2008.09-1
2008/9/18 Thomas Bächler <thomas@archlinux.org>:
> Thomas Bächler schrieb:
>>
>> Fixes bug http://bugs.archlinux.org/task/9739, No other changes (except a
>> comment removed). Please sign off.
>>
>
> And another one, forgot to fix a trivial bug related to functions.d. Sign
> off again.
>
>
The following patch fixes small issue.
I tried to push it but got:
$ git push
fatal: The remote end hung up unexpectedly
Why?
diff --git a/rc.sysinit b/rc.sysinit
index a24f692..76ce5a2 100755
--- a/rc.sysinit
+++ b/rc.sysinit
@@ -359,7 +359,7 @@ if echo "$LOCALE" | /bin/grep -qi utf ; then
# this code is needed not only for older kernels,
# but also when user has set vt.default_utf8=0 but LOCALE is *.UTF-8.
for i in $(/usr/bin/seq 0 63); do
- usr/bin/kbd_mode -u < /dev/vc/${i}
+ /usr/bin/kbd_mode -u < /dev/vc/${i}
printf "e%%G" > /dev/vc/${i}
done
# the $CONSOLE check helps us avoid this when running scripts from cron
--
1.6.0.2
--
Roman Kyrylych (Ð*оман Кирилич)
09-25-2008, 05:30 AM
"Aaron Griffin"
initscripts 2008.09-1
On Sun, Sep 21, 2008 at 7:55 AM, Roman Kyrylych
<roman.kyrylych@gmail.com> wrote:
> The following patch fixes small issue.
> I tried to push it but got:
> $ git push
> fatal: The remote end hung up unexpectedly
> Why?
Did you clone over http? http doesn't allow for pushing.
$ git remote show origin
* remote origin
URL: ssh://archlinux.org/srv/projects/git/initscripts.git
Remote branch merged with 'git pull' while on branch master
master
Tracked remote branches
master splash
Pushing your patch now
09-28-2008, 11:28 AM
"Roman Kyrylych"
initscripts 2008.09-1
2008/9/25 Aaron Griffin <aaronmgriffin@gmail.com>:
> On Sun, Sep 21, 2008 at 7:55 AM, Roman Kyrylych
> <roman.kyrylych@gmail.com> wrote:
>> The following patch fixes small issue.
>> I tried to push it but got:
>> $ git push
>> fatal: The remote end hung up unexpectedly
>> Why?
>
> Did you clone over http? http doesn't allow for pushing.
>
> $ git remote show origin
> * remote origin
> URL: ssh://archlinux.org/srv/projects/git/initscripts.git
> Remote branch merged with 'git pull' while on branch master
> master
> Tracked remote branches
> master splash
I didn't specify a protocol so looks like it didn't use ssh:
$ git remote show origin
* remote origin
URL: git://projects.archlinux.org/initscripts.git
Remote branch merged with 'git pull' while on branch master
master
Tracked remote branches
master splash
I'll check & change all my tracked git repos.
> Pushing your patch now
thanks!
--
Roman Kyrylych (Ð*оман Кирилич)
09-28-2008, 11:55 AM
"James Rayner"
initscripts 2008.09-1
On Sun, Sep 28, 2008 at 4:28 AM, Roman Kyrylych
<roman.kyrylych@gmail.com> wrote:
> 2008/9/25 Aaron Griffin <aaronmgriffin@gmail.com>:
>> On Sun, Sep 21, 2008 at 7:55 AM, Roman Kyrylych
>> <roman.kyrylych@gmail.com> wrote:
>>> The following patch fixes small issue.
>>> I tried to push it but got:
>>> $ git push
>>> fatal: The remote end hung up unexpectedly
>>> Why?
>>
>> Did you clone over http? http doesn't allow for pushing.
>>
>> $ git remote show origin
>> * remote origin
>> URL: ssh://archlinux.org/srv/projects/git/initscripts.git
>> Remote branch merged with 'git pull' while on branch master
>> master
>> Tracked remote branches
>> master splash
>
> I didn't specify a protocol so looks like it didn't use ssh:
>
In future if you didnt checkout via ssh, you can do git push
ssh://bob@somehost:/path/to/repository/on/remote/server and this can
be configured somewhere within the repo you checked out.