Skip to content

Commit

Permalink
DLPX-89763 DLPX-86523 delphix-platform changes
Browse files Browse the repository at this point in the history
  • Loading branch information
justsanjeev committed Jul 11, 2024
1 parent ca767ef commit d356ef1
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 3 deletions.
37 changes: 37 additions & 0 deletions debian/preinst
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
#!/bin/bash -eux
#
# Copyright 2024 Delphix
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

case $1 in
upgrade)
sed -i 's|/export/home|/home|g' /etc/fstab
mount /home
echo $(mount | grep home)

if [[ -e /etc/auto.master ]]
then
auto_home_line="$(grep auto_home auto)"
line_len=$(expr length "${auto_home_line}")
if [[ "$line_len" -gt 0 ]]
then
sed -i 's|/home auto_home -nobrowse|#/home auto_home -nobrowse|g' auto
systemctl restart autofs
fi
fi
;;
esac

exit 0
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# it below; otherwise that task will fail.
#
- file:
path: /export/home
path: /home
state: directory
mode: 0755

Expand All @@ -35,7 +35,7 @@
shell: /bin/bash
create_home: yes
comment: Delphix User
home: /export/home/delphix
home: /home/delphix

#
# In order for this locale to be used (e.g. by virtualization) we need
Expand Down Expand Up @@ -689,7 +689,7 @@
- name: Source bash completion
blockinfile:
dest: "/export/home/delphix/.bashrc"
dest: "/home/delphix/.bashrc"
block: |
. /etc/bash_completion.d/systemctl
. /etc/bash_completion.d/zfs
Expand Down

0 comments on commit d356ef1

Please sign in to comment.