You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The options addParentDirs = false as provided in the example:
from('endorsed') {
// Will tell redline-rpm not to auto create directories, which
// is sometimes necessary to avoid rpm directory conflicts
addParentDirs = false
into '/usr/share/tomcat/endorsed'
}
does not seem to work.
Trying
from('scripts/anet.service') {
ospackage {
release = '2'
os = LINUX
into '/opt'
from(jpackageImage.outputs.files)
from('anet.yml') {
rename('anet.yml', 'anet.yml.template')
into 'anet/docs'
}
from('docs/INSTALL.md') { into 'anet/docs' }
from('docs/TROUBLESHOOT.md') { into 'anet/docs' }
from('anet-dictionary.yml') {
rename('anet-dictionary.yml', 'anet-dictionary.yml.template')
into 'anet/docs'
}
from('prepare-psql.sql') {
into 'anet/docs'
}
from('prepare-mssql.sql') {
into 'anet/docs'
}
from('scripts/anet.service') {
addParentDirs = false // <-------------------------------------------
into '/etc/systemd/system/'
}
}
Transaction check error:
file /etc/systemd from install of anet-0:2.1.33~133~g529c3de10-2.x86_64 conflicts with file from package systemd-219-62.el7_6.16.x86_64
file /etc/systemd/system from install of anet-0:2.1.33~133~g529c3de10-2.x86_64 conflicts with file from package systemd-219-62.el7_6.16.x86_64
The options
addParentDirs = false
as provided in the example:does not seem to work.
Trying
outputs:
expected output:
causing error:
Causing: NCI-Agency/anet#3303
Related: #120, #355, https://serverfault.com/questions/775647/installing-rpm-package-to-systemd/775653
The text was updated successfully, but these errors were encountered: