mirror of
https://github.com/vyos/vyos-build.git
synced 2025-10-01 20:28:40 +02:00
Merge pull request #797 from c-po/fix-T3303
T3303: fix location of os-release file
This commit is contained in:
commit
c1fc21a0ad
@ -452,8 +452,7 @@ if __name__ == "__main__":
|
||||
|
||||
# Multi line strings needs to be un-indented to not have leading
|
||||
# whitespaces in the resulting file
|
||||
os_release = f"""
|
||||
PRETTY_NAME="VyOS {version} ({build_config['release_train']})"
|
||||
os_release = f"""PRETTY_NAME="VyOS {version} ({build_config['release_train']})"
|
||||
NAME="VyOS"
|
||||
VERSION_ID="{version}"
|
||||
VERSION="{version} ({build_config['release_train']})"
|
||||
@ -484,8 +483,8 @@ if __name__ == "__main__":
|
||||
print("Version: {0}".format(version), file=f)
|
||||
|
||||
# Define variables that influence to welcome message on boot
|
||||
os.makedirs(os.path.join(chroot_includes_dir, 'usr/lib/'), exist_ok=True)
|
||||
with open(os.path.join(chroot_includes_dir, 'usr/lib/os-release'), 'w') as f:
|
||||
os.makedirs(os.path.join(chroot_includes_dir, 'etc/'), exist_ok=True)
|
||||
with open(os.path.join(chroot_includes_dir, 'etc/os-release'), 'w') as f:
|
||||
print(os_release, file=f)
|
||||
|
||||
## Clean up earlier build state and artifacts
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user