Displaying 5 results from an estimated 5 matches for "direstory".
Did you mean:
directory
2006 Dec 12
3
problem with acls and dos mode in 3.0.23d
Hello!
I have direstory with following acl:
getfacl Visio2002
# file: Visio2002
# owner: ilyin
# group: ilyin
user::rwx
user:dm:rwx
user:pitomtsev:rwx
user:nap:rwx
user:mav:rwx
user:goi:rwx
user:ilyin:rwx
user:huzyahmetov:rwx
group::r-x
group:common:r-x
mask::rwx
other::---
default:user::rwx
default:user:pitomtsev:rwx
de...
2018 Sep 12
2
ca-bundle questions
...a-bundle-trust.crt and
ca-bundle.crt -> /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem
I'm not sure how exactly I'm supposed to use thes files to update those
locations. one points to a .pem file, which the .rpmnew file is not, and
there is no file of the corresponding name in the direstory pointed to
by the link.
Shouldn't the rpm have "done the right thing", and put them where they
belong?
-chuck
--
2016 Jan 29
1
Re: Write content to file from Dockerfile and/or any other method
...; "/etc/yum.repos.d/MariaDB.repo"
>
> You probably want to do a COPY. The Docker docs cover Dockerfile syntax
> in detail:
>
> https://docs.docker.com/engine/reference/builder/#copy
Yep, this is a much better way to do such things.
create the 'MariaDB.repo' in the direstory the 'Dockerfile' resides in,
and use the following line in the Dockerfile:
[code]
COPY MariaDB.repo /etc/yum.repos.d/MariaDB.repo
[/code]
much better that way, for further tips on Dockerfile writing,
I'll point you to the offical site "docs.docker.com", esp:
https://docs....
2018 Sep 13
0
ca-bundle questions
...icates-2018.2.22-70.0.el7_5.noarch
> > >
> > > I'm not sure how exactly I'm supposed to use thes files to update those
> > > locations. one points to a .pem file, which the .rpmnew file is not, and
> > > there is no file of the corresponding name in the direstory pointed to
> > > by the link.
What do the .rpmnew files contain? The repository version of those
files are symlinks, so to me it looks like some other package is trying
to install those files.
> > >
> > > Shouldn't the rpm have "done the right thing", and...
2016 Jan 29
2
Write content to file from Dockerfile and/or any other method
I am building a Dockerfile and I am setting up MariaDB repos as follow:
# Setup MariaDB repos
RUN touch /etc/yum.repos.d/MariaDB.repo
I should write this inside the MariaDB.repo file:
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/5.5/centos6-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
What's the right way to do this? The one below?
echo