Skip to content

Commit 60800b7

Browse files
authored
Installing gettext RPM (#359)
In order to work with yaml files for kubernetes deployments we need a tool to do variable substitutions. Usually we would use `yq` but Azure Linux is not packaging this binary the next best thing is envsubst which is provided by the gettext rpm.
1 parent d06979a commit 60800b7

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

linux/base.Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ RUN bash ./tdnfinstall.sh \
135135
terraform \
136136
gh \
137137
redis \
138-
cpio
138+
cpio \
139+
gettext
139140

140141
# Install azure-functions-core-tools
141142
RUN wget -nv -O Azure.Functions.Cli.zip `curl -fSsL https://api.github.com/repos/Azure/azure-functions-core-tools/releases/latest | grep "url.*linux-x64" | grep -v "sha2" | cut -d '"' -f4` \

tests/command_list

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ autoheader
8282
autom4te
8383
automake
8484
automake-1.16
85+
autopoint
8586
autoreconf
8687
autoscan
8788
autoupdate
@@ -302,6 +303,7 @@ enable
302303
enc2xs
303304
encguess
304305
env
306+
envsubst
305307
eqn
306308
eqn2graph
307309
erb
@@ -387,7 +389,7 @@ fuser
387389
futurize
388390
g++
389391
gawk
390-
gawk-5.1.0
392+
gawk-5.1.1
391393
gcc
392394
gcc-ar
393395
gcc-nm
@@ -427,6 +429,9 @@ getpcaps
427429
getpidcon
428430
getsebool
429431
getseuser
432+
gettext
433+
gettextize
434+
gettext.sh
430435
gh
431436
gindxbib
432437
git
@@ -684,7 +689,7 @@ libtool
684689
libtoolize
685690
link
686691
linkerd
687-
linkerd-stable-2.11.4
692+
linkerd-stable-2.14.1
688693
linux32
689694
linux64
690695
lkbib
@@ -782,6 +787,20 @@ mountpoint
782787
mount.smb3
783788
mpicalc
784789
mpstat
790+
msgattrib
791+
msgcat
792+
msgcmp
793+
msgcomm
794+
msgconv
795+
msgen
796+
msgexec
797+
msgfilter
798+
msgfmt
799+
msggrep
800+
msginit
801+
msgmerge
802+
msgunfmt
803+
msguniq
785804
mssql-scripter
786805
mssql-scripter.bat
787806
mt
@@ -841,6 +860,7 @@ newgidmap
841860
newgrp
842861
newuidmap
843862
newusers
863+
ngettext
844864
nice
845865
niceload
846866
ninfod
@@ -1023,6 +1043,7 @@ readonly
10231043
readprofile
10241044
realpath
10251045
reboot
1046+
recode-sr-latin
10261047
redis-benchmark
10271048
redis-check-aof
10281049
redis-check-rdb
@@ -1366,6 +1387,7 @@ x86_64-pc-linux-gnu-gcc-nm
13661387
x86_64-pc-linux-gnu-gcc-ranlib
13671388
xargs
13681389
xauth
1390+
xgettext
13691391
xml2-config
13701392
xmlcatalog
13711393
xmllint

0 commit comments

Comments
 (0)