mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
start of 'is chroot' fact
probably missing cornercases for some linux/bsd setups and other OSs
This commit is contained in:
parent
6a6f88d035
commit
314e6d0d8a
2 changed files with 37 additions and 0 deletions
|
@ -23,6 +23,7 @@ from ansible.module_utils.facts.other.ohai import OhaiFactCollector
|
|||
|
||||
from ansible.module_utils.facts.system.apparmor import ApparmorFactCollector
|
||||
from ansible.module_utils.facts.system.caps import SystemCapabilitiesFactCollector
|
||||
from ansible.module_utils.facts.system.chroot import ChrootFactCollector
|
||||
from ansible.module_utils.facts.system.cmdline import CmdLineFactCollector
|
||||
from ansible.module_utils.facts.system.distribution import DistributionFactCollector
|
||||
from ansible.module_utils.facts.system.date_time import DateTimeFactCollector
|
||||
|
@ -74,6 +75,7 @@ from ansible.module_utils.facts.virtual.sunos import SunOSVirtualCollector
|
|||
|
||||
# TODO: make config driven
|
||||
collectors = [ApparmorFactCollector,
|
||||
ChrootFactCollector,
|
||||
CmdLineFactCollector,
|
||||
DateTimeFactCollector,
|
||||
DistributionFactCollector,
|
||||
|
|
35
lib/ansible/module_utils/facts/system/chroot.py
Normal file
35
lib/ansible/module_utils/facts/system/chroot.py
Normal file
|
@ -0,0 +1,35 @@
|
|||
# Copyright (c) 2017 Ansible Project
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
import os
|
||||
|
||||
from ansible.module_utils.facts.collector import BaseFactCollector
|
||||
|
||||
|
||||
def is_chroot():
|
||||
|
||||
is_chroot = None
|
||||
|
||||
if os.environ.get('debian_chroot', False):
|
||||
is_chroot = True
|
||||
else:
|
||||
my_root = os.stat('/')
|
||||
try:
|
||||
# check if my file system is the root one
|
||||
proc_root = os.stat('/proc/1/root/.')
|
||||
is_chroot = my_root.st_ino != proc_root.st_ino or my_root.st_dev != proc_root.st_dev
|
||||
except:
|
||||
# I'm not root or no proc, fallback to checking it is inode #2
|
||||
is_chroot = (my_root.st_ino != 2)
|
||||
|
||||
return is_chroot
|
||||
|
||||
|
||||
class ChrootFactCollector(BaseFactCollector):
|
||||
name = 'chroot'
|
||||
_fact_ids = set(['is_chroot'])
|
||||
|
||||
def collect(self, module=None, collected_facts=None):
|
||||
return {'is_chroot': is_chroot()}
|
Loading…
Reference in a new issue