mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 11:06:15 +00:00
Compare commits
45 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f5b1aa8c87 | |||
| c61c91f9f2 | |||
| a57af837d8 | |||
| 03ba957d5f | |||
| d661496a4c | |||
| 4e1ce01d4e | |||
| dfeb8f9862 | |||
| 79c4befdea | |||
| c8c0c08100 | |||
| 877cd04101 | |||
| 7453e26bc7 | |||
| 11e0b5baee | |||
| 54c652944f | |||
| ef5179c975 | |||
| fc9793ff4e | |||
| 1508582709 | |||
| fca82072fa | |||
| 7fb07fdb29 | |||
| 387cb23c79 | |||
| c63ed02014 | |||
| d0773602f5 | |||
| 7b2b947843 | |||
| e619aeeab5 | |||
| f041821042 | |||
| 04e79ac6f7 | |||
| 942c21283f | |||
| 0803beead9 | |||
| 8bf3888935 | |||
| 3f2c7de583 | |||
| 514048840f | |||
| 012a1a3767 | |||
| 0168eb6258 | |||
| 2212f350e9 | |||
| 75a06769ea | |||
| 797f6c050c | |||
| 3169a8db4c | |||
| c6e5d09862 | |||
| 76d551ae77 | |||
| 92202763aa | |||
| 3a666723c1 | |||
| ed7e63d752 | |||
| bf6c49b8b9 | |||
| cc0b7da35a | |||
| 33febf4489 | |||
| 52ab50a9c7 |
+29
-1
@@ -15,6 +15,7 @@ SRPMVERS = $(shell [ ! -f $(SPECFILE) ] || rpmspec -D '_vendor clr' --srpm -q --
|
||||
SRPMFILE = results/$(SRPMVERS).src.rpm
|
||||
|
||||
LATEST_RPMS = $(wildcard rpms/*.rpm)
|
||||
DEBUGINFO_RPM = $(wildcard rpms/*-debuginfo-*.rpm)
|
||||
RPMS ?= $(LATEST_RPMS)
|
||||
|
||||
WITH_SUDO = $(shell cmp /usr/bin/mock /usr/sbin/mock &> /dev/null && echo sudo )
|
||||
@@ -154,13 +155,15 @@ pullrebase:
|
||||
fi \
|
||||
fi
|
||||
|
||||
preautospec-checks:
|
||||
|
||||
#help autospec: automatically generates a specfile. If there is
|
||||
#help already a specfile, it will be overwritten. Several files used by
|
||||
#help autospec will be created in the process.
|
||||
#help Use MOCK_OPTS environment varible to pass down arbitrary mock options
|
||||
#help to autospec.
|
||||
#help For more information, see the project at https://github.com/clearlinux/autospec
|
||||
autospec: pullrebase localreponotice clean-old-content
|
||||
autospec: preautospec-checks pullrebase localreponotice clean-old-content
|
||||
@if [ -e $(SPECFILE) ] && ! grep -q "# Generated by: autospec.py" $(SPECFILE) ; then \
|
||||
echo "Specfile already exists and was not created by autospec.py! Aborting."; \
|
||||
exit 1; \
|
||||
@@ -406,6 +409,31 @@ install:
|
||||
done
|
||||
@$(MAKE) loop-down DEVICE=6
|
||||
|
||||
#help install-debuginfo-local: Install locally built debuginfo RPM to
|
||||
#help the automatic debuginfo cache location (/var/cache/debuginfo)
|
||||
install-debuginfo-local:
|
||||
tmpdir=$$(mktemp -d); \
|
||||
rpm2cpio ${DEBUGINFO_RPM} | ( cd $$tmpdir; cpio -i -d -u); \
|
||||
dest=/var/cache/debuginfo/lib; \
|
||||
find $$tmpdir/usr/lib/debug/ -mindepth 1 -maxdepth 1 | while read -r d; do \
|
||||
sudo chown -R dbginfo:dbginfo "$$d"; \
|
||||
sudo cp -a "$$d" $$dest/; \
|
||||
done; \
|
||||
dest=/var/cache/debuginfo/src; \
|
||||
find $$tmpdir/usr/src/debug/ -mindepth 1 -maxdepth 1 | while read -r d; do \
|
||||
sudo chown -R dbginfo:dbginfo "$$d"; \
|
||||
sudo cp -a "$$d" $$dest/; \
|
||||
done; \
|
||||
sudo rm -rf $$tmpdir
|
||||
|
||||
#help install-local: Install locally built RPMs to the root filesystem. Note that the
|
||||
#help debuginfo RPM installs to /var/cache/debuginfo
|
||||
install-local:
|
||||
for r in $(filter-out ${DEBUGINFO_RPM},${RPMS}); do \
|
||||
rpm2cpio $$r | (cd /; sudo cpio -i -d -u); \
|
||||
done
|
||||
$(MAKE) install-debuginfo-local
|
||||
|
||||
#help generateupstream: Run this rule to create or update the 'upstream' file
|
||||
#help by downloading the upstream source tarballs listed in the spec file and
|
||||
#help calculating their hashes. Autospec performs this step automatically, so
|
||||
|
||||
+3
-1
@@ -190,13 +190,15 @@ releases: $(PACKAGES_FILE) $(addprefix packages/,$(PKGS_LOCAL))
|
||||
provides:
|
||||
@$(TOPLVL)/projects/common/provides.sh -f $(FP) -r $(RN)
|
||||
|
||||
preautospecnew-checks:
|
||||
|
||||
#help autospecnew: Creates a new autospec package with for a given URL=$(URL)
|
||||
#help with NAME=$(NAME). Several files used by autospec will be created in the
|
||||
#help process.
|
||||
#help Use MOCK_OPTS environment varible to pass down arbitrary mock options
|
||||
#help to autospec.
|
||||
#help For more information about autospec, see the project page on Github https://github.com/clearlinux/autospec
|
||||
autospecnew: localreponotice
|
||||
autospecnew: preautospecnew-checks localreponotice
|
||||
@if [ -z $(NAME) ] || [ -z $(URL) ]; then \
|
||||
echo "Please specify NAME and URL. The ARCHIVES variable is optional."; \
|
||||
exit 1; \
|
||||
|
||||
@@ -24,6 +24,7 @@ LibRaw
|
||||
LibVNCServer
|
||||
Linux-PAM
|
||||
LuaJIT
|
||||
M2Crypto
|
||||
Mako
|
||||
Markdown
|
||||
MarkupSafe
|
||||
@@ -40,6 +41,7 @@ Pint
|
||||
PyDispatcher
|
||||
PyJWT
|
||||
PyMySQL
|
||||
PyNaCl
|
||||
PyWavelets
|
||||
PyYAML
|
||||
Pygments
|
||||
@@ -89,6 +91,7 @@ R-GeneralizedHyperbolic
|
||||
R-GlobalOptions
|
||||
R-Guerry
|
||||
R-Hmisc
|
||||
R-ICEbox
|
||||
R-ICS
|
||||
R-ICSNP
|
||||
R-IRdisplay
|
||||
@@ -443,6 +446,7 @@ R-locfit
|
||||
R-logspline
|
||||
R-loo
|
||||
R-lpSolve
|
||||
R-lsei
|
||||
R-lsmeans
|
||||
R-lubridate
|
||||
R-mFilter
|
||||
@@ -501,6 +505,7 @@ R-neuralnet
|
||||
R-nleqslv
|
||||
R-nloptr
|
||||
R-nortest
|
||||
R-npsurv
|
||||
R-numDeriv
|
||||
R-nws
|
||||
R-nycflights13
|
||||
@@ -524,6 +529,7 @@ R-pcaPP
|
||||
R-pcse
|
||||
R-pdfCluster
|
||||
R-pdftools
|
||||
R-pdp
|
||||
R-permute
|
||||
R-phangorn
|
||||
R-pheatmap
|
||||
@@ -780,6 +786,9 @@ Theano
|
||||
Thunar
|
||||
UkPostcodeParser
|
||||
Vertex-theme
|
||||
Vulkan-Headers
|
||||
Vulkan-Loader
|
||||
Vulkan-Tools
|
||||
WALinuxAgent
|
||||
WSGIProxy2
|
||||
WSME
|
||||
@@ -868,6 +877,7 @@ argparse
|
||||
ark
|
||||
artikulate
|
||||
asciidoc
|
||||
asciinema
|
||||
asio
|
||||
asn1crypto
|
||||
aspell
|
||||
@@ -922,6 +932,7 @@ bashdb
|
||||
bats
|
||||
bazel
|
||||
bc
|
||||
bcc
|
||||
bcrypt
|
||||
bdftopcf
|
||||
beautifulsoup4
|
||||
@@ -1007,6 +1018,7 @@ cgdb
|
||||
cgit
|
||||
chardet
|
||||
check
|
||||
check-manifest
|
||||
cheese
|
||||
cheroot
|
||||
chrome-gnome-shell
|
||||
@@ -1087,6 +1099,7 @@ commonmark
|
||||
compat-SDL2-soname1
|
||||
compat-cryptsetup-soname4
|
||||
compat-efivar-soname0
|
||||
compat-enchant-soname1
|
||||
compat-fuse-soname2
|
||||
compat-gegl
|
||||
compat-gegl-0.3
|
||||
@@ -1097,10 +1110,12 @@ compat-hdf5-soname10
|
||||
compat-hyperscan-soname4
|
||||
compat-ipset-soname10
|
||||
compat-libical-soname2
|
||||
compat-libidn-soname11
|
||||
compat-libpng-soname12
|
||||
compat-libwebp-soname6
|
||||
compat-llvm-soname4
|
||||
compat-llvm-soname5
|
||||
compat-llvm-soname6
|
||||
compat-mpfr-soname4
|
||||
compat-opencv-soname32
|
||||
compat-opencv-soname33
|
||||
@@ -1124,8 +1139,10 @@ cov-core
|
||||
coverage
|
||||
cpio
|
||||
cppcheck
|
||||
cpprestsdk
|
||||
cppunit
|
||||
cpuid
|
||||
cpuloadgen
|
||||
cracklib
|
||||
crcmod
|
||||
createrepo_c
|
||||
@@ -1150,6 +1167,7 @@ cyrus-sasl
|
||||
dapl
|
||||
darktable
|
||||
dask
|
||||
datefudge
|
||||
db
|
||||
dbus
|
||||
dbus-broker
|
||||
@@ -1185,6 +1203,7 @@ django-discover-runner
|
||||
django-nose
|
||||
django-pyscss
|
||||
django_compressor
|
||||
dlt-daemon
|
||||
dmenu
|
||||
dmidecode
|
||||
dnf
|
||||
@@ -1208,6 +1227,7 @@ dosfstools
|
||||
double-conversion
|
||||
dovecot
|
||||
doxygen
|
||||
dpcontracts
|
||||
dpdk
|
||||
dracut
|
||||
dragon
|
||||
@@ -1230,8 +1250,10 @@ efivar
|
||||
eigen
|
||||
elasticsearch
|
||||
elasticsearch-dep
|
||||
electric-fence
|
||||
elementary-xfce
|
||||
elfutils
|
||||
elixir
|
||||
emacs
|
||||
empy
|
||||
enchant
|
||||
@@ -1285,6 +1307,7 @@ flake8-docstrings
|
||||
flake8-import-order
|
||||
flake8-polyfill
|
||||
flatpak
|
||||
flatpak-builder
|
||||
fldigi
|
||||
flex
|
||||
flmsg
|
||||
@@ -1296,6 +1319,8 @@ font-adobe-75dpi
|
||||
font-bitstream-type1
|
||||
font-util
|
||||
fontconfig
|
||||
fontforge
|
||||
fonttools
|
||||
frameworkintegration
|
||||
freeglut
|
||||
freeipmi
|
||||
@@ -1480,6 +1505,7 @@ help2man
|
||||
hexchat
|
||||
hgtools
|
||||
hicolor-icon-theme
|
||||
hold
|
||||
home-assistant
|
||||
horizon
|
||||
hostname
|
||||
@@ -1512,7 +1538,10 @@ icon-naming-utils
|
||||
icu4c
|
||||
idna
|
||||
idna-ssl
|
||||
ifaddr
|
||||
iftop
|
||||
ilmbase
|
||||
image
|
||||
imagesize
|
||||
imapfilter
|
||||
imlib2
|
||||
@@ -1522,14 +1551,18 @@ influxdb
|
||||
iniparse
|
||||
init-rdahead
|
||||
inotify-tools
|
||||
intel-gmmlib
|
||||
intel-gpu-tools
|
||||
intel-hybrid-driver
|
||||
intel-media-driver
|
||||
intltool
|
||||
ioc-cbc-tools
|
||||
ioping
|
||||
iotop
|
||||
ipaddr
|
||||
ipaddress
|
||||
ipdb
|
||||
ipdbplugin
|
||||
iperf
|
||||
ipmctl
|
||||
ipmitool
|
||||
@@ -1586,6 +1619,7 @@ jupyter_console
|
||||
jupyter_core
|
||||
jupyterlab
|
||||
jupyterlab_launcher
|
||||
jupyterlab_server
|
||||
kactivities
|
||||
kactivities-stats
|
||||
kactivitymanagerd
|
||||
@@ -1758,6 +1792,7 @@ kqtquickcharts
|
||||
krb5
|
||||
krdc
|
||||
kreversi
|
||||
krita
|
||||
kross
|
||||
kruler
|
||||
krunner
|
||||
@@ -1874,6 +1909,7 @@ libe-book
|
||||
libepoxy
|
||||
libepubgen
|
||||
liberasurecode
|
||||
liberation-fonts
|
||||
libetonyek
|
||||
libev
|
||||
libevdev
|
||||
@@ -1906,10 +1942,12 @@ libgusb
|
||||
libgweather
|
||||
libical
|
||||
libidn
|
||||
libidn2
|
||||
libindicator
|
||||
libinput
|
||||
libiscsi
|
||||
libisofs
|
||||
libite
|
||||
libjpeg-turbo
|
||||
libjpeg-turbo-soname8
|
||||
libkcddb
|
||||
@@ -1985,9 +2023,11 @@ libsigc++
|
||||
libsmbios
|
||||
libsmi
|
||||
libsndfile
|
||||
libsodium
|
||||
libsolv
|
||||
libsoup
|
||||
libspectre
|
||||
libspiro
|
||||
libsrtp
|
||||
libssh
|
||||
libssh2
|
||||
@@ -1999,6 +2039,8 @@ libtheora
|
||||
libtirpc
|
||||
libtool
|
||||
libudev0-shim
|
||||
libuev
|
||||
libuninameslist
|
||||
libunistring
|
||||
libunwind
|
||||
libusb
|
||||
@@ -2036,6 +2078,8 @@ libyami-utils
|
||||
libzip
|
||||
libzmf
|
||||
libzmq
|
||||
lightdm
|
||||
lightdm-gtk-greeter
|
||||
linecache2
|
||||
links
|
||||
linux
|
||||
@@ -2046,6 +2090,8 @@ linux-gce
|
||||
linux-hyperv
|
||||
linux-hyperv-lts
|
||||
linux-hyperv-mini
|
||||
linux-iot-lts2017-preempt-rt
|
||||
linux-iot-lts2018
|
||||
linux-kata
|
||||
linux-kvm
|
||||
linux-libc-headers
|
||||
@@ -2061,6 +2107,7 @@ lksctp-tools
|
||||
llvm
|
||||
llvmlite
|
||||
lmdb
|
||||
locket
|
||||
logilab-common
|
||||
logrotate
|
||||
logutils
|
||||
@@ -2069,6 +2116,7 @@ lsacpi
|
||||
lshw
|
||||
lskat
|
||||
lsof
|
||||
lsscsi
|
||||
ltp
|
||||
ltrace
|
||||
lua
|
||||
@@ -2118,6 +2166,7 @@ mistune
|
||||
mixer-tools
|
||||
mkfontdir
|
||||
mkfontscale
|
||||
mkl-dnn
|
||||
mkosi
|
||||
mobile-broadband-provider-info
|
||||
mock
|
||||
@@ -2144,6 +2193,7 @@ mpfr
|
||||
mpg123
|
||||
mpi4py
|
||||
mpmath
|
||||
mraa
|
||||
msgpack
|
||||
msmtp
|
||||
msr-tools
|
||||
@@ -2161,6 +2211,7 @@ mutt
|
||||
mutter
|
||||
mypaint-brushes
|
||||
mypy
|
||||
mypy_extensions
|
||||
mythes
|
||||
nagios-plugins
|
||||
nano
|
||||
@@ -2214,8 +2265,10 @@ nrpe
|
||||
nspr
|
||||
nss
|
||||
nss-altfiles
|
||||
nss-pam-ldapd
|
||||
ntfs-3g
|
||||
ntlm-auth
|
||||
ntp
|
||||
ntplib
|
||||
numactl
|
||||
numatop
|
||||
@@ -2230,11 +2283,13 @@ ocaml
|
||||
ocl-icd
|
||||
octave
|
||||
offlineimap
|
||||
oiio
|
||||
okular
|
||||
olefile
|
||||
onig
|
||||
onnx
|
||||
opa-psm2
|
||||
opcodes
|
||||
open-iscsi
|
||||
open-isns
|
||||
open-lldp
|
||||
@@ -2244,6 +2299,7 @@ openal-soft
|
||||
openblas
|
||||
openconnect
|
||||
opencv
|
||||
openexr
|
||||
openjade
|
||||
openjdk
|
||||
openjdk9
|
||||
@@ -2305,6 +2361,9 @@ p11-kit
|
||||
p7zip
|
||||
packaging
|
||||
pacrunner
|
||||
paho-mqtt
|
||||
paho.mqtt.c
|
||||
paho.mqtt.cpp
|
||||
palapeli
|
||||
pandas
|
||||
pandoc
|
||||
@@ -2317,6 +2376,7 @@ paramiko
|
||||
parley
|
||||
parsedatetime
|
||||
parso
|
||||
partd
|
||||
parted
|
||||
passlib
|
||||
patch
|
||||
@@ -2418,6 +2478,7 @@ perl-Clone-PP
|
||||
perl-Compress-Bzip2
|
||||
perl-Compress-Raw-Lzma
|
||||
perl-Config-Any
|
||||
perl-Config-General
|
||||
perl-Config-Grammar
|
||||
perl-Config-IniFiles
|
||||
perl-Config-Std
|
||||
@@ -2728,6 +2789,7 @@ perl-Net-IDN-Encode
|
||||
perl-Net-INET6Glue
|
||||
perl-Net-Ident
|
||||
perl-Net-MAC
|
||||
perl-Net-MQTT
|
||||
perl-Net-NTP
|
||||
perl-Net-OpenID-Common
|
||||
perl-Net-OpenID-Consumer
|
||||
@@ -3078,11 +3140,12 @@ pyemd
|
||||
pyflakes
|
||||
pygobject
|
||||
pyinotify
|
||||
pykerberos
|
||||
pylama
|
||||
pyliblzma
|
||||
pylint
|
||||
pymemcache
|
||||
pymongo
|
||||
pynacl
|
||||
pypandoc
|
||||
pyparsing
|
||||
pyperclip
|
||||
@@ -3090,6 +3153,7 @@ pypowervm
|
||||
pyquery
|
||||
pyreadline
|
||||
pyrfc3339
|
||||
pyroma
|
||||
pyroute2
|
||||
pyrsistent
|
||||
pysaml2
|
||||
@@ -3099,6 +3163,7 @@ pysnmp
|
||||
pytest
|
||||
pytest-cov
|
||||
pytest-forked
|
||||
pytest-randomly
|
||||
pytest-repeat
|
||||
pytest-rerunfailures
|
||||
pytest-runner
|
||||
@@ -3112,12 +3177,14 @@ python-barbicanclient
|
||||
python-ceilometerclient
|
||||
python-cinderclient
|
||||
python-dateutil
|
||||
python-dateutil-legacypython
|
||||
python-designateclient
|
||||
python-editor
|
||||
python-future
|
||||
python-gflags
|
||||
python-glanceclient
|
||||
python-heatclient
|
||||
python-hwinfo
|
||||
python-kconfiglib
|
||||
python-keystoneclient
|
||||
python-krbV
|
||||
@@ -3150,6 +3217,7 @@ python-urwid
|
||||
python-zaqarclient
|
||||
python-zeep
|
||||
python3
|
||||
pytools
|
||||
pytz
|
||||
pyudev
|
||||
pywbem
|
||||
@@ -3203,6 +3271,8 @@ quagga
|
||||
quassel
|
||||
quilt
|
||||
rabbitmq-c
|
||||
rabbitmq-server
|
||||
radvd
|
||||
ragel
|
||||
raptor2
|
||||
rasqal
|
||||
@@ -3218,8 +3288,10 @@ redsocks
|
||||
reno
|
||||
reportlab
|
||||
repoze.lru
|
||||
repoze.sphinx.autointerface
|
||||
repoze.who
|
||||
requests
|
||||
requests-kerberos
|
||||
requests-mock
|
||||
requests-ntlm
|
||||
requests-toolbelt
|
||||
@@ -3275,6 +3347,7 @@ sed
|
||||
selenium
|
||||
semantic_version
|
||||
serf
|
||||
serpent
|
||||
setproctitle
|
||||
setserial
|
||||
setuptools
|
||||
@@ -3286,6 +3359,7 @@ sg3_utils
|
||||
shadow
|
||||
shared-mime-info
|
||||
sharutils
|
||||
shell
|
||||
shim
|
||||
siege
|
||||
simg-tools
|
||||
@@ -3333,6 +3407,7 @@ sqlite-autoconf
|
||||
sqlparse
|
||||
squashfs-tools
|
||||
sshfs
|
||||
sshpass
|
||||
sssd
|
||||
stack
|
||||
startup-notification
|
||||
@@ -3421,6 +3496,7 @@ tiptop
|
||||
tk
|
||||
tmux
|
||||
tokyocabinet
|
||||
toolz
|
||||
tooz
|
||||
tornado
|
||||
totem
|
||||
@@ -3467,6 +3543,7 @@ uwsgi
|
||||
v4l-utils
|
||||
vala
|
||||
valgrind
|
||||
varnish-cache
|
||||
vcstool
|
||||
vcversioner
|
||||
vim
|
||||
@@ -3483,10 +3560,10 @@ voluptuous
|
||||
voluptuous-serialize
|
||||
vsqlite
|
||||
vte
|
||||
vulkan-sdk
|
||||
waffle
|
||||
waitress
|
||||
warlock
|
||||
watchdogd
|
||||
wayland
|
||||
wayland-protocols
|
||||
wcwidth
|
||||
@@ -3501,6 +3578,7 @@ weston
|
||||
wget
|
||||
wheel
|
||||
which
|
||||
whois
|
||||
widgetsnbextension
|
||||
winpdb
|
||||
wireless-regdb-master
|
||||
@@ -3600,7 +3678,6 @@ yelp-tools
|
||||
yelp-xsl
|
||||
yum
|
||||
yum-metadata-parser
|
||||
yum-utils
|
||||
zVMCloudConnector
|
||||
zake
|
||||
zc.lockfile
|
||||
|
||||
+12
-3
@@ -6,6 +6,7 @@ SERVERCA=""
|
||||
CLIENTCA=""
|
||||
WORKSPACE="clearlinux"
|
||||
PACKAGE_REPOS=
|
||||
NEEDS_KVM_GROUP=
|
||||
|
||||
help() {
|
||||
printf "%s\n" >&2 "Usage: $SCRIPT [options]" \
|
||||
@@ -115,6 +116,10 @@ required_progs() {
|
||||
|
||||
required_progs
|
||||
|
||||
if ! groups | grep -qw kvm; then
|
||||
NEEDS_KVM_GROUP=1
|
||||
fi
|
||||
|
||||
echo "Initializing development workspace in \"$WORKSPACE\" . . ."
|
||||
|
||||
mkdir "$WORKSPACE"
|
||||
@@ -146,8 +151,10 @@ if [ "$USE_KOJI" ]; then
|
||||
fi
|
||||
fi
|
||||
|
||||
echo "Adding user to kvm group . . ."
|
||||
sudo usermod -a -G kvm $USER
|
||||
if [ -n "$NEEDS_KVM_GROUP" ]; then
|
||||
echo "Adding user to kvm group . . ."
|
||||
sudo usermod -a -G kvm $USER
|
||||
fi
|
||||
|
||||
echo "Cloning special project repositories . . ."
|
||||
make ${JOBS_ARG} clone-projects
|
||||
@@ -179,7 +186,9 @@ if [ -z "$PACKAGE_REPOS" ]; then
|
||||
echo "NOTE: To clone all package repos, run \"cd $WORKSPACE; make [-j NUM] clone-packages\""
|
||||
echo "NOTE: To clone a single package repo with NAME, run \"cd $WORKSPACE; make clone_NAME\""
|
||||
fi
|
||||
echo 'NOTE: logout and log back in to finalize the setup process'
|
||||
if [ -n "$NEEDS_KVM_GROUP" ]; then
|
||||
echo 'NOTE: logout and log back in to finalize the setup process'
|
||||
fi
|
||||
|
||||
|
||||
# vi: ft=sh sw=2 et sts=2
|
||||
|
||||
Reference in New Issue
Block a user