forked from sig_core/toolkit
catch running as root and old bumpspec version
This commit is contained in:
parent
a3ddae7416
commit
0ad6773539
@ -8,6 +8,7 @@ import os
|
|||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
import argparse
|
import argparse
|
||||||
|
import shutil
|
||||||
|
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
parser.add_argument("--pkg",
|
parser.add_argument("--pkg",
|
||||||
@ -57,6 +58,10 @@ if args.peridot_import:
|
|||||||
print('Peridot import not supported yet')
|
print('Peridot import not supported yet')
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
if os.geteuid() == 0:
|
||||||
|
print('DO NOT RUN AS ROOT')
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
default_url = 'ssh://git@git.rockylinux.org:22220/staging/src/%s.git' % args.pkg
|
default_url = 'ssh://git@git.rockylinux.org:22220/staging/src/%s.git' % args.pkg
|
||||||
if args.sig:
|
if args.sig:
|
||||||
default_url = 'ssh://git@git.rockylinux.org:22220/sig/%s/src/%s.git' % (args.sig, args.pkg)
|
default_url = 'ssh://git@git.rockylinux.org:22220/sig/%s/src/%s.git' % (args.sig, args.pkg)
|
||||||
@ -99,7 +104,10 @@ for pkg in pkgs:
|
|||||||
|
|
||||||
print('Bumping release of %s' % spec)
|
print('Bumping release of %s' % spec)
|
||||||
bumprel = ['rpmdev-bumpspec', '-D', '-u', user, '-c', comment, spec]
|
bumprel = ['rpmdev-bumpspec', '-D', '-u', user, '-c', comment, spec]
|
||||||
|
bumprel_old = ['rpmdev-bumpspec', '-u', user, '-c', comment, spec]
|
||||||
if runcmd(bumprel, 'rpmdev-bumpspec', pkg, environment):
|
if runcmd(bumprel, 'rpmdev-bumpspec', pkg, environment):
|
||||||
|
print('Potentially old bumpspec version. Trying again.')
|
||||||
|
if runcmd(bumprel_old, 'rpmdev-bumpspec', pkg, environment):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
print('Setting git user and email for this operation')
|
print('Setting git user and email for this operation')
|
||||||
@ -121,3 +129,5 @@ for pkg in pkgs:
|
|||||||
print('Pushing changes for %s' % pkg)
|
print('Pushing changes for %s' % pkg)
|
||||||
if runcmd(push, 'push', pkg, environment, pwd=joined_dir):
|
if runcmd(push, 'push', pkg, environment, pwd=joined_dir):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
shutil.rmtree(joined_dir)
|
||||||
|
Loading…
Reference in New Issue
Block a user