diff --git a/.dockerignore b/.dockerignore index b63f0cdfa..4172fe569 100644 --- a/.dockerignore +++ b/.dockerignore @@ -28,8 +28,8 @@ arkime-logs arkime-raw kubernetes malcolm-iso -sensor-iso -sensor-raspi +hedgehog-iso +hedgehog-raspi nginx/nginx_ldap*.conf pcap _site diff --git a/.github/workflows/sensor-iso-build-docker-wrap-push-ghcr.yml b/.github/workflows/hedgehog-iso-build-docker-wrap-push-ghcr.yml similarity index 87% rename from .github/workflows/sensor-iso-build-docker-wrap-push-ghcr.yml rename to .github/workflows/hedgehog-iso-build-docker-wrap-push-ghcr.yml index 14fe12261..76361ae13 100644 --- a/.github/workflows/sensor-iso-build-docker-wrap-push-ghcr.yml +++ b/.github/workflows/hedgehog-iso-build-docker-wrap-push-ghcr.yml @@ -1,4 +1,4 @@ -name: sensor-iso-build-docker-wrap-push-ghcr +name: hedgehog-iso-build-docker-wrap-push-ghcr on: push: @@ -6,10 +6,10 @@ on: - main - development paths: - - 'sensor-iso/**' + - 'hedgehog-iso/**' - 'shared/bin/*' - '.trigger_iso_workflow_build' - - '.github/workflows/sensor-iso-build-docker-wrap-push-ghcr.yml' + - '.github/workflows/hedgehog-iso-build-docker-wrap-push-ghcr.yml' workflow_dispatch: repository_dispatch: @@ -93,13 +93,13 @@ jobs: - name: Build image run: | - cp -r ./shared ./docs ./_config.yml ./_includes ./_layouts ./Gemfile ./README.md ./malcolm-iso/htpdate ./sensor-iso - cp ./scripts/malcolm_utils.py ./sensor-iso/shared/bin/ - cp ./scripts/documentation_build.sh ./sensor-iso/docs/ - cp -r ./arkime/patch ./sensor-iso/shared/arkime_patch - mkdir -p ./sensor-iso/suricata - cp -r ./suricata/rules-default ./sensor-iso/suricata/ - pushd ./sensor-iso + cp -r ./shared ./docs ./_config.yml ./_includes ./_layouts ./Gemfile ./README.md ./malcolm-iso/htpdate ./hedgehog-iso + cp ./scripts/malcolm_utils.py ./hedgehog-iso/shared/bin/ + cp ./scripts/documentation_build.sh ./hedgehog-iso/docs/ + cp -r ./arkime/patch ./hedgehog-iso/shared/arkime_patch + mkdir -p ./hedgehog-iso/suricata + cp -r ./suricata/rules-default ./hedgehog-iso/suricata/ + pushd ./hedgehog-iso echo "${{ steps.extract_malcolm_version.outputs.mversion }}" > ./shared/version.txt echo "${{ secrets.MAXMIND_GEOIP_DB_LICENSE_KEY }}" > ./shared/maxmind_license.txt echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" > ./shared/environment.chroot @@ -115,7 +115,7 @@ jobs: uses: aquasecurity/trivy-action@master with: scan-type: 'fs' - scan-ref: './sensor-iso' + scan-ref: './hedgehog-iso' format: 'sarif' output: 'trivy-results.sarif' severity: 'HIGH,CRITICAL' @@ -140,6 +140,6 @@ jobs: name: Build and push ISO image uses: docker/build-push-action@v5 with: - context: ./sensor-iso + context: ./hedgehog-iso push: true tags: ghcr.io/${{ github.repository_owner }}/malcolm/hedgehog:${{ steps.extract_branch.outputs.branch }} diff --git a/.github/workflows/sensor-raspi-build-docker-wrap-push-ghcr.yml b/.github/workflows/hedgehog-raspi-build-docker-wrap-push-ghcr.yml similarity index 96% rename from .github/workflows/sensor-raspi-build-docker-wrap-push-ghcr.yml rename to .github/workflows/hedgehog-raspi-build-docker-wrap-push-ghcr.yml index 0d5faee04..952e850ab 100644 --- a/.github/workflows/sensor-raspi-build-docker-wrap-push-ghcr.yml +++ b/.github/workflows/hedgehog-raspi-build-docker-wrap-push-ghcr.yml @@ -1,4 +1,4 @@ -name: sensor-raspi-build-docker-wrap-push-ghcr +name: hedgehog-raspi-build-docker-wrap-push-ghcr on: # push: @@ -76,7 +76,7 @@ jobs: - name: Build image run: | - pushd ./sensor-raspi + pushd ./hedgehog-raspi mkdir -p ./shared echo "${{ steps.extract_malcolm_version.outputs.mversion }}" > ./shared/version.txt echo "${{ secrets.MAXMIND_GEOIP_DB_LICENSE_KEY }}" > ./shared/maxmind_license.txt @@ -97,6 +97,6 @@ jobs: name: Build and push IMG image uses: docker/build-push-action@v5 with: - context: ./sensor-raspi + context: ./hedgehog-raspi push: true tags: ghcr.io/${{ github.repository_owner }}/malcolm/hedgehog-raspi:${{ steps.extract_branch.outputs.branch }} diff --git a/.gitignore b/.gitignore index eadc2e2ff..1b3fe1317 100644 --- a/.gitignore +++ b/.gitignore @@ -37,13 +37,13 @@ malcolm_netbox_backup_*.gz *-build.log Gemfile.lock _site -sensor-iso/_config.yml -sensor-iso/_includes -sensor-iso/_layouts -sensor-iso/_site -sensor-iso/docs -sensor-iso/Gemfile -sensor-iso/README.md +hedgehog-iso/_config.yml +hedgehog-iso/_includes +hedgehog-iso/_layouts +hedgehog-iso/_site +hedgehog-iso/docs +hedgehog-iso/Gemfile +hedgehog-iso/README.md # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/_config.yml b/_config.yml index 0baeaec2c..cc752665c 100644 --- a/_config.yml +++ b/_config.yml @@ -84,7 +84,7 @@ exclude: - pcap-capture - pcap-monitor - scripts - - sensor-iso + - hedgehog-iso - shared - suricata - suricata-logs diff --git a/docs/development.md b/docs/development.md index b59bc3b49..c8efe2d94 100644 --- a/docs/development.md +++ b/docs/development.md @@ -16,6 +16,8 @@ Checking out the [Malcolm source code]({{ site.github.repository_url }}/tree/{{ * `file-monitor` - code and configuration for the `file-monitor` container that can scan files extracted by Zeek * `file-upload` - code and configuration for the `upload` container that serves a web browser-based upload form for uploading PCAP files and Zeek logs, and serves an SFTP share as an alternate upload * `freq-server` - code and configuration for the `freq` container used for calculating entropy of strings +* `hedgehog-iso` - code and configuration for building a [Hedgehog Linux](live-analysis.md#Hedgehog) ISO +* `hedgehog-raspi` - code and configuration for building a [Hedgehog Linux](live-analysis.md#Hedgehog) [Raspberry Pi image](hedgehog-raspi-build.md#HedgehogRaspiBuild) * `htadmin` - configuration for the `htadmin` user account management container * `logstash` - code and configuration for the `logstash` container that parses Zeek logs and forwards them to the `opensearch` container * `malcolm-iso` - code and configuration for building an [installer ISO](malcolm-iso.md#ISO) for a minimal Debian-based Linux installation for running Malcolm @@ -27,7 +29,6 @@ Checking out the [Malcolm source code]({{ site.github.repository_url }}/tree/{{ * `pcap-capture` - code and configuration for the `pcap-capture` container that can capture network traffic * `pcap-monitor` - code and configuration for the `pcap-monitor` container that watches for new or uploaded PCAP files and notifies the other services to process them * `scripts` - control scripts for starting, stopping, restarting, etc., Malcolm -* `sensor-iso` - code and configuration for building a [Hedgehog Linux](live-analysis.md#Hedgehog) ISO * `shared` - miscellaneous code used by various Malcolm components * `suricata` - code and configuration for the `suricata` container that handles PCAP processing using Suricata * `suricata-logs` - an initially empty directory for Suricata logs to be uploaded, processed, and stored diff --git a/docs/hedgehog-iso-build.md b/docs/hedgehog-iso-build.md index 94a8877fd..4de1fe858 100644 --- a/docs/hedgehog-iso-build.md +++ b/docs/hedgehog-iso-build.md @@ -18,7 +18,7 @@ The build should work with either the [VirtualBox](https://www.virtualbox.org/) To perform a clean build the Hedgehog Linux installer ISO, navigate to your local [Malcolm]({{ site.github.repository_url }}/) working copy and run: ``` -$ ./sensor-iso/build_via_vagrant.sh -f +$ ./hedgehog-iso/build_via_vagrant.sh -f … Starting build machine... Bringing machine 'default' up with 'virtualbox' provider... @@ -33,4 +33,4 @@ Finished, created "/sensor-build/hedgehog-24.03.0.iso" … ``` -Alternately, if you have forked Malcolm on GitHub, [workflow files]({{ site.github.repository_url }}/tree/{{ site.github.build_revision }}/.github/workflows/) are provided which contain instructions for GitHub to build the docker images and Hedgehog and [Malcolm]({{ site.github.repository_url }}) installer ISOs, specifically [`sensor-iso-build-docker-wrap-push-ghcr.yml`]({{ site.github.repository_url }}/blob/{{ site.github.build_revision }}/.github/workflows/sensor-iso-build-docker-wrap-push-ghcr.yml) for the Hedgehog ISO. The resulting ISO file is wrapped in a Docker image that provides an HTTP server from which the ISO may be downloaded. \ No newline at end of file +Alternately, if you have forked Malcolm on GitHub, [workflow files]({{ site.github.repository_url }}/tree/{{ site.github.build_revision }}/.github/workflows/) are provided which contain instructions for GitHub to build the docker images and Hedgehog and [Malcolm]({{ site.github.repository_url }}) installer ISOs, specifically [`hedgehog-iso-build-docker-wrap-push-ghcr.yml`]({{ site.github.repository_url }}/blob/{{ site.github.build_revision }}/.github/workflows/hedgehog-iso-build-docker-wrap-push-ghcr.yml) for the Hedgehog ISO. The resulting ISO file is wrapped in a Docker image that provides an HTTP server from which the ISO may be downloaded. \ No newline at end of file diff --git a/docs/hedgehog-raspi-build.md b/docs/hedgehog-raspi-build.md index 82e4dc188..6d1f0cf8d 100644 --- a/docs/hedgehog-raspi-build.md +++ b/docs/hedgehog-raspi-build.md @@ -1,6 +1,6 @@ # Appendix B - Generating a Raspberry Pi Image -Hedgehog Linux can [also be built]({{ site.github.repository_url }}/tree/{{ site.github.build_revision }}/sensor-raspi) for the Raspberry Pi platform, although this capability is still considered experimental. +Hedgehog Linux can [also be built]({{ site.github.repository_url }}/tree/{{ site.github.build_revision }}/hedgehog-raspi) for the Raspberry Pi platform, although this capability is still considered experimental. * [Building the Image](#HedgehogRaspiBuild) * [Writing the Image to Flash Media](#HedgehogRaspiBurn) @@ -27,7 +27,7 @@ The build should work with either the [VirtualBox](https://www.virtualbox.org/) To perform a clean build the Hedgehog Linux Raspberry Pi image, navigate to your local [Malcolm]({{ site.github.repository_url }}/) working copy and run: ``` -$ ./sensor-raspi/build_via_vagrant.sh -f -z +$ ./hedgehog-raspi/build_via_vagrant.sh -f -z … Starting build machine... Bringing machine 'vagrant-hedgehog-raspi-build' up with 'virtualbox' provider... diff --git a/docs/hedgehog-upgrade.md b/docs/hedgehog-upgrade.md index 37d8a1a53..3b3cec849 100644 --- a/docs/hedgehog-upgrade.md +++ b/docs/hedgehog-upgrade.md @@ -47,9 +47,9 @@ deb https://XXXXXX:443/debian buster-backports main contrib non-free 5. Update underlying system packages with `apt-get` - `apt-get update && apt-get dist-upgrade` -6. If there were [new system deb packages added]({{ site.github.repository_url }}/tree/{{ site.github.build_revision }}/sensor-iso/config/package-lists) to this release of Hedgehog Linux (you might have to [manually compare]({{ site.github.repository_url }}/commits/main/sensor-iso/config/package-lists) on GitHub), install them. If you're not sure, of course, you could just install everything, like this (although you may have to tweak some version numbers or something if the base distribution of your Hedgehog branch is different than `main`; in this example I'm not jumping between Debian releases, just upgrading within a release): +6. If there were [new system deb packages added]({{ site.github.repository_url }}/tree/{{ site.github.build_revision }}/hedgehog-iso/config/package-lists) to this release of Hedgehog Linux (you might have to [manually compare]({{ site.github.repository_url }}/commits/main/hedgehog-iso/config/package-lists) on GitHub), install them. If you're not sure, of course, you could just install everything, like this (although you may have to tweak some version numbers or something if the base distribution of your Hedgehog branch is different than `main`; in this example I'm not jumping between Debian releases, just upgrading within a release): ``` -$ for LIST in apps desktopmanager net system; do curl -L -J -O {{ site.github.repository_url }}/main/sensor-iso/config/package-lists/$LIST.list.chroot; done +$ for LIST in apps desktopmanager net system; do curl -L -J -O {{ site.github.repository_url }}/main/hedgehog-iso/config/package-lists/$LIST.list.chroot; done ... $ apt-get install $(cat *.list.chroot) ``` @@ -59,7 +59,7 @@ $ apt-get install $(cat *.list.chroot) * `python3 -m pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -r -n1 python3 -m pip install -U` - if this fails for some reason, you may need to reinstall pip first with `python3 -m pip install --force -U pip` - some *very* old builds of Hedgehog Linux had separate Python 3.5 and 3.7 installations: in this case, you'd need to do this for both `python3 -m pip` and `python3.7 -m pip` (or whatever `python3.x` you have) - * If there were [new python packages](https://raw.githubusercontent.com/{{ site.github.repository_nwo }}/master/sensor-iso/config/hooks/normal/0169-pip-installs.hook.chroot) added to this release of Hedgehog Linux (you might have to [manually compare]({{ site.github.repository_url }}/blame/main/sensor-iso/config/hooks/normal/0169-pip-installs.hook.chroot) on GitHub), install them. If you are using a PyPI mirror, replace `XXXXXX` here with your mirror's IP. The `colorama` package is used here as an example, your package list might vary. + * If there were [new python packages](https://raw.githubusercontent.com/{{ site.github.repository_nwo }}/master/hedgehog-iso/config/hooks/normal/0169-pip-installs.hook.chroot) added to this release of Hedgehog Linux (you might have to [manually compare]({{ site.github.repository_url }}/blame/main/hedgehog-iso/config/hooks/normal/0169-pip-installs.hook.chroot) on GitHub), install them. If you are using a PyPI mirror, replace `XXXXXX` here with your mirror's IP. The `colorama` package is used here as an example, your package list might vary. - `python3 -m pip install --no-compile --no-cache-dir --force-reinstall --upgrade --index-url=https://XXXXXX:443/pypi/simple --trusted-host=XXXXXX:443 colorama` 8. Okay, **now** things start to get a little bit ugly. You're going to need access to the ISO of the release of Hedgehog Linux you're upgrading to, as we're going to grab some packages off of it. On another Linux system, [build it](hedgehog-iso-build.md#HedgehogISOBuild). diff --git a/docs/hedgehog.md b/docs/hedgehog.md index f3399d5e3..94880fa51 100644 --- a/docs/hedgehog.md +++ b/docs/hedgehog.md @@ -11,7 +11,7 @@ Hedgehog Linux is a Debian-based operating system built to * detect file transfers in network traffic and extract and scan those files for threats * generate and forward Zeek logs, Arkime sessions, and other information to [Malcolm]({{ site.github.repository_url }}) -![sensor-iso-build-docker-wrap-push-ghcr]({{ site.github.repository_url }}/workflows/sensor-iso-build-docker-wrap-push-ghcr/badge.svg) +![hedgehog-iso-build-docker-wrap-push-ghcr]({{ site.github.repository_url }}/workflows/hedgehog-iso-build-docker-wrap-push-ghcr/badge.svg) * [Sensor installation](hedgehog-installation.md#HedgehogInstallation) diff --git a/docs/malcolm-hedgehog-e2e-iso-install.md b/docs/malcolm-hedgehog-e2e-iso-install.md index 666bfc743..71a303031 100644 --- a/docs/malcolm-hedgehog-e2e-iso-install.md +++ b/docs/malcolm-hedgehog-e2e-iso-install.md @@ -463,7 +463,7 @@ To specify which files should be extracted, specify the Zeek file carving mode: ![Zeek file carving mode](./images/hedgehog/images/zeek_file_carve_mode.png) -If unsure what mode to choose, both **mapped (except common plain text files)** (to carve and scan almost all files) and **interesting** (to only carve and scan files with [mime types of common attack vectors]({{ site.github.repository_url }}/blob/{{ site.github.build_revision }}/sensor-iso/interface/sensor_ctl/zeek/extractor_override.interesting.zeek)) are probably good choices. +If unsure what mode to choose, both **mapped (except common plain text files)** (to carve and scan almost all files) and **interesting** (to only carve and scan files with [mime types of common attack vectors]({{ site.github.repository_url }}/blob/{{ site.github.build_revision }}/hedgehog-iso/interface/sensor_ctl/zeek/extractor_override.interesting.zeek)) are probably good choices. Next, specify which carved files to preserve (saved on the sensor under `/capture/bro/capture/extract_files/quarantine` by default). In order to not consume all the sensor's available storage space, the oldest preserved files will be pruned along with the oldest Zeek logs as described below with **AUTOSTART_PRUNE_ZEEK** in the [autostart services](#HedgehogConfigAutostart) section. diff --git a/sensor-iso/.dockerignore b/hedgehog-iso/.dockerignore similarity index 100% rename from sensor-iso/.dockerignore rename to hedgehog-iso/.dockerignore diff --git a/sensor-iso/.gitignore b/hedgehog-iso/.gitignore similarity index 100% rename from sensor-iso/.gitignore rename to hedgehog-iso/.gitignore diff --git a/sensor-iso/Dockerfile b/hedgehog-iso/Dockerfile similarity index 95% rename from sensor-iso/Dockerfile rename to hedgehog-iso/Dockerfile index 774c62213..c7a9970b2 100644 --- a/sensor-iso/Dockerfile +++ b/hedgehog-iso/Dockerfile @@ -5,7 +5,7 @@ FROM ghcr.io/mmguero/qemu-live-iso:latest LABEL maintainer="malcolm@inl.gov" LABEL org.opencontainers.image.authors='malcolm@inl.gov' LABEL org.opencontainers.image.url='https://github.com/idaholab/Malcolm' -LABEL org.opencontainers.image.documentation='https://github.com/idaholab/Malcolm/blob/main/sensor-iso/README.md' +LABEL org.opencontainers.image.documentation='https://github.com/idaholab/Malcolm/blob/main/hedgehog-iso/README.md' LABEL org.opencontainers.image.source='https://github.com/idaholab/Malcolm' LABEL org.opencontainers.image.vendor='Idaho National Laboratory' LABEL org.opencontainers.image.title='ghcr.io/idaholab/malcolm/hedgehog' diff --git a/sensor-iso/arkime/Dockerfile b/hedgehog-iso/arkime/Dockerfile similarity index 100% rename from sensor-iso/arkime/Dockerfile rename to hedgehog-iso/arkime/Dockerfile diff --git a/sensor-iso/arkime/build-arkime-deb.sh b/hedgehog-iso/arkime/build-arkime-deb.sh similarity index 100% rename from sensor-iso/arkime/build-arkime-deb.sh rename to hedgehog-iso/arkime/build-arkime-deb.sh diff --git a/sensor-iso/arkime/build-docker-image.sh b/hedgehog-iso/arkime/build-docker-image.sh similarity index 100% rename from sensor-iso/arkime/build-docker-image.sh rename to hedgehog-iso/arkime/build-docker-image.sh diff --git a/sensor-iso/arkime/etc/.gitignore b/hedgehog-iso/arkime/etc/.gitignore similarity index 100% rename from sensor-iso/arkime/etc/.gitignore rename to hedgehog-iso/arkime/etc/.gitignore diff --git a/sensor-iso/build.sh b/hedgehog-iso/build.sh similarity index 100% rename from sensor-iso/build.sh rename to hedgehog-iso/build.sh diff --git a/sensor-iso/build_via_vagrant.sh b/hedgehog-iso/build_via_vagrant.sh similarity index 100% rename from sensor-iso/build_via_vagrant.sh rename to hedgehog-iso/build_via_vagrant.sh diff --git a/sensor-iso/config/archives/beats.key.binary b/hedgehog-iso/config/archives/beats.key.binary similarity index 100% rename from sensor-iso/config/archives/beats.key.binary rename to hedgehog-iso/config/archives/beats.key.binary diff --git a/sensor-iso/config/archives/beats.key.chroot b/hedgehog-iso/config/archives/beats.key.chroot similarity index 100% rename from sensor-iso/config/archives/beats.key.chroot rename to hedgehog-iso/config/archives/beats.key.chroot diff --git a/sensor-iso/config/archives/beats.list.binary b/hedgehog-iso/config/archives/beats.list.binary similarity index 100% rename from sensor-iso/config/archives/beats.list.binary rename to hedgehog-iso/config/archives/beats.list.binary diff --git a/sensor-iso/config/archives/beats.list.chroot b/hedgehog-iso/config/archives/beats.list.chroot similarity index 100% rename from sensor-iso/config/archives/beats.list.chroot rename to hedgehog-iso/config/archives/beats.list.chroot diff --git a/sensor-iso/config/archives/fluentbit.key.binary b/hedgehog-iso/config/archives/fluentbit.key.binary similarity index 100% rename from sensor-iso/config/archives/fluentbit.key.binary rename to hedgehog-iso/config/archives/fluentbit.key.binary diff --git a/sensor-iso/config/archives/fluentbit.key.chroot b/hedgehog-iso/config/archives/fluentbit.key.chroot similarity index 100% rename from sensor-iso/config/archives/fluentbit.key.chroot rename to hedgehog-iso/config/archives/fluentbit.key.chroot diff --git a/sensor-iso/config/archives/fluentbit.list.binary b/hedgehog-iso/config/archives/fluentbit.list.binary similarity index 100% rename from sensor-iso/config/archives/fluentbit.list.binary rename to hedgehog-iso/config/archives/fluentbit.list.binary diff --git a/sensor-iso/config/archives/fluentbit.list.chroot b/hedgehog-iso/config/archives/fluentbit.list.chroot similarity index 100% rename from sensor-iso/config/archives/fluentbit.list.chroot rename to hedgehog-iso/config/archives/fluentbit.list.chroot diff --git a/sensor-iso/config/archives/mozilla.key.binary b/hedgehog-iso/config/archives/mozilla.key.binary similarity index 100% rename from sensor-iso/config/archives/mozilla.key.binary rename to hedgehog-iso/config/archives/mozilla.key.binary diff --git a/sensor-iso/config/archives/mozilla.key.chroot b/hedgehog-iso/config/archives/mozilla.key.chroot similarity index 100% rename from sensor-iso/config/archives/mozilla.key.chroot rename to hedgehog-iso/config/archives/mozilla.key.chroot diff --git a/sensor-iso/config/archives/mozilla.list.binary b/hedgehog-iso/config/archives/mozilla.list.binary similarity index 100% rename from sensor-iso/config/archives/mozilla.list.binary rename to hedgehog-iso/config/archives/mozilla.list.binary diff --git a/sensor-iso/config/archives/mozilla.list.chroot b/hedgehog-iso/config/archives/mozilla.list.chroot similarity index 100% rename from sensor-iso/config/archives/mozilla.list.chroot rename to hedgehog-iso/config/archives/mozilla.list.chroot diff --git a/sensor-iso/config/archives/mozilla.pref.binary b/hedgehog-iso/config/archives/mozilla.pref.binary similarity index 100% rename from sensor-iso/config/archives/mozilla.pref.binary rename to hedgehog-iso/config/archives/mozilla.pref.binary diff --git a/sensor-iso/config/archives/mozilla.pref.chroot b/hedgehog-iso/config/archives/mozilla.pref.chroot similarity index 100% rename from sensor-iso/config/archives/mozilla.pref.chroot rename to hedgehog-iso/config/archives/mozilla.pref.chroot diff --git a/sensor-iso/config/bootloaders/extlinux/extlinux.conf b/hedgehog-iso/config/bootloaders/extlinux/extlinux.conf similarity index 100% rename from sensor-iso/config/bootloaders/extlinux/extlinux.conf rename to hedgehog-iso/config/bootloaders/extlinux/extlinux.conf diff --git a/sensor-iso/config/bootloaders/grub-legacy/menu.lst b/hedgehog-iso/config/bootloaders/grub-legacy/menu.lst similarity index 100% rename from sensor-iso/config/bootloaders/grub-legacy/menu.lst rename to hedgehog-iso/config/bootloaders/grub-legacy/menu.lst diff --git a/sensor-iso/config/bootloaders/grub-legacy/splash.xpm.gz b/hedgehog-iso/config/bootloaders/grub-legacy/splash.xpm.gz similarity index 100% rename from sensor-iso/config/bootloaders/grub-legacy/splash.xpm.gz rename to hedgehog-iso/config/bootloaders/grub-legacy/splash.xpm.gz diff --git a/sensor-iso/config/bootloaders/grub-pc/config.cfg b/hedgehog-iso/config/bootloaders/grub-pc/config.cfg similarity index 100% rename from sensor-iso/config/bootloaders/grub-pc/config.cfg rename to hedgehog-iso/config/bootloaders/grub-pc/config.cfg diff --git a/sensor-iso/config/bootloaders/grub-pc/dejavu-bold-14.pf2 b/hedgehog-iso/config/bootloaders/grub-pc/dejavu-bold-14.pf2 similarity index 100% rename from sensor-iso/config/bootloaders/grub-pc/dejavu-bold-14.pf2 rename to hedgehog-iso/config/bootloaders/grub-pc/dejavu-bold-14.pf2 diff --git a/sensor-iso/config/bootloaders/grub-pc/dejavu-bold-16.pf2 b/hedgehog-iso/config/bootloaders/grub-pc/dejavu-bold-16.pf2 similarity index 100% rename from sensor-iso/config/bootloaders/grub-pc/dejavu-bold-16.pf2 rename to hedgehog-iso/config/bootloaders/grub-pc/dejavu-bold-16.pf2 diff --git a/sensor-iso/config/bootloaders/grub-pc/grub.cfg b/hedgehog-iso/config/bootloaders/grub-pc/grub.cfg similarity index 100% rename from sensor-iso/config/bootloaders/grub-pc/grub.cfg rename to hedgehog-iso/config/bootloaders/grub-pc/grub.cfg diff --git a/sensor-iso/config/bootloaders/grub-pc/hedgehog-color.png b/hedgehog-iso/config/bootloaders/grub-pc/hedgehog-color.png similarity index 100% rename from sensor-iso/config/bootloaders/grub-pc/hedgehog-color.png rename to hedgehog-iso/config/bootloaders/grub-pc/hedgehog-color.png diff --git a/sensor-iso/config/bootloaders/grub-pc/install_start_text.cfg b/hedgehog-iso/config/bootloaders/grub-pc/install_start_text.cfg similarity index 100% rename from sensor-iso/config/bootloaders/grub-pc/install_start_text.cfg rename to hedgehog-iso/config/bootloaders/grub-pc/install_start_text.cfg diff --git a/sensor-iso/config/bootloaders/grub-pc/install_text.cfg b/hedgehog-iso/config/bootloaders/grub-pc/install_text.cfg similarity index 100% rename from sensor-iso/config/bootloaders/grub-pc/install_text.cfg rename to hedgehog-iso/config/bootloaders/grub-pc/install_text.cfg diff --git a/sensor-iso/config/bootloaders/grub-pc/live-theme/theme.txt b/hedgehog-iso/config/bootloaders/grub-pc/live-theme/theme.txt similarity index 100% rename from sensor-iso/config/bootloaders/grub-pc/live-theme/theme.txt rename to hedgehog-iso/config/bootloaders/grub-pc/live-theme/theme.txt diff --git a/sensor-iso/config/bootloaders/grub-pc/memtest.cfg b/hedgehog-iso/config/bootloaders/grub-pc/memtest.cfg similarity index 100% rename from sensor-iso/config/bootloaders/grub-pc/memtest.cfg rename to hedgehog-iso/config/bootloaders/grub-pc/memtest.cfg diff --git a/sensor-iso/config/bootloaders/grub-pc/splash.png b/hedgehog-iso/config/bootloaders/grub-pc/splash.png similarity index 100% rename from sensor-iso/config/bootloaders/grub-pc/splash.png rename to hedgehog-iso/config/bootloaders/grub-pc/splash.png diff --git a/sensor-iso/config/bootloaders/grub-pc/theme.cfg b/hedgehog-iso/config/bootloaders/grub-pc/theme.cfg similarity index 100% rename from sensor-iso/config/bootloaders/grub-pc/theme.cfg rename to hedgehog-iso/config/bootloaders/grub-pc/theme.cfg diff --git a/sensor-iso/config/bootloaders/isolinux/isolinux.cfg b/hedgehog-iso/config/bootloaders/isolinux/isolinux.cfg similarity index 100% rename from sensor-iso/config/bootloaders/isolinux/isolinux.cfg rename to hedgehog-iso/config/bootloaders/isolinux/isolinux.cfg diff --git a/sensor-iso/config/bootloaders/pxelinux/pxelinux.cfg/default b/hedgehog-iso/config/bootloaders/pxelinux/pxelinux.cfg/default similarity index 100% rename from sensor-iso/config/bootloaders/pxelinux/pxelinux.cfg/default rename to hedgehog-iso/config/bootloaders/pxelinux/pxelinux.cfg/default diff --git a/sensor-iso/config/bootloaders/syslinux/syslinux.cfg b/hedgehog-iso/config/bootloaders/syslinux/syslinux.cfg similarity index 100% rename from sensor-iso/config/bootloaders/syslinux/syslinux.cfg rename to hedgehog-iso/config/bootloaders/syslinux/syslinux.cfg diff --git a/sensor-iso/config/bootloaders/syslinux_common/install_text.cfg b/hedgehog-iso/config/bootloaders/syslinux_common/install_text.cfg similarity index 100% rename from sensor-iso/config/bootloaders/syslinux_common/install_text.cfg rename to hedgehog-iso/config/bootloaders/syslinux_common/install_text.cfg diff --git a/sensor-iso/config/bootloaders/syslinux_common/live.cfg.in b/hedgehog-iso/config/bootloaders/syslinux_common/live.cfg.in similarity index 100% rename from sensor-iso/config/bootloaders/syslinux_common/live.cfg.in rename to hedgehog-iso/config/bootloaders/syslinux_common/live.cfg.in diff --git a/sensor-iso/config/bootloaders/syslinux_common/memtest.cfg b/hedgehog-iso/config/bootloaders/syslinux_common/memtest.cfg similarity index 100% rename from sensor-iso/config/bootloaders/syslinux_common/memtest.cfg rename to hedgehog-iso/config/bootloaders/syslinux_common/memtest.cfg diff --git a/sensor-iso/config/bootloaders/syslinux_common/menu.cfg b/hedgehog-iso/config/bootloaders/syslinux_common/menu.cfg similarity index 100% rename from sensor-iso/config/bootloaders/syslinux_common/menu.cfg rename to hedgehog-iso/config/bootloaders/syslinux_common/menu.cfg diff --git a/sensor-iso/config/bootloaders/syslinux_common/splash.svg b/hedgehog-iso/config/bootloaders/syslinux_common/splash.svg similarity index 100% rename from sensor-iso/config/bootloaders/syslinux_common/splash.svg rename to hedgehog-iso/config/bootloaders/syslinux_common/splash.svg diff --git a/sensor-iso/config/bootloaders/syslinux_common/stdmenu.cfg b/hedgehog-iso/config/bootloaders/syslinux_common/stdmenu.cfg similarity index 100% rename from sensor-iso/config/bootloaders/syslinux_common/stdmenu.cfg rename to hedgehog-iso/config/bootloaders/syslinux_common/stdmenu.cfg diff --git a/sensor-iso/config/bootloaders/syslinux_common/utilities.cfg b/hedgehog-iso/config/bootloaders/syslinux_common/utilities.cfg similarity index 100% rename from sensor-iso/config/bootloaders/syslinux_common/utilities.cfg rename to hedgehog-iso/config/bootloaders/syslinux_common/utilities.cfg diff --git a/sensor-iso/config/hooks/normal/0169-pip-installs.hook.chroot b/hedgehog-iso/config/hooks/normal/0169-pip-installs.hook.chroot similarity index 100% rename from sensor-iso/config/hooks/normal/0169-pip-installs.hook.chroot rename to hedgehog-iso/config/hooks/normal/0169-pip-installs.hook.chroot diff --git a/sensor-iso/config/hooks/normal/0900-setup-rc-local.hook.chroot b/hedgehog-iso/config/hooks/normal/0900-setup-rc-local.hook.chroot similarity index 100% rename from sensor-iso/config/hooks/normal/0900-setup-rc-local.hook.chroot rename to hedgehog-iso/config/hooks/normal/0900-setup-rc-local.hook.chroot diff --git a/sensor-iso/config/hooks/normal/0910-sensor-build.hook.chroot b/hedgehog-iso/config/hooks/normal/0910-sensor-build.hook.chroot similarity index 100% rename from sensor-iso/config/hooks/normal/0910-sensor-build.hook.chroot rename to hedgehog-iso/config/hooks/normal/0910-sensor-build.hook.chroot diff --git a/sensor-iso/config/hooks/normal/0911-get-stig-scripts.hook.chroot b/hedgehog-iso/config/hooks/normal/0911-get-stig-scripts.hook.chroot similarity index 100% rename from sensor-iso/config/hooks/normal/0911-get-stig-scripts.hook.chroot rename to hedgehog-iso/config/hooks/normal/0911-get-stig-scripts.hook.chroot diff --git a/sensor-iso/config/hooks/normal/0990-remove-unwanted-pkg.hook.chroot b/hedgehog-iso/config/hooks/normal/0990-remove-unwanted-pkg.hook.chroot similarity index 100% rename from sensor-iso/config/hooks/normal/0990-remove-unwanted-pkg.hook.chroot rename to hedgehog-iso/config/hooks/normal/0990-remove-unwanted-pkg.hook.chroot diff --git a/sensor-iso/config/hooks/normal/0991-security-performance.hook.chroot b/hedgehog-iso/config/hooks/normal/0991-security-performance.hook.chroot similarity index 100% rename from sensor-iso/config/hooks/normal/0991-security-performance.hook.chroot rename to hedgehog-iso/config/hooks/normal/0991-security-performance.hook.chroot diff --git a/sensor-iso/config/hooks/normal/0992-localepurge.hook.chroot b/hedgehog-iso/config/hooks/normal/0992-localepurge.hook.chroot similarity index 100% rename from sensor-iso/config/hooks/normal/0992-localepurge.hook.chroot rename to hedgehog-iso/config/hooks/normal/0992-localepurge.hook.chroot diff --git a/sensor-iso/config/hooks/normal/0992-login.hook.chroot b/hedgehog-iso/config/hooks/normal/0992-login.hook.chroot similarity index 100% rename from sensor-iso/config/hooks/normal/0992-login.hook.chroot rename to hedgehog-iso/config/hooks/normal/0992-login.hook.chroot diff --git a/sensor-iso/config/includes.binary/install/preseed_base.cfg b/hedgehog-iso/config/includes.binary/install/preseed_base.cfg similarity index 100% rename from sensor-iso/config/includes.binary/install/preseed_base.cfg rename to hedgehog-iso/config/includes.binary/install/preseed_base.cfg diff --git a/sensor-iso/config/includes.binary/install/preseed_multipar.cfg b/hedgehog-iso/config/includes.binary/install/preseed_multipar.cfg similarity index 100% rename from sensor-iso/config/includes.binary/install/preseed_multipar.cfg rename to hedgehog-iso/config/includes.binary/install/preseed_multipar.cfg diff --git a/sensor-iso/config/includes.binary/install/preseed_vmware.cfg b/hedgehog-iso/config/includes.binary/install/preseed_vmware.cfg similarity index 100% rename from sensor-iso/config/includes.binary/install/preseed_vmware.cfg rename to hedgehog-iso/config/includes.binary/install/preseed_vmware.cfg diff --git a/sensor-iso/config/includes.binary/live/filesystem.packages-remove b/hedgehog-iso/config/includes.binary/live/filesystem.packages-remove similarity index 100% rename from sensor-iso/config/includes.binary/live/filesystem.packages-remove rename to hedgehog-iso/config/includes.binary/live/filesystem.packages-remove diff --git a/sensor-iso/config/includes.chroot/etc/audit/rules.d/audit.rules b/hedgehog-iso/config/includes.chroot/etc/audit/rules.d/audit.rules similarity index 100% rename from sensor-iso/config/includes.chroot/etc/audit/rules.d/audit.rules rename to hedgehog-iso/config/includes.chroot/etc/audit/rules.d/audit.rules diff --git a/sensor-iso/config/includes.chroot/etc/bash.bash_aliases b/hedgehog-iso/config/includes.chroot/etc/bash.bash_aliases similarity index 100% rename from sensor-iso/config/includes.chroot/etc/bash.bash_aliases rename to hedgehog-iso/config/includes.chroot/etc/bash.bash_aliases diff --git a/sensor-iso/config/includes.chroot/etc/bash.bash_functions b/hedgehog-iso/config/includes.chroot/etc/bash.bash_functions similarity index 100% rename from sensor-iso/config/includes.chroot/etc/bash.bash_functions rename to hedgehog-iso/config/includes.chroot/etc/bash.bash_functions diff --git a/sensor-iso/config/includes.chroot/etc/installer b/hedgehog-iso/config/includes.chroot/etc/installer similarity index 100% rename from sensor-iso/config/includes.chroot/etc/installer rename to hedgehog-iso/config/includes.chroot/etc/installer diff --git a/sensor-iso/config/includes.chroot/etc/lightdm/slick-greeter.conf b/hedgehog-iso/config/includes.chroot/etc/lightdm/slick-greeter.conf similarity index 100% rename from sensor-iso/config/includes.chroot/etc/lightdm/slick-greeter.conf rename to hedgehog-iso/config/includes.chroot/etc/lightdm/slick-greeter.conf diff --git a/sensor-iso/config/includes.chroot/etc/live/config.conf b/hedgehog-iso/config/includes.chroot/etc/live/config.conf similarity index 100% rename from sensor-iso/config/includes.chroot/etc/live/config.conf rename to hedgehog-iso/config/includes.chroot/etc/live/config.conf diff --git a/sensor-iso/config/includes.chroot/etc/login.defs b/hedgehog-iso/config/includes.chroot/etc/login.defs similarity index 100% rename from sensor-iso/config/includes.chroot/etc/login.defs rename to hedgehog-iso/config/includes.chroot/etc/login.defs diff --git a/sensor-iso/config/includes.chroot/etc/security/limits.d/limits.conf b/hedgehog-iso/config/includes.chroot/etc/security/limits.d/limits.conf similarity index 100% rename from sensor-iso/config/includes.chroot/etc/security/limits.d/limits.conf rename to hedgehog-iso/config/includes.chroot/etc/security/limits.d/limits.conf diff --git a/sensor-iso/config/includes.chroot/etc/skel/.bashrc b/hedgehog-iso/config/includes.chroot/etc/skel/.bashrc similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.bashrc rename to hedgehog-iso/config/includes.chroot/etc/skel/.bashrc diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/autostart/capture-format-wait.desktop b/hedgehog-iso/config/includes.chroot/etc/skel/.config/autostart/capture-format-wait.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/autostart/capture-format-wait.desktop rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/autostart/capture-format-wait.desktop diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/autostart/dod-login-banner.desktop b/hedgehog-iso/config/includes.chroot/etc/skel/.config/autostart/dod-login-banner.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/autostart/dod-login-banner.desktop rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/autostart/dod-login-banner.desktop diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/autostart/hedgehog-kiosk.desktop b/hedgehog-iso/config/includes.chroot/etc/skel/.config/autostart/hedgehog-kiosk.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/autostart/hedgehog-kiosk.desktop rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/autostart/hedgehog-kiosk.desktop diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/autostart/set-dconf-screen-lock-defaults.desktop b/hedgehog-iso/config/includes.chroot/etc/skel/.config/autostart/set-dconf-screen-lock-defaults.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/autostart/set-dconf-screen-lock-defaults.desktop rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/autostart/set-dconf-screen-lock-defaults.desktop diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/dconf/user b/hedgehog-iso/config/includes.chroot/etc/skel/.config/dconf/user similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/dconf/user rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/dconf/user diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/gtk-3.0/bookmarks b/hedgehog-iso/config/includes.chroot/etc/skel/.config/gtk-3.0/bookmarks similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/gtk-3.0/bookmarks rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/gtk-3.0/bookmarks diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/gtk-3.0/settings.ini b/hedgehog-iso/config/includes.chroot/etc/skel/.config/gtk-3.0/settings.ini similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/gtk-3.0/settings.ini rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/gtk-3.0/settings.ini diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/light-locker-dconf-defaults.conf b/hedgehog-iso/config/includes.chroot/etc/skel/.config/light-locker-dconf-defaults.conf similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/light-locker-dconf-defaults.conf rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/light-locker-dconf-defaults.conf diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/mimeapps.list b/hedgehog-iso/config/includes.chroot/etc/skel/.config/mimeapps.list similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/mimeapps.list rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/mimeapps.list diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/helpers.rc b/hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/helpers.rc similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/helpers.rc rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/helpers.rc diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-15/16346759461.desktop b/hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-15/16346759461.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-15/16346759461.desktop rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-15/16346759461.desktop diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-16/16346759562.desktop b/hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-16/16346759562.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-16/16346759562.desktop rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-16/16346759562.desktop diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-17/16346759653.desktop b/hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-17/16346759653.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-17/16346759653.desktop rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-17/16346759653.desktop diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-18/16346759724.desktop b/hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-18/16346759724.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-18/16346759724.desktop rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-18/16346759724.desktop diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-19/16346759855.desktop b/hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-19/16346759855.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-19/16346759855.desktop rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-19/16346759855.desktop diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-20/16346759956.desktop b/hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-20/16346759956.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-20/16346759956.desktop rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-20/16346759956.desktop diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-21/16346760027.desktop b/hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-21/16346760027.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-21/16346760027.desktop rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-21/16346760027.desktop diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-22/16346760098.desktop b/hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-22/16346760098.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-22/16346760098.desktop rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/panel/launcher-22/16346760098.desktop diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/terminal/terminalrc b/hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/terminal/terminalrc similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/terminal/terminalrc rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/terminal/terminalrc diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml b/hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml b/hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml b/hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml b/hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml b/hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml diff --git a/sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml b/hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml rename to hedgehog-iso/config/includes.chroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml diff --git a/sensor-iso/config/includes.chroot/etc/skel/.hushlogin b/hedgehog-iso/config/includes.chroot/etc/skel/.hushlogin similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.hushlogin rename to hedgehog-iso/config/includes.chroot/etc/skel/.hushlogin diff --git a/sensor-iso/config/includes.chroot/etc/skel/.local/share/xfce4/helpers/custom-TerminalEmulator.desktop b/hedgehog-iso/config/includes.chroot/etc/skel/.local/share/xfce4/helpers/custom-TerminalEmulator.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.local/share/xfce4/helpers/custom-TerminalEmulator.desktop rename to hedgehog-iso/config/includes.chroot/etc/skel/.local/share/xfce4/helpers/custom-TerminalEmulator.desktop diff --git a/sensor-iso/config/includes.chroot/etc/skel/.selected_editor b/hedgehog-iso/config/includes.chroot/etc/skel/.selected_editor similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.selected_editor rename to hedgehog-iso/config/includes.chroot/etc/skel/.selected_editor diff --git a/sensor-iso/config/includes.chroot/etc/skel/.tmux.conf b/hedgehog-iso/config/includes.chroot/etc/skel/.tmux.conf similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.tmux.conf rename to hedgehog-iso/config/includes.chroot/etc/skel/.tmux.conf diff --git a/sensor-iso/config/includes.chroot/etc/skel/.vimrc b/hedgehog-iso/config/includes.chroot/etc/skel/.vimrc similarity index 100% rename from sensor-iso/config/includes.chroot/etc/skel/.vimrc rename to hedgehog-iso/config/includes.chroot/etc/skel/.vimrc diff --git a/sensor-iso/config/includes.chroot/etc/ssh/sshd_config b/hedgehog-iso/config/includes.chroot/etc/ssh/sshd_config similarity index 100% rename from sensor-iso/config/includes.chroot/etc/ssh/sshd_config rename to hedgehog-iso/config/includes.chroot/etc/ssh/sshd_config diff --git a/sensor-iso/config/includes.chroot/etc/sudoers.d/aide_integrity_check b/hedgehog-iso/config/includes.chroot/etc/sudoers.d/aide_integrity_check similarity index 100% rename from sensor-iso/config/includes.chroot/etc/sudoers.d/aide_integrity_check rename to hedgehog-iso/config/includes.chroot/etc/sudoers.d/aide_integrity_check diff --git a/sensor-iso/config/includes.chroot/etc/sudoers.d/nic_capture_setup b/hedgehog-iso/config/includes.chroot/etc/sudoers.d/nic_capture_setup similarity index 100% rename from sensor-iso/config/includes.chroot/etc/sudoers.d/nic_capture_setup rename to hedgehog-iso/config/includes.chroot/etc/sudoers.d/nic_capture_setup diff --git a/sensor-iso/config/includes.chroot/etc/sudoers.d/ufw_arkime_viewer b/hedgehog-iso/config/includes.chroot/etc/sudoers.d/ufw_arkime_viewer similarity index 100% rename from sensor-iso/config/includes.chroot/etc/sudoers.d/ufw_arkime_viewer rename to hedgehog-iso/config/includes.chroot/etc/sudoers.d/ufw_arkime_viewer diff --git a/sensor-iso/config/includes.chroot/etc/systemd/system/sensor-shutdown.service b/hedgehog-iso/config/includes.chroot/etc/systemd/system/sensor-shutdown.service similarity index 100% rename from sensor-iso/config/includes.chroot/etc/systemd/system/sensor-shutdown.service rename to hedgehog-iso/config/includes.chroot/etc/systemd/system/sensor-shutdown.service diff --git a/sensor-iso/config/includes.chroot/opt/zeek/share/zeek/site/extractor.zeek b/hedgehog-iso/config/includes.chroot/opt/zeek/share/zeek/site/extractor.zeek similarity index 100% rename from sensor-iso/config/includes.chroot/opt/zeek/share/zeek/site/extractor.zeek rename to hedgehog-iso/config/includes.chroot/opt/zeek/share/zeek/site/extractor.zeek diff --git a/sensor-iso/config/includes.chroot/opt/zeek/share/zeek/site/extractor_params.zeek b/hedgehog-iso/config/includes.chroot/opt/zeek/share/zeek/site/extractor_params.zeek similarity index 100% rename from sensor-iso/config/includes.chroot/opt/zeek/share/zeek/site/extractor_params.zeek rename to hedgehog-iso/config/includes.chroot/opt/zeek/share/zeek/site/extractor_params.zeek diff --git a/sensor-iso/config/includes.chroot/root/.selected_editor b/hedgehog-iso/config/includes.chroot/root/.selected_editor similarity index 100% rename from sensor-iso/config/includes.chroot/root/.selected_editor rename to hedgehog-iso/config/includes.chroot/root/.selected_editor diff --git a/sensor-iso/config/includes.chroot/root/.vimrc b/hedgehog-iso/config/includes.chroot/root/.vimrc similarity index 100% rename from sensor-iso/config/includes.chroot/root/.vimrc rename to hedgehog-iso/config/includes.chroot/root/.vimrc diff --git a/sensor-iso/config/includes.chroot/usr/local/bin/hedgehog-kiosk.sh b/hedgehog-iso/config/includes.chroot/usr/local/bin/hedgehog-kiosk.sh similarity index 100% rename from sensor-iso/config/includes.chroot/usr/local/bin/hedgehog-kiosk.sh rename to hedgehog-iso/config/includes.chroot/usr/local/bin/hedgehog-kiosk.sh diff --git a/sensor-iso/config/includes.chroot/usr/local/bin/sensor-shutdown b/hedgehog-iso/config/includes.chroot/usr/local/bin/sensor-shutdown similarity index 100% rename from sensor-iso/config/includes.chroot/usr/local/bin/sensor-shutdown rename to hedgehog-iso/config/includes.chroot/usr/local/bin/sensor-shutdown diff --git a/sensor-iso/config/includes.chroot/usr/local/etc/zeek/guess.zeek b/hedgehog-iso/config/includes.chroot/usr/local/etc/zeek/guess.zeek similarity index 100% rename from sensor-iso/config/includes.chroot/usr/local/etc/zeek/guess.zeek rename to hedgehog-iso/config/includes.chroot/usr/local/etc/zeek/guess.zeek diff --git a/sensor-iso/config/includes.chroot/usr/local/etc/zeek/guess_ics_map.txt b/hedgehog-iso/config/includes.chroot/usr/local/etc/zeek/guess_ics_map.txt similarity index 100% rename from sensor-iso/config/includes.chroot/usr/local/etc/zeek/guess_ics_map.txt rename to hedgehog-iso/config/includes.chroot/usr/local/etc/zeek/guess_ics_map.txt diff --git a/sensor-iso/config/includes.chroot/usr/local/etc/zeek/local.zeek b/hedgehog-iso/config/includes.chroot/usr/local/etc/zeek/local.zeek similarity index 100% rename from sensor-iso/config/includes.chroot/usr/local/etc/zeek/local.zeek rename to hedgehog-iso/config/includes.chroot/usr/local/etc/zeek/local.zeek diff --git a/sensor-iso/config/includes.chroot/usr/local/etc/zeek/login.zeek b/hedgehog-iso/config/includes.chroot/usr/local/etc/zeek/login.zeek similarity index 100% rename from sensor-iso/config/includes.chroot/usr/local/etc/zeek/login.zeek rename to hedgehog-iso/config/includes.chroot/usr/local/etc/zeek/login.zeek diff --git a/sensor-iso/config/includes.chroot/usr/share/applications/configure-capture.desktop b/hedgehog-iso/config/includes.chroot/usr/share/applications/configure-capture.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/usr/share/applications/configure-capture.desktop rename to hedgehog-iso/config/includes.chroot/usr/share/applications/configure-capture.desktop diff --git a/sensor-iso/config/includes.chroot/usr/share/applications/configure-interfaces.desktop b/hedgehog-iso/config/includes.chroot/usr/share/applications/configure-interfaces.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/usr/share/applications/configure-interfaces.desktop rename to hedgehog-iso/config/includes.chroot/usr/share/applications/configure-interfaces.desktop diff --git a/sensor-iso/config/includes.chroot/usr/share/applications/hedgehog-kiosk.desktop b/hedgehog-iso/config/includes.chroot/usr/share/applications/hedgehog-kiosk.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/usr/share/applications/hedgehog-kiosk.desktop rename to hedgehog-iso/config/includes.chroot/usr/share/applications/hedgehog-kiosk.desktop diff --git a/sensor-iso/config/includes.chroot/usr/share/applications/hedgehog-readme.desktop b/hedgehog-iso/config/includes.chroot/usr/share/applications/hedgehog-readme.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/usr/share/applications/hedgehog-readme.desktop rename to hedgehog-iso/config/includes.chroot/usr/share/applications/hedgehog-readme.desktop diff --git a/sensor-iso/config/includes.chroot/usr/share/applications/sensor-services-full-restart.desktop b/hedgehog-iso/config/includes.chroot/usr/share/applications/sensor-services-full-restart.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/usr/share/applications/sensor-services-full-restart.desktop rename to hedgehog-iso/config/includes.chroot/usr/share/applications/sensor-services-full-restart.desktop diff --git a/sensor-iso/config/includes.chroot/usr/share/applications/sensor-services-status.desktop b/hedgehog-iso/config/includes.chroot/usr/share/applications/sensor-services-status.desktop similarity index 100% rename from sensor-iso/config/includes.chroot/usr/share/applications/sensor-services-status.desktop rename to hedgehog-iso/config/includes.chroot/usr/share/applications/sensor-services-status.desktop diff --git a/sensor-iso/config/package-lists/build.list.chroot b/hedgehog-iso/config/package-lists/build.list.chroot similarity index 100% rename from sensor-iso/config/package-lists/build.list.chroot rename to hedgehog-iso/config/package-lists/build.list.chroot diff --git a/sensor-iso/config/package-lists/desktopmanager.list.chroot b/hedgehog-iso/config/package-lists/desktopmanager.list.chroot similarity index 100% rename from sensor-iso/config/package-lists/desktopmanager.list.chroot rename to hedgehog-iso/config/package-lists/desktopmanager.list.chroot diff --git a/sensor-iso/config/package-lists/grub.list.binary b/hedgehog-iso/config/package-lists/grub.list.binary similarity index 100% rename from sensor-iso/config/package-lists/grub.list.binary rename to hedgehog-iso/config/package-lists/grub.list.binary diff --git a/sensor-iso/config/package-lists/live.list.chroot b/hedgehog-iso/config/package-lists/live.list.chroot similarity index 100% rename from sensor-iso/config/package-lists/live.list.chroot rename to hedgehog-iso/config/package-lists/live.list.chroot diff --git a/sensor-iso/config/package-lists/net.list.chroot b/hedgehog-iso/config/package-lists/net.list.chroot similarity index 100% rename from sensor-iso/config/package-lists/net.list.chroot rename to hedgehog-iso/config/package-lists/net.list.chroot diff --git a/sensor-iso/config/package-lists/python.list.chroot b/hedgehog-iso/config/package-lists/python.list.chroot similarity index 100% rename from sensor-iso/config/package-lists/python.list.chroot rename to hedgehog-iso/config/package-lists/python.list.chroot diff --git a/sensor-iso/config/package-lists/sensor.list.chroot b/hedgehog-iso/config/package-lists/sensor.list.chroot similarity index 100% rename from sensor-iso/config/package-lists/sensor.list.chroot rename to hedgehog-iso/config/package-lists/sensor.list.chroot diff --git a/sensor-iso/config/package-lists/system.list.chroot b/hedgehog-iso/config/package-lists/system.list.chroot similarity index 100% rename from sensor-iso/config/package-lists/system.list.chroot rename to hedgehog-iso/config/package-lists/system.list.chroot diff --git a/sensor-iso/config/package-lists/virtualguest.list.chroot b/hedgehog-iso/config/package-lists/virtualguest.list.chroot similarity index 100% rename from sensor-iso/config/package-lists/virtualguest.list.chroot rename to hedgehog-iso/config/package-lists/virtualguest.list.chroot diff --git a/sensor-iso/interface/.gitignore b/hedgehog-iso/interface/.gitignore similarity index 100% rename from sensor-iso/interface/.gitignore rename to hedgehog-iso/interface/.gitignore diff --git a/sensor-iso/interface/init.sh b/hedgehog-iso/interface/init.sh similarity index 100% rename from sensor-iso/interface/init.sh rename to hedgehog-iso/interface/init.sh diff --git a/sensor-iso/interface/kiosk.service b/hedgehog-iso/interface/kiosk.service similarity index 100% rename from sensor-iso/interface/kiosk.service rename to hedgehog-iso/interface/kiosk.service diff --git a/sensor-iso/interface/requirements.txt b/hedgehog-iso/interface/requirements.txt similarity index 100% rename from sensor-iso/interface/requirements.txt rename to hedgehog-iso/interface/requirements.txt diff --git a/sensor-iso/interface/sensor_ctl/arkime/config.ini b/hedgehog-iso/interface/sensor_ctl/arkime/config.ini similarity index 100% rename from sensor-iso/interface/sensor_ctl/arkime/config.ini rename to hedgehog-iso/interface/sensor_ctl/arkime/config.ini diff --git a/sensor-iso/interface/sensor_ctl/arkime/rules.yml b/hedgehog-iso/interface/sensor_ctl/arkime/rules.yml similarity index 100% rename from sensor-iso/interface/sensor_ctl/arkime/rules.yml rename to hedgehog-iso/interface/sensor_ctl/arkime/rules.yml diff --git a/sensor-iso/interface/sensor_ctl/clean b/hedgehog-iso/interface/sensor_ctl/clean similarity index 100% rename from sensor-iso/interface/sensor_ctl/clean rename to hedgehog-iso/interface/sensor_ctl/clean diff --git a/sensor-iso/interface/sensor_ctl/clean.sh b/hedgehog-iso/interface/sensor_ctl/clean.sh similarity index 100% rename from sensor-iso/interface/sensor_ctl/clean.sh rename to hedgehog-iso/interface/sensor_ctl/clean.sh diff --git a/sensor-iso/interface/sensor_ctl/control.sh b/hedgehog-iso/interface/sensor_ctl/control.sh similarity index 100% rename from sensor-iso/interface/sensor_ctl/control.sh rename to hedgehog-iso/interface/sensor_ctl/control.sh diff --git a/sensor-iso/interface/sensor_ctl/control_vars.conf b/hedgehog-iso/interface/sensor_ctl/control_vars.conf similarity index 100% rename from sensor-iso/interface/sensor_ctl/control_vars.conf rename to hedgehog-iso/interface/sensor_ctl/control_vars.conf diff --git a/sensor-iso/interface/sensor_ctl/filebeat/filebeat.yml b/hedgehog-iso/interface/sensor_ctl/filebeat/filebeat.yml similarity index 100% rename from sensor-iso/interface/sensor_ctl/filebeat/filebeat.yml rename to hedgehog-iso/interface/sensor_ctl/filebeat/filebeat.yml diff --git a/sensor-iso/interface/sensor_ctl/filebeat/sensor_filebeat_local.sh b/hedgehog-iso/interface/sensor_ctl/filebeat/sensor_filebeat_local.sh similarity index 100% rename from sensor-iso/interface/sensor_ctl/filebeat/sensor_filebeat_local.sh rename to hedgehog-iso/interface/sensor_ctl/filebeat/sensor_filebeat_local.sh diff --git a/sensor-iso/interface/sensor_ctl/logstash-client-certificates/.gitignore b/hedgehog-iso/interface/sensor_ctl/logstash-client-certificates/.gitignore similarity index 100% rename from sensor-iso/interface/sensor_ctl/logstash-client-certificates/.gitignore rename to hedgehog-iso/interface/sensor_ctl/logstash-client-certificates/.gitignore diff --git a/sensor-iso/interface/sensor_ctl/miscbeat/filebeat.yml b/hedgehog-iso/interface/sensor_ctl/miscbeat/filebeat.yml similarity index 100% rename from sensor-iso/interface/sensor_ctl/miscbeat/filebeat.yml rename to hedgehog-iso/interface/sensor_ctl/miscbeat/filebeat.yml diff --git a/sensor-iso/interface/sensor_ctl/miscbeat/sensor_miscbeat_local.sh b/hedgehog-iso/interface/sensor_ctl/miscbeat/sensor_miscbeat_local.sh similarity index 100% rename from sensor-iso/interface/sensor_ctl/miscbeat/sensor_miscbeat_local.sh rename to hedgehog-iso/interface/sensor_ctl/miscbeat/sensor_miscbeat_local.sh diff --git a/sensor-iso/interface/sensor_ctl/reload b/hedgehog-iso/interface/sensor_ctl/reload similarity index 100% rename from sensor-iso/interface/sensor_ctl/reload rename to hedgehog-iso/interface/sensor_ctl/reload diff --git a/sensor-iso/interface/sensor_ctl/restart b/hedgehog-iso/interface/sensor_ctl/restart similarity index 100% rename from sensor-iso/interface/sensor_ctl/restart rename to hedgehog-iso/interface/sensor_ctl/restart diff --git a/sensor-iso/interface/sensor_ctl/scripts/log_disk_space.sh b/hedgehog-iso/interface/sensor_ctl/scripts/log_disk_space.sh similarity index 100% rename from sensor-iso/interface/sensor_ctl/scripts/log_disk_space.sh rename to hedgehog-iso/interface/sensor_ctl/scripts/log_disk_space.sh diff --git a/sensor-iso/interface/sensor_ctl/shutdown b/hedgehog-iso/interface/sensor_ctl/shutdown similarity index 100% rename from sensor-iso/interface/sensor_ctl/shutdown rename to hedgehog-iso/interface/sensor_ctl/shutdown diff --git a/sensor-iso/interface/sensor_ctl/start b/hedgehog-iso/interface/sensor_ctl/start similarity index 100% rename from sensor-iso/interface/sensor_ctl/start rename to hedgehog-iso/interface/sensor_ctl/start diff --git a/sensor-iso/interface/sensor_ctl/status b/hedgehog-iso/interface/sensor_ctl/status similarity index 100% rename from sensor-iso/interface/sensor_ctl/status rename to hedgehog-iso/interface/sensor_ctl/status diff --git a/sensor-iso/interface/sensor_ctl/stop b/hedgehog-iso/interface/sensor_ctl/stop similarity index 100% rename from sensor-iso/interface/sensor_ctl/stop rename to hedgehog-iso/interface/sensor_ctl/stop diff --git a/sensor-iso/interface/sensor_ctl/supervisor.d/arkime.conf b/hedgehog-iso/interface/sensor_ctl/supervisor.d/arkime.conf similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.d/arkime.conf rename to hedgehog-iso/interface/sensor_ctl/supervisor.d/arkime.conf diff --git a/sensor-iso/interface/sensor_ctl/supervisor.d/beats.conf b/hedgehog-iso/interface/sensor_ctl/supervisor.d/beats.conf similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.d/beats.conf rename to hedgehog-iso/interface/sensor_ctl/supervisor.d/beats.conf diff --git a/sensor-iso/interface/sensor_ctl/supervisor.d/clamav.conf b/hedgehog-iso/interface/sensor_ctl/supervisor.d/clamav.conf similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.d/clamav.conf rename to hedgehog-iso/interface/sensor_ctl/supervisor.d/clamav.conf diff --git a/sensor-iso/interface/sensor_ctl/supervisor.d/documentation.conf b/hedgehog-iso/interface/sensor_ctl/supervisor.d/documentation.conf similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.d/documentation.conf rename to hedgehog-iso/interface/sensor_ctl/supervisor.d/documentation.conf diff --git a/sensor-iso/interface/sensor_ctl/supervisor.d/fluentbit-aide.conf b/hedgehog-iso/interface/sensor_ctl/supervisor.d/fluentbit-aide.conf similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.d/fluentbit-aide.conf rename to hedgehog-iso/interface/sensor_ctl/supervisor.d/fluentbit-aide.conf diff --git a/sensor-iso/interface/sensor_ctl/supervisor.d/fluentbit-auditlog.conf b/hedgehog-iso/interface/sensor_ctl/supervisor.d/fluentbit-auditlog.conf similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.d/fluentbit-auditlog.conf rename to hedgehog-iso/interface/sensor_ctl/supervisor.d/fluentbit-auditlog.conf diff --git a/sensor-iso/interface/sensor_ctl/supervisor.d/fluentbit-kmsg.conf b/hedgehog-iso/interface/sensor_ctl/supervisor.d/fluentbit-kmsg.conf similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.d/fluentbit-kmsg.conf rename to hedgehog-iso/interface/sensor_ctl/supervisor.d/fluentbit-kmsg.conf diff --git a/sensor-iso/interface/sensor_ctl/supervisor.d/fluentbit-metrics.conf b/hedgehog-iso/interface/sensor_ctl/supervisor.d/fluentbit-metrics.conf similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.d/fluentbit-metrics.conf rename to hedgehog-iso/interface/sensor_ctl/supervisor.d/fluentbit-metrics.conf diff --git a/sensor-iso/interface/sensor_ctl/supervisor.d/fluentbit-systemd.conf b/hedgehog-iso/interface/sensor_ctl/supervisor.d/fluentbit-systemd.conf similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.d/fluentbit-systemd.conf rename to hedgehog-iso/interface/sensor_ctl/supervisor.d/fluentbit-systemd.conf diff --git a/sensor-iso/interface/sensor_ctl/supervisor.d/fluentbit-thermal.conf b/hedgehog-iso/interface/sensor_ctl/supervisor.d/fluentbit-thermal.conf similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.d/fluentbit-thermal.conf rename to hedgehog-iso/interface/sensor_ctl/supervisor.d/fluentbit-thermal.conf diff --git a/sensor-iso/interface/sensor_ctl/supervisor.d/netsniff.template b/hedgehog-iso/interface/sensor_ctl/supervisor.d/netsniff.template similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.d/netsniff.template rename to hedgehog-iso/interface/sensor_ctl/supervisor.d/netsniff.template diff --git a/sensor-iso/interface/sensor_ctl/supervisor.d/prune.conf b/hedgehog-iso/interface/sensor_ctl/supervisor.d/prune.conf similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.d/prune.conf rename to hedgehog-iso/interface/sensor_ctl/supervisor.d/prune.conf diff --git a/sensor-iso/interface/sensor_ctl/supervisor.d/supercronic.conf b/hedgehog-iso/interface/sensor_ctl/supervisor.d/supercronic.conf similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.d/supercronic.conf rename to hedgehog-iso/interface/sensor_ctl/supervisor.d/supercronic.conf diff --git a/sensor-iso/interface/sensor_ctl/supervisor.d/suricata.conf b/hedgehog-iso/interface/sensor_ctl/supervisor.d/suricata.conf similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.d/suricata.conf rename to hedgehog-iso/interface/sensor_ctl/supervisor.d/suricata.conf diff --git a/sensor-iso/interface/sensor_ctl/supervisor.d/tcpdump.template b/hedgehog-iso/interface/sensor_ctl/supervisor.d/tcpdump.template similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.d/tcpdump.template rename to hedgehog-iso/interface/sensor_ctl/supervisor.d/tcpdump.template diff --git a/sensor-iso/interface/sensor_ctl/supervisor.d/zeek.conf b/hedgehog-iso/interface/sensor_ctl/supervisor.d/zeek.conf similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.d/zeek.conf rename to hedgehog-iso/interface/sensor_ctl/supervisor.d/zeek.conf diff --git a/sensor-iso/interface/sensor_ctl/supervisor.init/arkime_config_populate.sh b/hedgehog-iso/interface/sensor_ctl/supervisor.init/arkime_config_populate.sh similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.init/arkime_config_populate.sh rename to hedgehog-iso/interface/sensor_ctl/supervisor.init/arkime_config_populate.sh diff --git a/sensor-iso/interface/sensor_ctl/supervisor.init/supercronic_populate.sh b/hedgehog-iso/interface/sensor_ctl/supervisor.init/supercronic_populate.sh similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.init/supercronic_populate.sh rename to hedgehog-iso/interface/sensor_ctl/supervisor.init/supercronic_populate.sh diff --git a/sensor-iso/interface/sensor_ctl/supervisor.init/suricata_config_populate.sh b/hedgehog-iso/interface/sensor_ctl/supervisor.init/suricata_config_populate.sh similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.init/suricata_config_populate.sh rename to hedgehog-iso/interface/sensor_ctl/supervisor.init/suricata_config_populate.sh diff --git a/sensor-iso/interface/sensor_ctl/supervisor.sh b/hedgehog-iso/interface/sensor_ctl/supervisor.sh similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisor.sh rename to hedgehog-iso/interface/sensor_ctl/supervisor.sh diff --git a/sensor-iso/interface/sensor_ctl/supervisord.conf b/hedgehog-iso/interface/sensor_ctl/supervisord.conf similarity index 100% rename from sensor-iso/interface/sensor_ctl/supervisord.conf rename to hedgehog-iso/interface/sensor_ctl/supervisord.conf diff --git a/sensor-iso/interface/sensor_ctl/zeek/extractor_override.interesting.zeek b/hedgehog-iso/interface/sensor_ctl/zeek/extractor_override.interesting.zeek similarity index 100% rename from sensor-iso/interface/sensor_ctl/zeek/extractor_override.interesting.zeek rename to hedgehog-iso/interface/sensor_ctl/zeek/extractor_override.interesting.zeek diff --git a/sensor-iso/interface/sensor_ctl/zeek/intel/.gitignore b/hedgehog-iso/interface/sensor_ctl/zeek/intel/.gitignore similarity index 100% rename from sensor-iso/interface/sensor_ctl/zeek/intel/.gitignore rename to hedgehog-iso/interface/sensor_ctl/zeek/intel/.gitignore diff --git a/sensor-iso/interface/sensor_interface/__init__.py b/hedgehog-iso/interface/sensor_interface/__init__.py similarity index 100% rename from sensor-iso/interface/sensor_interface/__init__.py rename to hedgehog-iso/interface/sensor_interface/__init__.py diff --git a/sensor-iso/interface/sensor_interface/__main__.py b/hedgehog-iso/interface/sensor_interface/__main__.py similarity index 100% rename from sensor-iso/interface/sensor_interface/__main__.py rename to hedgehog-iso/interface/sensor_interface/__main__.py diff --git a/sensor-iso/interface/sensor_interface/routes.py b/hedgehog-iso/interface/sensor_interface/routes.py similarity index 100% rename from sensor-iso/interface/sensor_interface/routes.py rename to hedgehog-iso/interface/sensor_interface/routes.py diff --git a/sensor-iso/interface/sensor_interface/static/css/custom.css b/hedgehog-iso/interface/sensor_interface/static/css/custom.css similarity index 100% rename from sensor-iso/interface/sensor_interface/static/css/custom.css rename to hedgehog-iso/interface/sensor_interface/static/css/custom.css diff --git a/sensor-iso/interface/sensor_interface/static/css/freeboard.min.css b/hedgehog-iso/interface/sensor_interface/static/css/freeboard.min.css similarity index 100% rename from sensor-iso/interface/sensor_interface/static/css/freeboard.min.css rename to hedgehog-iso/interface/sensor_interface/static/css/freeboard.min.css diff --git a/sensor-iso/interface/sensor_interface/static/css/material.css b/hedgehog-iso/interface/sensor_interface/static/css/material.css similarity index 100% rename from sensor-iso/interface/sensor_interface/static/css/material.css rename to hedgehog-iso/interface/sensor_interface/static/css/material.css diff --git a/sensor-iso/interface/sensor_interface/static/dashboard/dashboard.json b/hedgehog-iso/interface/sensor_interface/static/dashboard/dashboard.json similarity index 100% rename from sensor-iso/interface/sensor_interface/static/dashboard/dashboard.json rename to hedgehog-iso/interface/sensor_interface/static/dashboard/dashboard.json diff --git a/sensor-iso/interface/sensor_interface/static/icons/icons.woff2 b/hedgehog-iso/interface/sensor_interface/static/icons/icons.woff2 similarity index 100% rename from sensor-iso/interface/sensor_interface/static/icons/icons.woff2 rename to hedgehog-iso/interface/sensor_interface/static/icons/icons.woff2 diff --git a/sensor-iso/interface/sensor_interface/static/img/dropdown-arrow.png b/hedgehog-iso/interface/sensor_interface/static/img/dropdown-arrow.png similarity index 100% rename from sensor-iso/interface/sensor_interface/static/img/dropdown-arrow.png rename to hedgehog-iso/interface/sensor_interface/static/img/dropdown-arrow.png diff --git a/sensor-iso/interface/sensor_interface/static/img/glyphicons-blackboard.png b/hedgehog-iso/interface/sensor_interface/static/img/glyphicons-blackboard.png similarity index 100% rename from sensor-iso/interface/sensor_interface/static/img/glyphicons-blackboard.png rename to hedgehog-iso/interface/sensor_interface/static/img/glyphicons-blackboard.png diff --git a/sensor-iso/interface/sensor_interface/static/img/glyphicons-halflings-white.png b/hedgehog-iso/interface/sensor_interface/static/img/glyphicons-halflings-white.png similarity index 100% rename from sensor-iso/interface/sensor_interface/static/img/glyphicons-halflings-white.png rename to hedgehog-iso/interface/sensor_interface/static/img/glyphicons-halflings-white.png diff --git a/sensor-iso/interface/sensor_interface/static/img/glyphicons-halflings.png b/hedgehog-iso/interface/sensor_interface/static/img/glyphicons-halflings.png similarity index 100% rename from sensor-iso/interface/sensor_interface/static/img/glyphicons-halflings.png rename to hedgehog-iso/interface/sensor_interface/static/img/glyphicons-halflings.png diff --git a/sensor-iso/interface/sensor_interface/static/img/glyphicons-log-in.png b/hedgehog-iso/interface/sensor_interface/static/img/glyphicons-log-in.png similarity index 100% rename from sensor-iso/interface/sensor_interface/static/img/glyphicons-log-in.png rename to hedgehog-iso/interface/sensor_interface/static/img/glyphicons-log-in.png diff --git a/sensor-iso/interface/sensor_interface/static/img/glyphicons-log-out.png b/hedgehog-iso/interface/sensor_interface/static/img/glyphicons-log-out.png similarity index 100% rename from sensor-iso/interface/sensor_interface/static/img/glyphicons-log-out.png rename to hedgehog-iso/interface/sensor_interface/static/img/glyphicons-log-out.png diff --git a/sensor-iso/interface/sensor_interface/static/js/custom.js b/hedgehog-iso/interface/sensor_interface/static/js/custom.js similarity index 100% rename from sensor-iso/interface/sensor_interface/static/js/custom.js rename to hedgehog-iso/interface/sensor_interface/static/js/custom.js diff --git a/sensor-iso/interface/sensor_interface/static/js/freeboard.min.js b/hedgehog-iso/interface/sensor_interface/static/js/freeboard.min.js similarity index 100% rename from sensor-iso/interface/sensor_interface/static/js/freeboard.min.js rename to hedgehog-iso/interface/sensor_interface/static/js/freeboard.min.js diff --git a/sensor-iso/interface/sensor_interface/static/js/freeboard.plugins.min.js b/hedgehog-iso/interface/sensor_interface/static/js/freeboard.plugins.min.js similarity index 100% rename from sensor-iso/interface/sensor_interface/static/js/freeboard.plugins.min.js rename to hedgehog-iso/interface/sensor_interface/static/js/freeboard.plugins.min.js diff --git a/sensor-iso/interface/sensor_interface/static/js/freeboard.thirdparty.min.js b/hedgehog-iso/interface/sensor_interface/static/js/freeboard.thirdparty.min.js similarity index 100% rename from sensor-iso/interface/sensor_interface/static/js/freeboard.thirdparty.min.js rename to hedgehog-iso/interface/sensor_interface/static/js/freeboard.thirdparty.min.js diff --git a/sensor-iso/interface/sensor_interface/static/js/freeboard_plugins.min.js b/hedgehog-iso/interface/sensor_interface/static/js/freeboard_plugins.min.js similarity index 100% rename from sensor-iso/interface/sensor_interface/static/js/freeboard_plugins.min.js rename to hedgehog-iso/interface/sensor_interface/static/js/freeboard_plugins.min.js diff --git a/sensor-iso/interface/sensor_interface/static/js/jquery.sparkline.min.js b/hedgehog-iso/interface/sensor_interface/static/js/jquery.sparkline.min.js similarity index 100% rename from sensor-iso/interface/sensor_interface/static/js/jquery.sparkline.min.js rename to hedgehog-iso/interface/sensor_interface/static/js/jquery.sparkline.min.js diff --git a/sensor-iso/interface/sensor_interface/static/js/material.min.js b/hedgehog-iso/interface/sensor_interface/static/js/material.min.js similarity index 100% rename from sensor-iso/interface/sensor_interface/static/js/material.min.js rename to hedgehog-iso/interface/sensor_interface/static/js/material.min.js diff --git a/sensor-iso/interface/sensor_interface/sysquery/__init__.py b/hedgehog-iso/interface/sensor_interface/sysquery/__init__.py similarity index 100% rename from sensor-iso/interface/sensor_interface/sysquery/__init__.py rename to hedgehog-iso/interface/sensor_interface/sysquery/__init__.py diff --git a/sensor-iso/interface/sensor_interface/sysquery/sys_service.py b/hedgehog-iso/interface/sensor_interface/sysquery/sys_service.py similarity index 100% rename from sensor-iso/interface/sensor_interface/sysquery/sys_service.py rename to hedgehog-iso/interface/sensor_interface/sysquery/sys_service.py diff --git a/sensor-iso/interface/sensor_interface/templates/base.html b/hedgehog-iso/interface/sensor_interface/templates/base.html similarity index 100% rename from sensor-iso/interface/sensor_interface/templates/base.html rename to hedgehog-iso/interface/sensor_interface/templates/base.html diff --git a/sensor-iso/interface/sensor_interface/templates/buttons.html b/hedgehog-iso/interface/sensor_interface/templates/buttons.html similarity index 100% rename from sensor-iso/interface/sensor_interface/templates/buttons.html rename to hedgehog-iso/interface/sensor_interface/templates/buttons.html diff --git a/sensor-iso/interface/sensor_interface/templates/system_block.html b/hedgehog-iso/interface/sensor_interface/templates/system_block.html similarity index 100% rename from sensor-iso/interface/sensor_interface/templates/system_block.html rename to hedgehog-iso/interface/sensor_interface/templates/system_block.html diff --git a/sensor-iso/vagrant/Vagrantfile b/hedgehog-iso/vagrant/Vagrantfile similarity index 100% rename from sensor-iso/vagrant/Vagrantfile rename to hedgehog-iso/vagrant/Vagrantfile diff --git a/sensor-iso/vagrant/ssh_config b/hedgehog-iso/vagrant/ssh_config similarity index 100% rename from sensor-iso/vagrant/ssh_config rename to hedgehog-iso/vagrant/ssh_config diff --git a/sensor-iso/yara/Dockerfile b/hedgehog-iso/yara/Dockerfile similarity index 100% rename from sensor-iso/yara/Dockerfile rename to hedgehog-iso/yara/Dockerfile diff --git a/sensor-iso/yara/build-docker-image.sh b/hedgehog-iso/yara/build-docker-image.sh similarity index 100% rename from sensor-iso/yara/build-docker-image.sh rename to hedgehog-iso/yara/build-docker-image.sh diff --git a/sensor-iso/yara/build-yara-deb.sh b/hedgehog-iso/yara/build-yara-deb.sh similarity index 100% rename from sensor-iso/yara/build-yara-deb.sh rename to hedgehog-iso/yara/build-yara-deb.sh diff --git a/sensor-raspi/.gitignore b/hedgehog-raspi/.gitignore similarity index 100% rename from sensor-raspi/.gitignore rename to hedgehog-raspi/.gitignore diff --git a/sensor-raspi/Dockerfile b/hedgehog-raspi/Dockerfile similarity index 95% rename from sensor-raspi/Dockerfile rename to hedgehog-raspi/Dockerfile index 7338c21a3..dcdcb9468 100644 --- a/sensor-raspi/Dockerfile +++ b/hedgehog-raspi/Dockerfile @@ -5,7 +5,7 @@ FROM ghcr.io/mmguero/qemu-live-iso:latest LABEL maintainer="malcolm@inl.gov" LABEL org.opencontainers.image.authors='malcolm@inl.gov' LABEL org.opencontainers.image.url='https://github.com/idaholab/Malcolm' -LABEL org.opencontainers.image.documentation='https://github.com/idaholab/Malcolm/blob/main/sensor-iso/README.md' +LABEL org.opencontainers.image.documentation='https://github.com/idaholab/Malcolm/blob/main/hedgehog-iso/README.md' LABEL org.opencontainers.image.source='https://github.com/idaholab/Malcolm' LABEL org.opencontainers.image.vendor='Idaho National Laboratory' LABEL org.opencontainers.image.title='ghcr.io/idaholab/malcolm/hedgehog-raspi' diff --git a/sensor-raspi/Makefile b/hedgehog-raspi/Makefile similarity index 100% rename from sensor-raspi/Makefile rename to hedgehog-raspi/Makefile diff --git a/sensor-raspi/README.md b/hedgehog-raspi/README.md similarity index 99% rename from sensor-raspi/README.md rename to hedgehog-raspi/README.md index 9b2bc1c42..fe63ddbee 100644 --- a/sensor-raspi/README.md +++ b/hedgehog-raspi/README.md @@ -11,7 +11,7 @@ clone this repository: ```shell git clone https://github.com/idaholab/Malcolm.git -cd Malcolm/sensor-raspi +cd Malcolm/hedgehog-raspi ``` For this you will first need to install the following packages on a diff --git a/sensor-raspi/attribution.txt b/hedgehog-raspi/attribution.txt similarity index 100% rename from sensor-raspi/attribution.txt rename to hedgehog-raspi/attribution.txt diff --git a/sensor-raspi/build_via_vagrant.sh b/hedgehog-raspi/build_via_vagrant.sh similarity index 96% rename from sensor-raspi/build_via_vagrant.sh rename to hedgehog-raspi/build_via_vagrant.sh index 6141a6aa3..396f51d88 100755 --- a/sensor-raspi/build_via_vagrant.sh +++ b/hedgehog-raspi/build_via_vagrant.sh @@ -102,7 +102,7 @@ YML_IMAGE_VERSION="$(grep -P "^\s+image:.*/malcolm/" "$SCRIPT_PATH"/../docker-co echo "VCS_REVSION=$( git rev-parse --short HEAD 2>/dev/null || echo main )" >> "$SCRIPT_PATH"/shared/environment.chroot trap cleanup_shared_and_docs EXIT -vm_execute "sudo bash -c \"whoami && cd /Malcolm/sensor-raspi && pwd && make ${IMAGE}${XZ_EXT}\"" +vm_execute "sudo bash -c \"whoami && cd /Malcolm/hedgehog-raspi && pwd && make ${IMAGE}${XZ_EXT}\"" if [[ -n $NEED_SHUTDOWN ]]; then echo "Shutting down $VM_NAME..." >&2 diff --git a/sensor-raspi/debian/salsa-ci.yml b/hedgehog-raspi/debian/salsa-ci.yml similarity index 100% rename from sensor-raspi/debian/salsa-ci.yml rename to hedgehog-raspi/debian/salsa-ci.yml diff --git a/sensor-raspi/debian/yamllint.yml b/hedgehog-raspi/debian/yamllint.yml similarity index 100% rename from sensor-raspi/debian/yamllint.yml rename to hedgehog-raspi/debian/yamllint.yml diff --git a/sensor-raspi/generate-recipe.py b/hedgehog-raspi/generate-recipe.py similarity index 99% rename from sensor-raspi/generate-recipe.py rename to hedgehog-raspi/generate-recipe.py index e40b8a638..4ad1535c7 100755 --- a/sensor-raspi/generate-recipe.py +++ b/hedgehog-raspi/generate-recipe.py @@ -7,7 +7,7 @@ SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__)) MALCOLM_DIR = os.path.dirname(SCRIPT_DIR) -SENSOR_DIR = os.path.join(MALCOLM_DIR, 'sensor-iso') +SENSOR_DIR = os.path.join(MALCOLM_DIR, 'hedgehog-iso') # pylint: disable=invalid-name diff --git a/sensor-raspi/raspi_master.yaml b/hedgehog-raspi/raspi_master.yaml similarity index 100% rename from sensor-raspi/raspi_master.yaml rename to hedgehog-raspi/raspi_master.yaml diff --git a/sensor-raspi/rootfs/boot/firmware/sysconf.txt b/hedgehog-raspi/rootfs/boot/firmware/sysconf.txt similarity index 100% rename from sensor-raspi/rootfs/boot/firmware/sysconf.txt rename to hedgehog-raspi/rootfs/boot/firmware/sysconf.txt diff --git a/sensor-raspi/rootfs/etc/fstab b/hedgehog-raspi/rootfs/etc/fstab similarity index 100% rename from sensor-raspi/rootfs/etc/fstab rename to hedgehog-raspi/rootfs/etc/fstab diff --git a/sensor-raspi/rootfs/etc/initramfs-tools/hooks/rpi-resizerootfs b/hedgehog-raspi/rootfs/etc/initramfs-tools/hooks/rpi-resizerootfs similarity index 100% rename from sensor-raspi/rootfs/etc/initramfs-tools/hooks/rpi-resizerootfs rename to hedgehog-raspi/rootfs/etc/initramfs-tools/hooks/rpi-resizerootfs diff --git a/sensor-raspi/rootfs/etc/initramfs-tools/scripts/local-bottom/rpi-resizerootfs b/hedgehog-raspi/rootfs/etc/initramfs-tools/scripts/local-bottom/rpi-resizerootfs similarity index 100% rename from sensor-raspi/rootfs/etc/initramfs-tools/scripts/local-bottom/rpi-resizerootfs rename to hedgehog-raspi/rootfs/etc/initramfs-tools/scripts/local-bottom/rpi-resizerootfs diff --git a/sensor-raspi/rootfs/etc/network/interfaces.d/eth0 b/hedgehog-raspi/rootfs/etc/network/interfaces.d/eth0 similarity index 100% rename from sensor-raspi/rootfs/etc/network/interfaces.d/eth0 rename to hedgehog-raspi/rootfs/etc/network/interfaces.d/eth0 diff --git a/sensor-raspi/rootfs/etc/network/interfaces.d/wlan0 b/hedgehog-raspi/rootfs/etc/network/interfaces.d/wlan0 similarity index 100% rename from sensor-raspi/rootfs/etc/network/interfaces.d/wlan0 rename to hedgehog-raspi/rootfs/etc/network/interfaces.d/wlan0 diff --git a/sensor-raspi/rootfs/etc/systemd/system/rpi-generate-ssh-host-keys.service b/hedgehog-raspi/rootfs/etc/systemd/system/rpi-generate-ssh-host-keys.service similarity index 100% rename from sensor-raspi/rootfs/etc/systemd/system/rpi-generate-ssh-host-keys.service rename to hedgehog-raspi/rootfs/etc/systemd/system/rpi-generate-ssh-host-keys.service diff --git a/sensor-raspi/rootfs/etc/systemd/system/rpi-reconfigure-raspi-firmware.service b/hedgehog-raspi/rootfs/etc/systemd/system/rpi-reconfigure-raspi-firmware.service similarity index 100% rename from sensor-raspi/rootfs/etc/systemd/system/rpi-reconfigure-raspi-firmware.service rename to hedgehog-raspi/rootfs/etc/systemd/system/rpi-reconfigure-raspi-firmware.service diff --git a/sensor-raspi/rootfs/etc/systemd/system/rpi-set-sysconf.service b/hedgehog-raspi/rootfs/etc/systemd/system/rpi-set-sysconf.service similarity index 100% rename from sensor-raspi/rootfs/etc/systemd/system/rpi-set-sysconf.service rename to hedgehog-raspi/rootfs/etc/systemd/system/rpi-set-sysconf.service diff --git a/sensor-raspi/rootfs/etc/wpa_supplicant/wpa_supplicant.conf b/hedgehog-raspi/rootfs/etc/wpa_supplicant/wpa_supplicant.conf similarity index 100% rename from sensor-raspi/rootfs/etc/wpa_supplicant/wpa_supplicant.conf rename to hedgehog-raspi/rootfs/etc/wpa_supplicant/wpa_supplicant.conf diff --git a/sensor-raspi/rootfs/usr/local/sbin/rpi-set-sysconf b/hedgehog-raspi/rootfs/usr/local/sbin/rpi-set-sysconf similarity index 100% rename from sensor-raspi/rootfs/usr/local/sbin/rpi-set-sysconf rename to hedgehog-raspi/rootfs/usr/local/sbin/rpi-set-sysconf diff --git a/sensor-raspi/sensor_install.sh b/hedgehog-raspi/sensor_install.sh similarity index 99% rename from sensor-raspi/sensor_install.sh rename to hedgehog-raspi/sensor_install.sh index d060e2ba7..799a326de 100644 --- a/sensor-raspi/sensor_install.sh +++ b/hedgehog-raspi/sensor_install.sh @@ -329,7 +329,7 @@ install_deps() { deps+=$(tr '\n' ' ' < "$file") done - # Remove Sensor-ISO packages not relevant to RPI + # Remove hedgehog-iso packages not relevant to RPI # Rar is excluded because Debian doesn't have an ARM package # htpdate removed because repo version doesn't support https # aide is removed as we're not applying the same hardening requirements ot the rpi image diff --git a/sensor-raspi/vagrant/Vagrantfile b/hedgehog-raspi/vagrant/Vagrantfile similarity index 100% rename from sensor-raspi/vagrant/Vagrantfile rename to hedgehog-raspi/vagrant/Vagrantfile diff --git a/sensor-raspi/vagrant/ssh_config b/hedgehog-raspi/vagrant/ssh_config similarity index 100% rename from sensor-raspi/vagrant/ssh_config rename to hedgehog-raspi/vagrant/ssh_config