Displaying 20 results from an estimated 200 matches similar to: "Can't remove a physical_volume from a volume_group"
2010 Oct 15
2
puppet-lvm and volume group issues
Trying to setup a volume group with puppet lvm and this:-
volume_group { "my_vg":
ensure => present,
physical_volumes => "/dev/sdb /dev/sdc /dev/sdd",
require => [ Physical_volume["/dev/sdb"],
Physical_volume["/dev/sdc"],
Physical_volume["/dev/sdd"]
]
}
Fails with this in the debug
2012 Aug 11
8
Pass array to a define
How can I pass an array to a define? It''s not documented in the puppet
language guide.
I''ve got:
define lvm::create_vg ( $pvdisks ) {
exec {
''pvcreate'':
command => "/sbin/pvcreate -yf $pvdisks",
unless => "/sbin/pvdisplay $pvdisks",
...
}
}
class someclass {
lvm::create_vg {
2012 Jan 17
29
pass values to puppet-lvm
i would like to use the module puppet-lvm and would like to pass
values to it.
I have it setup properly as a module but I can''t for the lfe of me get
it to take any values that I put in my baseconfig.pp in my home
folder.
like shouldn''t something like this work??
puppet-lvm {''setvolume'':
vg => ''myvg'',
pv =>
2012 Aug 14
8
Custom Providers and Environmemts.
I''ve installed the puppet labs lvm module. After fixing the missing
"}" at line 20 in init.pp (really?!?!), I''m getting this:''
err: Could not retrieve catalog from remote server: Error 400 on
SERVER: Puppet::Parser::AST::Resource failed with error ArgumentError:
Invalid resource type physical_volume at
/truth/sauce/env/prod/modules/role/manifests/common.pp:43
2013 Jan 08
3
Puppet LVM create volume maximum size
Hello,
Using the LVM module/providers from the forge I want to create a logical
volume at the maximum size and I cannot work out how to do this.
physical_volume -> volume_group -> logical_volume -> filesystem -> mount
All works fine but you have to hard code the size for the logical volume.
Anyone know if this is possible ?
Thanks
Paul
--
You received this message because you
2011 Mar 14
1
configsync requires 2nd puppet run for plugin loading to work
First run of puppet performs a configsync and an attempt to load the
downloaded plugins, the provider fails to be found by puppet in this
first run, another re-run of puppet is needed for the provider to
work, see debug output below.
Is this a bug or am I missing something you think?
The error in short:
err: /Stage[main]/Ibe::Slave/Logical_volume[mysql]: Could not
evaluate: No ability to
2012 Oct 08
1
Resource Scope
I can''t work this out and I''m getting frustrated. :(
Puppet is complaining:
err: Failed to apply catalog: Could not find dependency
Lvm::Volume_group[bcvg] for Lvm::Application_volume[cache] at
/truth/sauce/env/prod/modules/object_store/manifests/server.pp:47
Yet, if I comment out that line so that puppet runs ok, and then look
at the state.yml file on the client, I see:
2013 Sep 25
3
Best Practice to remove an ISCSI LVM from a system
Hi,
I'd like to know what would be the best way to remove an iscsi lvm
storage from a server. (removing all reference to that storage etc.)
The storage in question will be reset and reformated and used on a
different server; so no LVM export is needed.
Do I have to do lvremove ..., vgremove ..., pvremove ... and do an
iscsiadm -m node -T ... -p ... -u and
iscsiadm -m node -o delete -T ...
2012 Aug 29
1
delete storage pool error
hi,all
I create pool with lvm,but i carelessly add a blank space in the pool name
like ' lvm_pool' , now I want to delete this pool,but encounter a error:
error: Failed to delete pool lvm_pool
error: internal error Child process (/sbin/vgremove -f lvm_pool) status
unexpected: exit status 5
how to solve this problem?
thanks
-------------- next part --------------
An HTML attachment
2011 Apr 08
1
Kickstart and lvm
I've written some %pre code to grab a few files off a logical volume, if it
exits, before the disk gets formatted, but can't get get it to work correctly.
Essentially:
%pre
...
lvm vgscan
lvm vgchange -a y
...
if [ -d /dev/vol0 ]; then
# do stuff
fi
lvm vgremove -f vol0
The problem is that /dev/vol0 does not exist after lvm vgchange. I added a
few debug statements (lvm pvdisplay, lvm
2016 Aug 05
1
CentOS 7 kickstart question
On Thu, August 4, 2016 7:13 pm, Paul Heinlein wrote:
> On Thu, 4 Aug 2016, Valeri Galtsev wrote:
>
>> Dear Experts,
>>
>> Could somebody point to kicstart HOWTO specific for CentOS 7?
>>
>> On CentOS 7 I somehow am always given human intervention questions
>> about drive which defeats unattended ks install.
>>
>> At least one snag I hit
2011 May 25
1
Hook script to preserve one partition untouched during install
This hook script tries to address the fact that a RHEV-H installation
will format all the storage devices available in the machine in order to
create HostVG and AppVG with all the available space. It may be the case
that RHEV-H needs to respect and co-exist with a proposed partitioning
scheme, not getting all the storage space for HostVG and AppVG volume
groups.
The proposed solution adds the
2016 Aug 04
4
CentOS 7 kickstart question
Dear Experts,
Could somebody point to kicstart HOWTO specific for CentOS 7?
On CentOS 7 I somehow am always given human intervention questions about
drive which defeats unattended ks install.
<rant ??>
I'm doing kickstart installations for quite some time, normally I was just
installing system when new release comes, and am basing kickstart file on
anaconda-ks.cfg - with some
2010 Mar 31
1
[PATCH node] Handle space in storage wwid
Quote everywhere that we reference wwid in o-c-storage, o-c-boot
and ovirt-functions.
Signed-off-by: Mike Burns <mburns at redhat.com>
---
scripts/ovirt-config-boot | 6 +-
scripts/ovirt-config-storage | 178 +++++++++++++++++++++---------------------
scripts/ovirt-functions | 38 +++++-----
3 files changed, 111 insertions(+), 111 deletions(-)
diff --git
2005 Jun 23
0
About using LVM
Hello people,
I''m starting using XEN with LVM and I have to say that LVM seems very good
to me. But I have a problem, the Volume Group that I create (with Physical
Volumes and formatted Logical Volumes inside) dissappears when I reboot my
computer. I mean it doesn''t disappears, /dev/volume_group directory
disappears, so I can''t mount it, or use them with XEN.
Could
2011 Nov 15
10
Adding a parameter to a custom Puppet type/provider
Hi All,
I''ve downloaded a Puppet module and I''m trying to add a parameter to it by
editing lib/puppet/type/<resource>.rb. I simply added:
newproperty(:pcfree) do
desc "My description here"
end
In the corresponding file in lib/puppet/provider, I do something with
:pcfree.
Whenever I call the resource from Puppet with my new parameter, it keeps
2011 Jul 29
0
[PATCH node] Add debugging info to dracut plugin
Signed-off-by: Mike Burns <mburns at redhat.com>
---
dracut/ovirt-cleanup.sh | 15 ++++++++++++---
1 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/dracut/ovirt-cleanup.sh b/dracut/ovirt-cleanup.sh
index a6762cf..f800bf2 100755
--- a/dracut/ovirt-cleanup.sh
+++ b/dracut/ovirt-cleanup.sh
@@ -20,24 +20,29 @@ elif getarg reinstall >/dev/null; then
elif getarg uninstall
2017 Apr 23
0
Proper way to remove a qemu-nbd-mounted volume usnig lvm
I either haven't searched for the right thing or the web doesn't contain
the answer.
I have used the following to mount an image and now I need to know the
proper way to reverse the process.
qemu-nbd -c /dev/nbd0 <qcow2 image using lvm>
vgscan --cache (had to use --cache to get the qemu-nbd volume to
be recognized, lvmetad is running)
vgchange -ay
2008 Feb 08
0
Installation problems with large mirrored drives (SU CCESS!)
Bowie Bailey wrote:
> I am trying to install CentOS 4.6 to a pair of 750GB hard drives. I
> can successfully install to either of the drives as a single drive,
> but when I try to use both drives and mirror the partitions, I start
> having problems. Anaconda crashes as it is trying to format the
> drives.
>
> This is what I'm trying to create:
>
> /dev/md0:
2016 Aug 05
0
CentOS 7 kickstart question
On Thu, 4 Aug 2016, Valeri Galtsev wrote:
> Dear Experts,
>
> Could somebody point to kicstart HOWTO specific for CentOS 7?
>
> On CentOS 7 I somehow am always given human intervention questions
> about drive which defeats unattended ks install.
>
> At least one snag I hit consistently with CentOS 7 kickstart is: it
> drops me into human decision as far as wiping hard